From 3e30c9409b825ef5c627c83631f4489e13cbc031 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:11:26 -0700 Subject: [PATCH 001/175] riot staves --- code/__DEFINES/movespeed_modification.dm | 4 +- code/__DEFINES/status_effects.dm | 3 + code/datums/status_effects/debuffs.dm | 13 + code/game/machinery/recharger.dm | 3 +- code/game/objects/items/twohanded.dm | 237 ++++++++++++++++++ .../crates_lockers/closets/secure/security.dm | 3 + icons/mob/inhands/weapons/estaff_lefthand.dmi | Bin 0 -> 9301 bytes .../mob/inhands/weapons/estaff_righthand.dmi | Bin 0 -> 9435 bytes icons/obj/estaff.dmi | Bin 0 -> 1580 bytes sound/weapons/staff.ogg | Bin 0 -> 20026 bytes 10 files changed, 261 insertions(+), 2 deletions(-) create mode 100644 icons/mob/inhands/weapons/estaff_lefthand.dmi create mode 100644 icons/mob/inhands/weapons/estaff_righthand.dmi create mode 100644 icons/obj/estaff.dmi create mode 100644 sound/weapons/staff.ogg diff --git a/code/__DEFINES/movespeed_modification.dm b/code/__DEFINES/movespeed_modification.dm index 1883df6e8e..2db40cc988 100644 --- a/code/__DEFINES/movespeed_modification.dm +++ b/code/__DEFINES/movespeed_modification.dm @@ -68,4 +68,6 @@ #define MOVESPEED_ID_SHOVE "SHOVE" -#define MOVESPEED_ID_MKULTRA "MKULTRA" \ No newline at end of file +#define MOVESPEED_ID_MKULTRA "MKULTRA" + +#define MOVESPEED_ID_ELECTROSTAFF "ELECTROSTAFF" diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm index 6d52f4640c..859e361250 100644 --- a/code/__DEFINES/status_effects.dm +++ b/code/__DEFINES/status_effects.dm @@ -88,6 +88,9 @@ #define STATUS_EFFECT_NO_COMBAT_MODE /datum/status_effect/no_combat_mode //Wont allow combat mode and will disable it #define STATUS_EFFECT_MESMERIZE /datum/status_effect/no_combat_mode/mesmerize //Just reskinned no_combat_mode + +#define STATUS_EFFECT_ELECTROSTAFF /datum/status_effect/electrostaff //slows down victim + ///////////// // NEUTRAL // ///////////// diff --git a/code/datums/status_effects/debuffs.dm b/code/datums/status_effects/debuffs.dm index 2e46046a7e..335bdfac6e 100644 --- a/code/datums/status_effects/debuffs.dm +++ b/code/datums/status_effects/debuffs.dm @@ -587,6 +587,19 @@ icon_state = "ichorial_stain" alerttooltipstyle = "clockcult" +/datum/status_effect/electrostaff + id = "electrostaff" + alert_type = null + status_type = STATUS_EFFECT_REPLACE + +/datum/status_effect/electrostaff/on_creation(mob/living/new_owner, set_duration) + if(isnum(set_duration)) + duration = set_duration + . = ..() + owner.add_movespeed_modifier(MOVESPEED_ID_ELECTROSTAFF, multiplicative_slowdown = 1, movetypes = GROUND, blacklisted_movetypes = CRAWLING) + +/datum/status_effect/electrostaff/on_remove() + owner.remove_movespeed_modifier(MOVESPEED_ID_ELECTROSTAFF) //GOLEM GANG diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm index f777c893f8..29116b5a7c 100755 --- a/code/game/machinery/recharger.dm +++ b/code/game/machinery/recharger.dm @@ -17,7 +17,8 @@ /obj/item/ammo_box/magazine/recharge, /obj/item/modular_computer, /obj/item/gun/ballistic/automatic/magrifle_e, - /obj/item/gun/ballistic/automatic/pistol/mag_e)) + /obj/item/gun/ballistic/automatic/pistol/mag_e, + /obj/item/twohanded/required/electrostaff)) /obj/machinery/recharger/RefreshParts() for(var/obj/item/stock_parts/capacitor/C in component_parts) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 28a6fd66ee..44fe9e3a0e 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1017,3 +1017,240 @@ C.change_view(CONFIG_GET(string/default_view)) user.client.pixel_x = 0 user.client.pixel_y = 0 + +/obj/item/twohanded/required/electrostaff + icon = 'icons/obj/estaff.dmi' + icon_state = "electrostaff_3" + item_state = "electrostaff_3" + lefthand_file = 'icons/mob/inhands/weapons/estaff_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/estaff_righthand.dmi' + name = "riot suppression electrostaff" + desc = "A large quarterstaff, with massive silver electrodes mounted at the end." + force = 10 + damtype = BRUTE + w_class = WEIGHT_CLASS_GIGANTIC + slot_flags = ITEM_SLOT_BACK + sharpness = FALSE + force_unwielded = 0 + force_wielded = 10 + throwforce = 1 + throw_speed = 1 + block_chance = 50 + materials = list(MAT_METAL=1000) + hitsound = 'sound/weapons/staff.ogg' + attack_verb = list("suppresed", "struck", "beaten", "thwacked", "pulped", "shocked") + total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. + var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high + var/lethal_cost = 400 //10000/333*15 = 450. decent enough?? kinda? + var/lethal_damage = 15 + var/lethal_stam_cost = 3.5 + var/stun_cost = 333 //10000/500*25 = 500. stunbatons are at time of writing 10000/1000*49 = 490. This doesn't stun as fast but has block. Also, this does.. + var/stun_status_effect = STATUS_EFFECT_ELECTROSTAFF //a small slowdown effect + var/stun_stamdmg = 25 + var/stun_status_duration = 25 + var/stun_stam_cost = 3.5 + +/obj/item/twohanded/required/electrostaff/Initialize(mapload) + . = ..() + if(ispath(cell)) + cell = new cell + +/obj/item/twohanded/required/electrostaff/get_cell() + . = cell + if(iscyborg(loc)) + var/mob/living/silicon/robot/R = loc + . = R.get_cell() + +/obj/item/twohanded/required/electrostaff/proc/min_hitcost() + return min(stun_cost, lethal_cost) + +/obj/item/twohanded/required/electrostaff/proc/turn_on(mob/user, silent = FALSE) + if(on) + return + if(!cell) + if(user) + to_chat(user, "[src] has no cell.") + return + if(cell.charge < min_hitcost()) + if(user) + to_chat(user, "[src] is out of charge.") + return + on = TRUE + START_PROCESSING(SSobj, src) + if(user) + to_chat(user, "You turn [src] on.") + update_icon() + if(!silent) + playsound(src, "sparks", 75, 1, -1) + +/obj/item/twohanded/required/electrostaff/proc/turn_off(mob/user, silent = FALSE) + if(!on) + return + if(user) + to_chat(user, "You turn [src] off.") + on = FALSE + STOP_PROCESSING(SSobj, src) + update_icon() + if(!silent) + playsound(src, "sparks", 75, 1, -1) + +/obj/item/twohanded/required/electrostaff/proc/toggle(mob/user, silent = FALSE) + if(on) + turn_off(user, silent) + else + turn_on(user, silent) + +/obj/item/twohanded/required/electrostaff/attack_self(mob/user) + . = ..() + if(.) + return + toggle(user) + add_fingerprint(user) + +/obj/item/twohanded/required/electrostaff/update_icon() + . = ..() + var/final = on? "electrostaff_1" : "electrostaff_3" + icon_state = final + item_state = final + set_light(7, on? 1 : 0, LIGHT_COLOR_CYAN) + +/obj/item/twohanded/required/electrostaff/examine(mob/living/user) + . = ..() + if(cell) + . += "The cell charge is [round(cell.percent())]%." + else + . += "There is no cell installed!" + +/obj/item/twohanded/required/electrostaff/attackby(obj/item/W, mob/user, params) + if(istype(W, /obj/item/stock_parts/cell)) + var/obj/item/stock_parts/cell/C = W + if(cell) + to_chat(user, "[src] already has a cell!") + else + if(C.maxcharge < hitcost) + to_chat(user, "[src] requires a higher capacity cell.") + return + if(!user.transferItemToLoc(W, src)) + return + cell = C + to_chat(user, "You install a cell in [src].") + + else if(W.tool_behaviour == TOOL_SCREWDRIVER) + if(cell) + cell.update_icon() + cell.forceMove(get_turf(src)) + cell= null + to_chat(user, "You remove the cell from [src].") + depower(user) + else + return ..() + +/obj/item/melee/twohanded/required/electrostaff/process() + deductcharge(50) //Wasteful! + +/obj/item/melee/twohanded/required/electrostaff/proc/deductcharge(amount) + var/obj/item/stock_parts/cell/C = get_cell() + if(!C) + turn_off() + return FALSE + C.use(min(amount, C.charge)) + if(QDELETED(src)) + return FALSE + if(C.charge < min_hit_cost()) + turn_off() + +/obj/item/twohanded/required/electrostaff/attack(mob/living/target, mob/living/user) + if(user.getStaminaLoss() >= STAMINA_SOFTCRIT)//CIT CHANGE - makes it impossible to baton in stamina softcrit + to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto + return //CIT CHANGE - ditto + if(status && HAS_TRAIT(user, TRAIT_CLUMSY) && prob(50)) + if(on) + clowning_around(user) //ouch! + return + else + return ..(user, user) //beat yourself + if(iscyborg(target)) + ..() + return + if(target.check_shields(src, 0, "[user]'s [name]", MELEE_ATTACK)) //No message; check_shields() handles that + playsound(L, 'sound/weapons/genhit.ogg', 50, 1) + return FALSE + if(user.a_intent != INTENT_HARM) + if(stun_act(target, user)) + user.do_attack_animation(M) + user.adjustStaminaLossBuffered(stun_stam_cost) + return + else if(!harm_act(target, user)) + return ..() //if you can't fry them just beat them with it + else //we did harm act them + user.do_attack_animation(M) + user.adjustStaminaLossBuffered(harm_stam_cost) + +/obj/item/twohanded/required/electrostaff/proc/stun_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) + var/stunforce = stun_stamdmg + if(!no_charge_and_force) + if(!on) + target.visible_message("[user] has bapped [target] with [src]. Luckily it was off.", \ + "[user] has bapped you with [src]. Luckily it was off") + turn_off() //if it wasn't already off + return FALSE + var/obj/item/stock_parts/cell/C = get_cell() + var/chargeleft = C.charge + deductcharge(stun_cost) + if(QDELETED(src) || QDELETED(C)) //boom + return FALSE + if(chargeleft < stun_cost) + stunforce *= round(chargeleft/stun_cost, 0.1) + target.adjustStaminaLoss(stunforce) + target.apply_effect(EFFECT_STUTTER, stunforce) + SEND_SIGNAL(target, COMSIG_LIVING_MINOR_SHOCK) + if(user) + target.lastattacker = user.real_name + target.lastattackerckey = user.ckey + target.visible_message("[user] has shocked [user] with [src]!", \ + "[user] has shocked you with [src]!") + log_combat(user, user, "stunned with an electrostaff") + playsound(src, 'sound/weapons/staff.ogg', 50, 1, -1) + target.apply_status_effect(stun_status_effect, stun_status_duration) + if(ishuman(user)) + var/mob/living/carbon/human/H = user + H.forcesay(GLOB.hit_appends) + return TRUE + +/obj/item/twohanded/required/electrostaff/proc/harm_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) + var/lethal_force = lethal_damage + if(!no_charge_and_force) + if(!on) + return FALSE //standard item attack + var/obj/item/stock_parts/cell/C = get_cell() + var/chargeleft = C.charge + deductcharge(lethal_cost) + if(QDELETED(src) || QDELETED(C)) //boom + return FALSE + if(chargeleft < stun_cost) + lethal_force *= round(chargeleft/lethal_cost, 0.1) + target.adjustBurnLoss(lethal_force) //good against ointment spam + SEND_SIGNAL(target, COMSIG_LIVING_MINOR_SHOCK) + if(user) + target.lastattacker = user.real_name + target.lastattackerckey = user.ckey + target.visible_message("[user] has seared [user] with [src]!", \ + "[user] has seared you with [src]!") + log_combat(user, user, "burned with an electrostaff") + playsound(src, 'sound/weapons/sear.ogg', 50, 1, -1) + return TRUE + +/obj/item/twohanded/required/electrostaff/proc/clowning_around(mob/living/user) + user.visible_message("[user] accidentally hits [user.p_them()]self with [src]!", \ + "You accidentally hit yourself with [src]!") + SEND_SIGNAL(user, COMSIG_LIVING_MINOR_SHOCK) + lethal_act(user, user, TRUE) + stun_act(user, user, TRUE) + deductcharge(lethal_cost) + +/obj/item/twohanded/required/electrostaff/emp_act(severity) + . = ..() + if (!(. & EMP_PROTECT_SELF)) + turn_off() + if(!iscyborg(loc)) + deductcharge(1000 / severity, TRUE, FALSE) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 1517b30d9c..43021f3528 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -282,12 +282,15 @@ new /obj/item/clothing/head/helmet/alt(src) new /obj/item/clothing/mask/gas/sechailer(src) new /obj/item/clothing/suit/armor/bulletproof(src) + /obj/structure/closet/secure_closet/lethalshots name = "shotgun lethal rounds" req_access = list(ACCESS_ARMORY) icon_state = "tac" /obj/structure/closet/secure_closet/lethalshots/PopulateContents() ..() + new /obj/item/twohanded/required/electrostaff(src) + new /obj/item/twohanded/required/electrostaff(src) for(var/i in 1 to 3) new /obj/item/storage/box/lethalshot(src) diff --git a/icons/mob/inhands/weapons/estaff_lefthand.dmi b/icons/mob/inhands/weapons/estaff_lefthand.dmi new file mode 100644 index 0000000000000000000000000000000000000000..8b9ef642a40d3e1506089c8864f9ecac4327df53 GIT binary patch literal 9301 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 PfnL5)mMwYq&hI|}&OVN2 literal 0 HcmV?d00001 diff --git a/icons/obj/estaff.dmi b/icons/obj/estaff.dmi new file mode 100644 index 0000000000000000000000000000000000000000..4c1a6788023ebac8b2cc67660efacc8325b2e2f0 GIT binary patch literal 1580 zcmV+{2GjY8P)005u}0{{R3yb+fl0000mP)t-s|NsAQ ze~;wn>aV-TMo@GA{{Y^$Js>ndP*r3wHAaq)m>?r9O~e0j^Z)+<0FVFxo&lW%00001 zbW%=J06^y0W&i*Hje1mAbVOxyV{&P5bZKvH004NLQ&w;!Mdb zDh5gza&e{=CFZ7r*cL$1)SSdhkg%SS4jzodTtga}YeXY+jj@|+$fc~{>gNIuX8`T! zVO6NsY7+ne1rbR^K~#90?VH_pq#zK4MTME!@bms}yGY3HO{$6`I+zo={b;&D2dx^M zCf1Chcs!q%6(HNkUFk#Ow?58NzKw6pgXSmPQeH-IjF<7Pu{eAie?{>w_h5YM;yAaI z=K}1;QGvOFm56b7%onjwbNMVTXhCuSFTE zeuN9`7GpEV7ii`AkKxQfuvwoIfj&(SI{slC)~MoP+h#S~|Kr@b*$ID6`FFdyZ;QwN z+$UH5-fr%j;;p6kzneK{`>z)~nYEP zy?TClPk$d_COkCmUnGCw(7e#&=lO^3{fp&q;q3Xb_=fs$f;P_bi}{P|U;Q~)K;^K2 zMy~R+4&0w>0eco6WUVoc^#|(t5U-9XO%mdZ$ zjs9Q*hc&juvkEWk4<5qzpZ|+}Je58=|L*gDQSvCp&phe;@cxa0r`$vA-zjk(1)sQo znfm_!NR9quBz*Mwzl|r%z1TmGsSg*R`19pgws{@&{V^<{a(smk^7mkZUf$&2B|N{+ z_yiZIj=w+uCG-=%0guc7{SsYc{^#-0{@?8n{%$_n|GWLcoA2f6{QMX82TSArT}+h6 z#NvxS>i@pj@AvQG$$a|sm#F_G^b6N-sgdK?D-+Br&aX81g9*KVCZ#|1_r?7DLfiR2 zyugO*pZKQlixo!`h?T<$D1YuC{TopUpF9!)I{19x%I}Y9{Q1DjX^pTke=Z5G;`@0@ zk^6Hg&1uy4$CXFJR$lYdzCSLvL{!g@80r0=X3l&6A1eD3@xRpmmu8a$@BhA-)hC`G z>k?^w$Ly~xzlaytKQ1Qr)TjKpet$5o~yaH literal 0 HcmV?d00001 diff --git a/sound/weapons/staff.ogg b/sound/weapons/staff.ogg new file mode 100644 index 0000000000000000000000000000000000000000..35b42dfd8d8636f933f3338295757a21d7dc4aa3 GIT binary patch literal 20026 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 FG65_fXtMwS literal 0 HcmV?d00001 From e9ec314cf6c30df58f5acbad5ec295d625f73870 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:15:12 -0700 Subject: [PATCH 002/175] yo this is a horrible idea --- code/__DEFINES/movespeed_modification.dm | 2 +- code/datums/status_effects/debuffs.dm | 2 +- code/game/objects/items/twohanded.dm | 11 ++++++----- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/code/__DEFINES/movespeed_modification.dm b/code/__DEFINES/movespeed_modification.dm index 2db40cc988..5d35da5382 100644 --- a/code/__DEFINES/movespeed_modification.dm +++ b/code/__DEFINES/movespeed_modification.dm @@ -70,4 +70,4 @@ #define MOVESPEED_ID_MKULTRA "MKULTRA" -#define MOVESPEED_ID_ELECTROSTAFF "ELECTROSTAFF" +#define MOVESPEED_ID_ELECTROSTAFF "ELECTROSTAFF" \ No newline at end of file diff --git a/code/datums/status_effects/debuffs.dm b/code/datums/status_effects/debuffs.dm index 335bdfac6e..864dd5893f 100644 --- a/code/datums/status_effects/debuffs.dm +++ b/code/datums/status_effects/debuffs.dm @@ -596,7 +596,7 @@ if(isnum(set_duration)) duration = set_duration . = ..() - owner.add_movespeed_modifier(MOVESPEED_ID_ELECTROSTAFF, multiplicative_slowdown = 1, movetypes = GROUND, blacklisted_movetypes = CRAWLING) + owner.add_movespeed_modifier(MOVESPEED_ID_ELECTROSTAFF, multiplicative_slowdown = 1, movetypes = GROUND) /datum/status_effect/electrostaff/on_remove() owner.remove_movespeed_modifier(MOVESPEED_ID_ELECTROSTAFF) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 44fe9e3a0e..bba8bd4774 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1041,6 +1041,7 @@ attack_verb = list("suppresed", "struck", "beaten", "thwacked", "pulped", "shocked") total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high + var/on = FALSE var/lethal_cost = 400 //10000/333*15 = 450. decent enough?? kinda? var/lethal_damage = 15 var/lethal_stam_cost = 3.5 @@ -1159,7 +1160,7 @@ if(C.charge < min_hit_cost()) turn_off() -/obj/item/twohanded/required/electrostaff/attack(mob/living/target, mob/living/user) +/obj/item/melee/twohanded/required/electrostaff/attack(mob/living/target, mob/living/user) if(user.getStaminaLoss() >= STAMINA_SOFTCRIT)//CIT CHANGE - makes it impossible to baton in stamina softcrit to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto return //CIT CHANGE - ditto @@ -1186,7 +1187,7 @@ user.do_attack_animation(M) user.adjustStaminaLossBuffered(harm_stam_cost) -/obj/item/twohanded/required/electrostaff/proc/stun_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) +/obj/item/melee/twohanded/required/electrostaff/proc/stun_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) var/stunforce = stun_stamdmg if(!no_charge_and_force) if(!on) @@ -1217,7 +1218,7 @@ H.forcesay(GLOB.hit_appends) return TRUE -/obj/item/twohanded/required/electrostaff/proc/harm_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) +/obj/item/melee/twohanded/required/electrostaff/proc/harm_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) var/lethal_force = lethal_damage if(!no_charge_and_force) if(!on) @@ -1240,7 +1241,7 @@ playsound(src, 'sound/weapons/sear.ogg', 50, 1, -1) return TRUE -/obj/item/twohanded/required/electrostaff/proc/clowning_around(mob/living/user) +/obj/item/melee/twohanded/required/electrostaff/proc/clowning_around(mob/living/user) user.visible_message("[user] accidentally hits [user.p_them()]self with [src]!", \ "You accidentally hit yourself with [src]!") SEND_SIGNAL(user, COMSIG_LIVING_MINOR_SHOCK) @@ -1248,7 +1249,7 @@ stun_act(user, user, TRUE) deductcharge(lethal_cost) -/obj/item/twohanded/required/electrostaff/emp_act(severity) +/obj/item/melee/twohanded/required/electrostaff/emp_act(severity) . = ..() if (!(. & EMP_PROTECT_SELF)) turn_off() From 70beec5985343c90c723c5c25ffd91aeeb396dc5 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:30:41 -0700 Subject: [PATCH 003/175] woops --- code/game/objects/items/twohanded.dm | 57 ++++++++++++++++++---------- 1 file changed, 36 insertions(+), 21 deletions(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index bba8bd4774..afc25293bb 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -24,7 +24,7 @@ * Twohanded */ /obj/item/twohanded - var/wielded = 0 + var/wielded = FALSE var/force_unwielded // default to null, the number force will be set to on unwield() var/force_wielded // same as above but for wield() var/wieldsound = null @@ -1018,7 +1018,7 @@ user.client.pixel_x = 0 user.client.pixel_y = 0 -/obj/item/twohanded/required/electrostaff +/obj/item/twohanded/electrostaff icon = 'icons/obj/estaff.dmi' icon_state = "electrostaff_3" item_state = "electrostaff_3" @@ -1031,7 +1031,7 @@ w_class = WEIGHT_CLASS_GIGANTIC slot_flags = ITEM_SLOT_BACK sharpness = FALSE - force_unwielded = 0 + force_unwielded = 5 force_wielded = 10 throwforce = 1 throw_speed = 1 @@ -1042,6 +1042,7 @@ total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high var/on = FALSE + var/can_block_projectiles = FALSE //can't block guns var/lethal_cost = 400 //10000/333*15 = 450. decent enough?? kinda? var/lethal_damage = 15 var/lethal_stam_cost = 3.5 @@ -1051,21 +1052,30 @@ var/stun_status_duration = 25 var/stun_stam_cost = 3.5 -/obj/item/twohanded/required/electrostaff/Initialize(mapload) +/obj/item/twohanded/electrostaff/Initialize(mapload) . = ..() if(ispath(cell)) cell = new cell -/obj/item/twohanded/required/electrostaff/get_cell() +/obj/item/twohanded/electrostaff/Destroy() + STOP_PROCESSING(SSobj, src) + return ..() + +/obj/item/twohanded/electrostaff/get_cell() . = cell if(iscyborg(loc)) var/mob/living/silicon/robot/R = loc . = R.get_cell() -/obj/item/twohanded/required/electrostaff/proc/min_hitcost() +/obj/item/twohanded/electrostaff/hit_reaction(mob/living/carbon/human/owner, atom/movable/hitby, attack_text = "the attack", final_block_chance = 0, damage = 0, attack_type = MELEE_ATTACK) + if((attack_type == PROJECTILE_ATTACK) && !can_block_projectiles) + return FALSE + return ..() + +/obj/item/twohanded/electrostaff/proc/min_hitcost() return min(stun_cost, lethal_cost) -/obj/item/twohanded/required/electrostaff/proc/turn_on(mob/user, silent = FALSE) +/obj/item/twohanded/electrostaff/proc/turn_on(mob/user, silent = FALSE) if(on) return if(!cell) @@ -1084,7 +1094,7 @@ if(!silent) playsound(src, "sparks", 75, 1, -1) -/obj/item/twohanded/required/electrostaff/proc/turn_off(mob/user, silent = FALSE) +/obj/item/twohanded/electrostaff/proc/turn_off(mob/user, silent = FALSE) if(!on) return if(user) @@ -1095,34 +1105,39 @@ if(!silent) playsound(src, "sparks", 75, 1, -1) -/obj/item/twohanded/required/electrostaff/proc/toggle(mob/user, silent = FALSE) +/obj/item/twohanded/electrostaff/proc/toggle(mob/user, silent = FALSE) if(on) turn_off(user, silent) else turn_on(user, silent) -/obj/item/twohanded/required/electrostaff/attack_self(mob/user) +/obj/item/twohanded/electrostaff/attack_self(mob/user) + var/oldwielded = wielded . = ..() if(.) return - toggle(user) + if(oldwielded != wielded) + if(wielded) + turn_on(user) + else + turn_off(user) add_fingerprint(user) -/obj/item/twohanded/required/electrostaff/update_icon() +/obj/item/twohanded/electrostaff/update_icon() . = ..() var/final = on? "electrostaff_1" : "electrostaff_3" icon_state = final item_state = final set_light(7, on? 1 : 0, LIGHT_COLOR_CYAN) -/obj/item/twohanded/required/electrostaff/examine(mob/living/user) +/obj/item/twohanded/electrostaff/examine(mob/living/user) . = ..() if(cell) . += "The cell charge is [round(cell.percent())]%." else . += "There is no cell installed!" -/obj/item/twohanded/required/electrostaff/attackby(obj/item/W, mob/user, params) +/obj/item/twohanded/electrostaff/attackby(obj/item/W, mob/user, params) if(istype(W, /obj/item/stock_parts/cell)) var/obj/item/stock_parts/cell/C = W if(cell) @@ -1146,10 +1161,10 @@ else return ..() -/obj/item/melee/twohanded/required/electrostaff/process() +/obj/item/twohanded/electrostaff/process() deductcharge(50) //Wasteful! -/obj/item/melee/twohanded/required/electrostaff/proc/deductcharge(amount) +/obj/item/twohanded/electrostaff/proc/deductcharge(amount) var/obj/item/stock_parts/cell/C = get_cell() if(!C) turn_off() @@ -1160,7 +1175,7 @@ if(C.charge < min_hit_cost()) turn_off() -/obj/item/melee/twohanded/required/electrostaff/attack(mob/living/target, mob/living/user) +/obj/item/twohanded/electrostaff/attack(mob/living/target, mob/living/user) if(user.getStaminaLoss() >= STAMINA_SOFTCRIT)//CIT CHANGE - makes it impossible to baton in stamina softcrit to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto return //CIT CHANGE - ditto @@ -1187,7 +1202,7 @@ user.do_attack_animation(M) user.adjustStaminaLossBuffered(harm_stam_cost) -/obj/item/melee/twohanded/required/electrostaff/proc/stun_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) +/obj/item/twohanded/electrostaff/proc/stun_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) var/stunforce = stun_stamdmg if(!no_charge_and_force) if(!on) @@ -1218,7 +1233,7 @@ H.forcesay(GLOB.hit_appends) return TRUE -/obj/item/melee/twohanded/required/electrostaff/proc/harm_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) +/obj/item/twohanded/electrostaff/proc/harm_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) var/lethal_force = lethal_damage if(!no_charge_and_force) if(!on) @@ -1241,7 +1256,7 @@ playsound(src, 'sound/weapons/sear.ogg', 50, 1, -1) return TRUE -/obj/item/melee/twohanded/required/electrostaff/proc/clowning_around(mob/living/user) +/obj/item/twohanded/electrostaff/proc/clowning_around(mob/living/user) user.visible_message("[user] accidentally hits [user.p_them()]self with [src]!", \ "You accidentally hit yourself with [src]!") SEND_SIGNAL(user, COMSIG_LIVING_MINOR_SHOCK) @@ -1249,7 +1264,7 @@ stun_act(user, user, TRUE) deductcharge(lethal_cost) -/obj/item/melee/twohanded/required/electrostaff/emp_act(severity) +/obj/item/twohanded/electrostaff/emp_act(severity) . = ..() if (!(. & EMP_PROTECT_SELF)) turn_off() From 8556bcf2b34d19d75cd58ea80b9e898561a9aff7 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:36:10 -0700 Subject: [PATCH 004/175] compile --- code/game/machinery/recharger.dm | 2 +- code/game/objects/items/twohanded.dm | 15 +++++++++------ .../crates_lockers/closets/secure/security.dm | 4 ++-- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm index 29116b5a7c..20594a674d 100755 --- a/code/game/machinery/recharger.dm +++ b/code/game/machinery/recharger.dm @@ -18,7 +18,7 @@ /obj/item/modular_computer, /obj/item/gun/ballistic/automatic/magrifle_e, /obj/item/gun/ballistic/automatic/pistol/mag_e, - /obj/item/twohanded/required/electrostaff)) + /obj/item/twohanded/electrostaff)) /obj/machinery/recharger/RefreshParts() for(var/obj/item/stock_parts/capacitor/C in component_parts) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index afc25293bb..e04ec75345 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1155,15 +1155,18 @@ if(cell) cell.update_icon() cell.forceMove(get_turf(src)) - cell= null + cell = null to_chat(user, "You remove the cell from [src].") - depower(user) + turn_off(user, TRUE) else return ..() /obj/item/twohanded/electrostaff/process() deductcharge(50) //Wasteful! +/obj/item/twohanded/electrostaff/proc/min_hit_cost() + return min(lethal_cost, stun_cost) + /obj/item/twohanded/electrostaff/proc/deductcharge(amount) var/obj/item/stock_parts/cell/C = get_cell() if(!C) @@ -1193,14 +1196,14 @@ return FALSE if(user.a_intent != INTENT_HARM) if(stun_act(target, user)) - user.do_attack_animation(M) + user.do_attack_animation(target) user.adjustStaminaLossBuffered(stun_stam_cost) return else if(!harm_act(target, user)) return ..() //if you can't fry them just beat them with it else //we did harm act them - user.do_attack_animation(M) - user.adjustStaminaLossBuffered(harm_stam_cost) + user.do_attack_animation(target) + user.adjustStaminaLossBuffered(lethal_stam_cost) /obj/item/twohanded/electrostaff/proc/stun_act(mob/living/target, mob/living/user, no_charge_and_force = FALSE) var/stunforce = stun_stamdmg @@ -1245,7 +1248,7 @@ return FALSE if(chargeleft < stun_cost) lethal_force *= round(chargeleft/lethal_cost, 0.1) - target.adjustBurnLoss(lethal_force) //good against ointment spam + target.adjustFireLoss(lethal_force) //good against ointment spam SEND_SIGNAL(target, COMSIG_LIVING_MINOR_SHOCK) if(user) target.lastattacker = user.real_name diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 43021f3528..85fcb49e16 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -289,8 +289,8 @@ icon_state = "tac" /obj/structure/closet/secure_closet/lethalshots/PopulateContents() ..() - new /obj/item/twohanded/required/electrostaff(src) - new /obj/item/twohanded/required/electrostaff(src) + new /obj/item/twohanded/electrostaff(src) + new /obj/item/twohanded/electrostaff(src) for(var/i in 1 to 3) new /obj/item/storage/box/lethalshot(src) From e1ed34dcdec0edc4da03abcaff28ef88664e1428 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:38:18 -0700 Subject: [PATCH 005/175] s --- code/game/objects/items/twohanded.dm | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index e04ec75345..f22f885753 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1143,7 +1143,7 @@ if(cell) to_chat(user, "[src] already has a cell!") else - if(C.maxcharge < hitcost) + if(C.maxcharge < min_hit_cost()) to_chat(user, "[src] requires a higher capacity cell.") return if(!user.transferItemToLoc(W, src)) @@ -1182,12 +1182,9 @@ if(user.getStaminaLoss() >= STAMINA_SOFTCRIT)//CIT CHANGE - makes it impossible to baton in stamina softcrit to_chat(user, "You're too exhausted for that.")//CIT CHANGE - ditto return //CIT CHANGE - ditto - if(status && HAS_TRAIT(user, TRAIT_CLUMSY) && prob(50)) - if(on) - clowning_around(user) //ouch! - return - else - return ..(user, user) //beat yourself + if(on && HAS_TRAIT(user, TRAIT_CLUMSY) && prob(50)) + clowning_around(user) //ouch! + return if(iscyborg(target)) ..() return @@ -1263,7 +1260,7 @@ user.visible_message("[user] accidentally hits [user.p_them()]self with [src]!", \ "You accidentally hit yourself with [src]!") SEND_SIGNAL(user, COMSIG_LIVING_MINOR_SHOCK) - lethal_act(user, user, TRUE) + harm_act(user, user, TRUE) stun_act(user, user, TRUE) deductcharge(lethal_cost) From dd113f5c7193a00c195b3c42db52417bc31c854e Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:39:36 -0700 Subject: [PATCH 006/175] L --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index f22f885753..9cd37099e1 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1189,7 +1189,7 @@ ..() return if(target.check_shields(src, 0, "[user]'s [name]", MELEE_ATTACK)) //No message; check_shields() handles that - playsound(L, 'sound/weapons/genhit.ogg', 50, 1) + playsound(target, 'sound/weapons/genhit.ogg', 50, 1) return FALSE if(user.a_intent != INTENT_HARM) if(stun_act(target, user)) From c69446d2d11575138c251564da73730dfd75d80b Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:46:54 -0700 Subject: [PATCH 007/175] woops miscalculated --- code/game/objects/items/twohanded.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 9cd37099e1..e395452d3a 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1029,7 +1029,7 @@ force = 10 damtype = BRUTE w_class = WEIGHT_CLASS_GIGANTIC - slot_flags = ITEM_SLOT_BACK + slot_flags = ITEM_SLOT_BACK | ITEM_SLOT_OCLOTHING sharpness = FALSE force_unwielded = 5 force_wielded = 10 @@ -1043,10 +1043,10 @@ var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high var/on = FALSE var/can_block_projectiles = FALSE //can't block guns - var/lethal_cost = 400 //10000/333*15 = 450. decent enough?? kinda? - var/lethal_damage = 15 - var/lethal_stam_cost = 3.5 - var/stun_cost = 333 //10000/500*25 = 500. stunbatons are at time of writing 10000/1000*49 = 490. This doesn't stun as fast but has block. Also, this does.. + var/lethal_cost = 400 //10000/400*20 = 500. decent enough? + var/lethal_damage = 20 + var/lethal_stam_cost = 4 + var/stun_cost = 333 //10000/333*25 = 750. stunbatons are at time of writing 10000/1000*49 = 490. var/stun_status_effect = STATUS_EFFECT_ELECTROSTAFF //a small slowdown effect var/stun_stamdmg = 25 var/stun_status_duration = 25 From 9b4e40e3a76f1697ecbee3e597430f940ee1a3ca Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 13:48:03 -0700 Subject: [PATCH 008/175] on second thought, fitting on OCLOTHING slot is a bad idea --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index e395452d3a..27b0baa70d 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1029,7 +1029,7 @@ force = 10 damtype = BRUTE w_class = WEIGHT_CLASS_GIGANTIC - slot_flags = ITEM_SLOT_BACK | ITEM_SLOT_OCLOTHING + slot_flags = ITEM_SLOT_BACK sharpness = FALSE force_unwielded = 5 force_wielded = 10 From 09bb223af027efd193f4950a8aaf59e66a7410e9 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 3 Feb 2020 15:49:41 -0700 Subject: [PATCH 009/175] eh fine --- code/game/objects/items/twohanded.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 27b0baa70d..564cca60fb 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1028,7 +1028,7 @@ desc = "A large quarterstaff, with massive silver electrodes mounted at the end." force = 10 damtype = BRUTE - w_class = WEIGHT_CLASS_GIGANTIC + w_class = WEIGHT_CLASS_HUGE slot_flags = ITEM_SLOT_BACK sharpness = FALSE force_unwielded = 5 @@ -1036,7 +1036,7 @@ throwforce = 1 throw_speed = 1 block_chance = 50 - materials = list(MAT_METAL=1000) + materials = list(MAT_METAL = 4000, MAT_SILVER = 2000) hitsound = 'sound/weapons/staff.ogg' attack_verb = list("suppresed", "struck", "beaten", "thwacked", "pulped", "shocked") total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. From 477853891d616fcd6adc050550e223f5476740ed Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 4 Feb 2020 23:54:10 -0700 Subject: [PATCH 010/175] Update twohanded.dm --- code/game/objects/items/twohanded.dm | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index b142b9d6a7..364a114751 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1032,13 +1032,12 @@ sharpness = FALSE force_unwielded = 5 force_wielded = 10 - throwforce = 1 + throwforce = 15 //if you are a madman and finish someone off with this, power to you. throw_speed = 1 block_chance = 50 materials = list(MAT_METAL = 4000, MAT_SILVER = 2000) - hitsound = 'sound/weapons/staff.ogg' - attack_verb = list("suppresed", "struck", "beaten", "thwacked", "pulped", "shocked") - total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. + attack_verb = list("struck", "beaten", "thwacked", "pulped") + total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. (to curb stun-kill rampaging without it being on) var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high var/on = FALSE var/can_block_projectiles = FALSE //can't block guns @@ -1110,16 +1109,16 @@ else turn_on(user, silent) -/obj/item/twohanded/electrostaff/attack_self(mob/user) - var/oldwielded = wielded +/obj/item/twohanded/electrostaff/wield(mob/user) . = ..() - if(.) - return - if(oldwielded != wielded) - if(wielded) - turn_on(user) - else - turn_off(user) + if(wielded) + turn_on(user) + add_fingerprint(user) + +/obj/item/twohanded/electrostaff/unwield(mob/user) + . = ..() + if(!wielded) + turn_off(user) add_fingerprint(user) /obj/item/twohanded/electrostaff/update_icon() From 77667dc1d2a72e6f2c5fdd6b01e892f40a2511ae Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 5 Feb 2020 04:51:16 -0700 Subject: [PATCH 011/175] Update twohanded.dm --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 364a114751..3a731415c8 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1028,7 +1028,7 @@ force = 10 damtype = BRUTE w_class = WEIGHT_CLASS_HUGE - slot_flags = ITEM_SLOT_BACK + slot_flags = ITEM_SLOT_BACK | ITEM_SLOT_OCLOTHING sharpness = FALSE force_unwielded = 5 force_wielded = 10 From 643eeb94749d368c11b96ae14db1da24889dc324 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 5 Feb 2020 05:05:11 -0700 Subject: [PATCH 012/175] Update twohanded.dm --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 3a731415c8..056abf0172 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1046,7 +1046,7 @@ var/lethal_stam_cost = 4 var/stun_cost = 333 //10000/333*25 = 750. stunbatons are at time of writing 10000/1000*49 = 490. var/stun_status_effect = STATUS_EFFECT_ELECTROSTAFF //a small slowdown effect - var/stun_stamdmg = 25 + var/stun_stamdmg = 40 var/stun_status_duration = 25 var/stun_stam_cost = 3.5 From de5186026d676ef8f2823df96798d6ecdddfbe7e Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Thu, 6 Feb 2020 01:10:47 -0700 Subject: [PATCH 013/175] Update twohanded.dm --- code/game/objects/items/twohanded.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 056abf0172..bce9e47554 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1034,7 +1034,7 @@ force_wielded = 10 throwforce = 15 //if you are a madman and finish someone off with this, power to you. throw_speed = 1 - block_chance = 50 + block_chance = 30 materials = list(MAT_METAL = 4000, MAT_SILVER = 2000) attack_verb = list("struck", "beaten", "thwacked", "pulped") total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. (to curb stun-kill rampaging without it being on) @@ -1066,6 +1066,8 @@ . = R.get_cell() /obj/item/twohanded/electrostaff/hit_reaction(mob/living/carbon/human/owner, atom/movable/hitby, attack_text = "the attack", final_block_chance = 0, damage = 0, attack_type = MELEE_ATTACK) + if(!on) + return FALSE if((attack_type == PROJECTILE_ATTACK) && !can_block_projectiles) return FALSE return ..() From cf22596477f542b908ea32508087d3ac5ace912e Mon Sep 17 00:00:00 2001 From: Artur Date: Fri, 7 Feb 2020 10:59:43 +0200 Subject: [PATCH 014/175] Reworks solars --- code/__DEFINES/components.dm | 4 + code/__DEFINES/power.dm | 3 + code/controllers/subsystem/sun.dm | 67 ++-- .../bloodsucker/bloodsucker_objectives.dm | 4 +- .../bloodsucker/datum_bloodsucker.dm | 17 +- code/modules/power/solar.dm | 357 +++++++++--------- code/modules/power/tracker.dm | 61 ++- tgstation.dme | 1 + 8 files changed, 241 insertions(+), 273 deletions(-) create mode 100644 code/__DEFINES/power.dm diff --git a/code/__DEFINES/components.dm b/code/__DEFINES/components.dm index 0efd5a1f79..dabb4c3c43 100644 --- a/code/__DEFINES/components.dm +++ b/code/__DEFINES/components.dm @@ -33,6 +33,10 @@ #define COMSIG_GLOB_NEW_Z "!new_z" //from base of datum/controller/subsystem/mapping/proc/add_new_zlevel(): (list/args) #define COMSIG_GLOB_VAR_EDIT "!var_edit" //called after a successful var edit somewhere in the world: (list/args) #define COMSIG_GLOB_LIVING_SAY_SPECIAL "!say_special" //global living say plug - use sparingly: (mob/speaker , message) + +// signals from globally accessible objects +/// from SSsun when the sun changes position : (azimuth) +#define COMSIG_SUN_MOVED "sun_moved" ////////////////////////////////////////////////////////////////// // /datum signals diff --git a/code/__DEFINES/power.dm b/code/__DEFINES/power.dm new file mode 100644 index 0000000000..78d942d78b --- /dev/null +++ b/code/__DEFINES/power.dm @@ -0,0 +1,3 @@ +#define SOLAR_TRACK_OFF 0 +#define SOLAR_TRACK_TIMED 1 +#define SOLAR_TRACK_AUTO 2 diff --git a/code/controllers/subsystem/sun.dm b/code/controllers/subsystem/sun.dm index 7a3528cc3d..442329cf46 100644 --- a/code/controllers/subsystem/sun.dm +++ b/code/controllers/subsystem/sun.dm @@ -1,49 +1,32 @@ SUBSYSTEM_DEF(sun) name = "Sun" - wait = 600 - flags = SS_NO_TICK_CHECK|SS_NO_INIT - var/angle - var/dx - var/dy - var/rate - var/list/solars = list() - -/datum/controller/subsystem/sun/PreInit() - angle = rand (0,360) // the station position to the sun is randomised at round start - rate = rand(50,200)/100 // 50% - 200% of standard rotation - if(prob(50)) // same chance to rotate clockwise than counter-clockwise - rate = -rate - -/datum/controller/subsystem/sun/stat_entry(msg) - ..("P:[solars.len]") - -/datum/controller/subsystem/sun/fire() - angle = (360 + angle + rate * 6) % 360 // increase/decrease the angle to the sun, adjusted by the rate - - // now calculate and cache the (dx,dy) increments for line drawing - var/s = sin(angle) - var/c = cos(angle) - - // Either "abs(s) < abs(c)" or "abs(s) >= abs(c)" - // In both cases, the greater is greater than 0, so, no "if 0" check is needed for the divisions - - if(abs(s) < abs(c)) - dx = s / abs(c) - dy = c / abs(c) - else - dx = s / abs(s) - dy = c / abs(s) - - //now tell the solar control computers to update their status and linked devices - for(var/obj/machinery/power/solar_control/SC in solars) - if(!SC.powernet) - solars.Remove(SC) - continue - SC.update() - - + wait = 1 MINUTES + flags = SS_NO_TICK_CHECK + var/azimuth = 0 ///clockwise, top-down rotation from 0 (north) to 359 + var/azimuth_mod = 1 ///multiplier against base_rotation + var/base_rotation = 6 ///base rotation in degrees per fire +/datum/controller/subsystem/sun/Initialize(start_timeofday) + azimuth = rand(0, 359) + azimuth_mod = round(rand(50, 200)/100, 0.01) // 50% - 200% of standard rotation + if(prob(50)) + azimuth_mod *= -1 + return ..() +/datum/controller/subsystem/sun/fire(resumed = FALSE) + azimuth += azimuth_mod * base_rotation + azimuth = round(azimuth, 0.01) + if(azimuth >= 360) + azimuth -= 360 + if(azimuth < 0) + azimuth += 360 + complete_movement() +/datum/controller/subsystem/sun/proc/complete_movement() + SEND_SIGNAL(src, COMSIG_SUN_MOVED, azimuth) +/datum/controller/subsystem/sun/vv_edit_var(var_name, var_value) + . = ..() + if(var_name == NAMEOF(src, azimuth)) + complete_movement() diff --git a/code/modules/antagonists/bloodsucker/bloodsucker_objectives.dm b/code/modules/antagonists/bloodsucker/bloodsucker_objectives.dm index 63e1470576..a2a0238df1 100644 --- a/code/modules/antagonists/bloodsucker/bloodsucker_objectives.dm +++ b/code/modules/antagonists/bloodsucker/bloodsucker_objectives.dm @@ -208,7 +208,7 @@ ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - +/* // Destroy the Solar Arrays /datum/objective/bloodsucker/solars @@ -228,7 +228,7 @@ if (SC && SC.lastgen > 0 && SC.connected_panels.len > 0 && SC.connected_tracker) return FALSE return TRUE - +*/ ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/code/modules/antagonists/bloodsucker/datum_bloodsucker.dm b/code/modules/antagonists/bloodsucker/datum_bloodsucker.dm index 24e967f00b..a916dceb12 100644 --- a/code/modules/antagonists/bloodsucker/datum_bloodsucker.dm +++ b/code/modules/antagonists/bloodsucker/datum_bloodsucker.dm @@ -379,20 +379,21 @@ protege_objective.generate_objective() add_objective(protege_objective) - if (rand(0,1) == 0) + //if (rand(0,1) == 0) // Heart Thief Objective - var/datum/objective/bloodsucker/heartthief/heartthief_objective = new - heartthief_objective.owner = owner - heartthief_objective.generate_objective() - add_objective(heartthief_objective) - + var/datum/objective/bloodsucker/heartthief/heartthief_objective = new + heartthief_objective.owner = owner + heartthief_objective.generate_objective() + add_objective(heartthief_objective) + /* else - // Solars Objective + + // Solars Objective, doesnt work due to TG updates. var/datum/objective/bloodsucker/solars/solars_objective = new solars_objective.owner = owner solars_objective.generate_objective() add_objective(solars_objective) - +*/ // Survive Objective var/datum/objective/bloodsucker/survive/survive_objective = new survive_objective.owner = owner diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index e6d44de194..2bd4766722 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -1,5 +1,5 @@ -#define SOLAR_MAX_DIST 40 -#define SOLARGENRATE 1500 +#define SOLAR_GEN_RATE 1500 +#define OCCLUSION_DISTANCE 20 /obj/machinery/power/solar name = "solar panel" @@ -10,40 +10,51 @@ use_power = NO_POWER_USE idle_power_usage = 0 active_power_usage = 0 - var/id = 0 max_integrity = 150 - integrity_failure = 50 - var/obscured = 0 - var/sunfrac = 0 - var/adir = SOUTH // actual dir - var/ndir = SOUTH // target dir - var/turn_angle = 0 - var/obj/machinery/power/solar_control/control = null + integrity_failure = 0.33 + + var/id + var/obscured = FALSE + var/sunfrac = 0 //[0-1] measure of obscuration -- multipllier against power generation + var/azimuth_current = 0 //[0-360) degrees, which direction are we facing? + var/azimuth_target = 0 //same but what way we're going to face next time we turn + var/obj/machinery/power/solar_control/control + var/needs_to_turn = TRUE //do we need to turn next tick? + var/needs_to_update_solar_exposure = TRUE //do we need to call update_solar_exposure() next tick? + var/obj/effect/overlay/panel var/obj/item/solar_assembly/assembly var/efficiency = 1 /obj/machinery/power/solar/Initialize(mapload, obj/item/solar_assembly/S) . = ..() + panel = new() +#if DM_VERSION >= 513 + panel.vis_flags = VIS_INHERIT_ID|VIS_INHERIT_ICON|VIS_INHERIT_PLANE + vis_contents += panel +#endif + panel.icon = icon + panel.icon_state = "solar_panel" + panel.layer = FLY_LAYER Make(S) connect_to_network() + RegisterSignal(SSsun, COMSIG_SUN_MOVED, .proc/queue_update_solar_exposure) /obj/machinery/power/solar/Destroy() unset_control() //remove from control computer return ..() -//set the control of the panel to a given computer if closer than SOLAR_MAX_DIST +//set the control of the panel to a given computer /obj/machinery/power/solar/proc/set_control(obj/machinery/power/solar_control/SC) - if(!SC || (get_dist(src, SC) > SOLAR_MAX_DIST)) - return 0 + unset_control() control = SC - SC.connected_panels |= src - return 1 + SC.connected_panels += src + queue_turn(SC.azimuth_target) //set the control of the panel to null and removes it from the control list of the previous control computer if needed /obj/machinery/power/solar/proc/unset_control() if(control) - control.connected_panels.Remove(src) - control = null + control.connected_panels -= src + control = null /obj/machinery/power/solar/proc/Make(obj/item/solar_assembly/S) if(!S) @@ -57,11 +68,11 @@ update_icon() /obj/machinery/power/solar/crowbar_act(mob/user, obj/item/I) - playsound(src.loc, 'sound/machines/click.ogg', 50, 1) - user.visible_message("[user] begins to take the glass off [src].", "You begin to take the glass off [src]...") + playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) + user.visible_message("[user] begins to take the glass off [src].", "You begin to take the glass off [src]...") if(I.use_tool(src, user, 50)) - playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) - user.visible_message("[user] takes the glass off [src].", "You take the glass off [src].") + playsound(src.loc, 'sound/items/deconstruct.ogg', 50, TRUE) + user.visible_message("[user] takes the glass off [src].", "You take the glass off [src].") deconstruct(TRUE) return TRUE @@ -69,11 +80,11 @@ switch(damage_type) if(BRUTE) if(stat & BROKEN) - playsound(loc, 'sound/effects/hit_on_shattered_glass.ogg', 60, 1) + playsound(loc, 'sound/effects/hit_on_shattered_glass.ogg', 60, TRUE) else - playsound(loc, 'sound/effects/glasshit.ogg', 90, 1) + playsound(loc, 'sound/effects/glasshit.ogg', 90, TRUE) if(BURN) - playsound(loc, 'sound/items/welder.ogg', 100, 1) + playsound(loc, 'sound/items/welder.ogg', 100, TRUE) /obj/machinery/power/solar/obj_break(damage_flag) @@ -96,81 +107,95 @@ new shard(loc) qdel(src) - -/obj/machinery/power/solar/update_icon() - ..() - cut_overlays() +/obj/machinery/power/solar/update_overlays() + . = ..() + var/matrix/turner = matrix() + turner.Turn(azimuth_current) + panel.transform = turner if(stat & BROKEN) - add_overlay(mutable_appearance(icon, "solar_panel-b", FLY_LAYER)) + panel.icon_state = "solar_panel-b" else - add_overlay(mutable_appearance(icon, "solar_panel", FLY_LAYER)) - src.setDir(angle2dir(adir)) + panel.icon_state = "solar_panel" +#if DM_VERSION <= 512 + . += new /mutable_appearance(panel) +#endif -//calculates the fraction of the sunlight that the panel receives +/obj/machinery/power/solar/proc/queue_turn(azimuth) + needs_to_turn = TRUE + azimuth_target = azimuth + +/obj/machinery/power/solar/proc/queue_update_solar_exposure() + needs_to_update_solar_exposure = TRUE //updating right away would be wasteful if we're also turning later + +/obj/machinery/power/solar/proc/update_turn() + needs_to_turn = FALSE + if(azimuth_current != azimuth_target) + azimuth_current = azimuth_target + occlusion_setup() + update_icon() + needs_to_update_solar_exposure = TRUE + +///trace towards sun to see if we're in shadow +/obj/machinery/power/solar/proc/occlusion_setup() + obscured = TRUE + + var/distance = OCCLUSION_DISTANCE + var/target_x = round(sin(SSsun.azimuth), 0.01) + var/target_y = round(cos(SSsun.azimuth), 0.01) + var/x_hit = x + var/y_hit = y + var/turf/hit + + for(var/run in 1 to distance) + x_hit += target_x + y_hit += target_y + hit = locate(round(x_hit, 1), round(y_hit, 1), z) + if(hit.opacity) + return + if(hit.x == 1 || hit.x == world.maxx || hit.y == 1 || hit.y == world.maxy) //edge of the map + break + obscured = FALSE + +///calculates the fraction of the sunlight that the panel receives /obj/machinery/power/solar/proc/update_solar_exposure() + needs_to_update_solar_exposure = FALSE + sunfrac = 0 if(obscured) - sunfrac = 0 - return + return 0 - //find the smaller angle between the direction the panel is facing and the direction of the sun (the sign is not important here) - var/p_angle = min(abs(adir - SSsun.angle), 360 - abs(adir - SSsun.angle)) + var/sun_azimuth = SSsun.azimuth + if(azimuth_current == sun_azimuth) //just a quick optimization for the most frequent case + . = 1 + else + //dot product of sun and panel -- Lambert's Cosine Law + . = cos(azimuth_current - sun_azimuth) + . = CLAMP(round(., 0.01), 0, 1) + sunfrac = . - if(p_angle > 90) // if facing more than 90deg from sun, zero output - sunfrac = 0 - return - - sunfrac = cos(p_angle) ** 2 - //isn't the power received from the incoming light proportionnal to cos(p_angle) (Lambert's cosine law) rather than cos(p_angle)^2 ? - -/obj/machinery/power/solar/process()//TODO: remove/add this from machines to save on processing as needed ~Carn PRIORITY +/obj/machinery/power/solar/process() if(stat & BROKEN) return - if(!control) //if there's no sun or the panel is not linked to a solar control computer, no need to proceed + if(control && (!powernet || control.powernet != powernet)) + unset_control() + if(needs_to_turn) + update_turn() + if(needs_to_update_solar_exposure) + update_solar_exposure() + if(sunfrac <= 0) return - if(powernet) - if(powernet == control.powernet)//check if the panel is still connected to the computer - if(obscured) //get no light from the sun, so don't generate power - return - var/sgen = SOLARGENRATE * sunfrac * efficiency - add_avail(sgen) - control.gen += sgen - else //if we're no longer on the same powernet, remove from control computer - unset_control() + var/sgen = SOLAR_GEN_RATE * sunfrac + add_avail(sgen) + if(control) + control.gen += sgen - -/obj/machinery/power/solar/fake/New(var/turf/loc, var/obj/item/solar_assembly/S) - ..(loc, S, 0) +//Bit of a hack but this whole type is a hack +/obj/machinery/power/solar/fake/Initialize(turf/loc, obj/item/solar_assembly/S) + . = ..() + UnregisterSignal(SSsun, COMSIG_SUN_MOVED) /obj/machinery/power/solar/fake/process() - . = PROCESS_KILL - return - -//trace towards sun to see if we're in shadow -/obj/machinery/power/solar/proc/occlusion() - - var/ax = x // start at the solar panel - var/ay = y - var/turf/T = null - var/dx = SSsun.dx - var/dy = SSsun.dy - - for(var/i = 1 to 20) // 20 steps is enough - ax += dx // do step - ay += dy - - T = locate( round(ax,0.5),round(ay,0.5),z) - - if(T.x == 1 || T.x==world.maxx || T.y==1 || T.y==world.maxy) // not obscured if we reach the edge - break - - if(T.density) // if we hit a solid turf, panel is obscured - obscured = 1 - return - - obscured = 0 // if hit the edge or stepped 20 times, not obscured - update_solar_exposure() - + return PROCESS_KILL // // Solar Assembly - For construction of solar arrays. @@ -204,21 +229,22 @@ forceMove(glass_type, Tsec) glass_type = null + /obj/item/solar_assembly/attackby(obj/item/W, mob/user, params) - if(istype(W, /obj/item/wrench) && isturf(loc)) + if(W.tool_behaviour == TOOL_WRENCH && isturf(loc)) if(isinspace()) to_chat(user, "You can't secure [src] here.") return anchored = !anchored if(anchored) - user.visible_message("[user] wrenches the solar assembly into place.", "You wrench the solar assembly into place.") + user.visible_message("[user] wrenches the solar assembly into place.", "You wrench the solar assembly into place.") W.play_tool_sound(src, 75) else - user.visible_message("[user] unwrenches the solar assembly from its place.", "You unwrench the solar assembly from its place.") + user.visible_message("[user] unwrenches the solar assembly from its place.", "You unwrench the solar assembly from its place.") W.play_tool_sound(src, 75) return 1 - if(is_type_in_typecache(W, allowed_sheets)) + if(istype(W, /obj/item/stack/sheet/glass) || istype(W, /obj/item/stack/sheet/rglass)) if(!anchored) to_chat(user, "You need to secure the assembly before you can add glass.") return @@ -226,8 +252,8 @@ var/obj/item/stack/sheet/G = S.change_stack(null, 2) if(G) glass_type = G - playsound(src.loc, 'sound/machines/click.ogg', 50, 1) - user.visible_message("[user] places the glass on the solar assembly.", "You place the glass on the solar assembly.") + playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) + user.visible_message("[user] places the glass on the solar assembly.", "You place the glass on the solar assembly.") if(tracker) new /obj/machinery/power/tracker(get_turf(src), src) else @@ -243,13 +269,13 @@ return tracker = 1 qdel(W) - user.visible_message("[user] inserts the electronics into the solar assembly.", "You insert the electronics into the solar assembly.") + user.visible_message("[user] inserts the electronics into the solar assembly.", "You insert the electronics into the solar assembly.") return 1 else - if(istype(W, /obj/item/crowbar)) + if(W.tool_behaviour == TOOL_CROWBAR) new /obj/item/electronics/tracker(src.loc) tracker = 0 - user.visible_message("[user] takes out the electronics from the solar assembly.", "You take out the electronics from the solar assembly.") + user.visible_message("[user] takes out the electronics from the solar assembly.", "You take out the electronics from the solar assembly.") return 1 return ..() @@ -270,21 +296,23 @@ var/icon_screen = "solar" var/icon_keyboard = "power_key" var/id = 0 - var/currentdir = 0 - var/targetdir = 0 // target angle in manual tracking (since it updates every game minute) var/gen = 0 var/lastgen = 0 - var/track = 0 // 0= off 1=timed 2=auto (tracker) - var/trackrate = 600 // 300-900 seconds - var/nexttime = 0 // time for a panel to rotate of 1 degree in manual tracking + var/azimuth_target = 0 + var/azimuth_rate = 1 ///degree change per minute + + var/track = SOLAR_TRACK_OFF ///SOLAR_TRACK_OFF, SOLAR_TRACK_TIMED, SOLAR_TRACK_AUTO + var/obj/machinery/power/tracker/connected_tracker = null var/list/connected_panels = list() /obj/machinery/power/solar_control/Initialize() . = ..() - if(powernet) - set_panels(currentdir) + azimuth_rate = SSsun.base_rotation + RegisterSignal(SSsun, COMSIG_SUN_MOVED, .proc/timed_track) connect_to_network() + if(powernet) + set_panels(azimuth_target) /obj/machinery/power/solar_control/Destroy() for(var/obj/machinery/power/solar/M in connected_panels) @@ -293,16 +321,6 @@ connected_tracker.unset_control() return ..() -/obj/machinery/power/solar_control/disconnect_from_network() - ..() - SSsun.solars.Remove(src) - -/obj/machinery/power/solar_control/connect_to_network() - var/to_return = ..() - if(powernet) //if connected and not already in solar_list... - SSsun.solars |= src //... add it - return to_return - //search for unconnected panels and trackers in the computer powernet and connect them /obj/machinery/power/solar_control/proc/search_for_connected() if(powernet) @@ -317,22 +335,6 @@ if(!T.control) //i.e unconnected T.set_control(src) -//called by the sun controller, update the facing angle (either manually or via tracking) and rotates the panels accordingly -/obj/machinery/power/solar_control/proc/update() - if(stat & (NOPOWER | BROKEN)) - return - - switch(track) - if(1) - if(trackrate) //we're manual tracking. If we set a rotation speed... - currentdir = targetdir //...the current direction is the targetted one (and rotates panels to it) - if(2) // auto-tracking - if(connected_tracker) - connected_tracker.set_angle(SSsun.angle) - - set_panels(currentdir) - updateDialog() - /obj/machinery/power/solar_control/update_icon() cut_overlays() if(stat & NOPOWER) @@ -353,68 +355,55 @@ /obj/machinery/power/solar_control/ui_data() var/data = list() - data["generated"] = round(lastgen) - data["angle"] = currentdir - data["direction"] = angle2text(currentdir) - + data["generated_ratio"] = data["generated"] / round(max(connected_panels.len, 1) * SOLAR_GEN_RATE) + data["azimuth_current"] = azimuth_target + data["azimuth_rate"] = azimuth_rate + data["max_rotation_rate"] = SSsun.base_rotation * 2 data["tracking_state"] = track - data["tracking_rate"] = trackrate - data["rotating_way"] = (trackrate<0 ? "CCW" : "CW") - data["connected_panels"] = connected_panels.len - data["connected_tracker"] = (connected_tracker ? 1 : 0) + data["connected_tracker"] = (connected_tracker ? TRUE : FALSE) return data /obj/machinery/power/solar_control/ui_act(action, params) if(..()) return - if(action == "angle") + if(action == "azimuth") var/adjust = text2num(params["adjust"]) var/value = text2num(params["value"]) if(adjust) - value = currentdir + adjust + value = azimuth_target + adjust if(value != null) - currentdir = CLAMP((360 + value) % 360, 0, 359) - targetdir = currentdir - set_panels(currentdir) + set_panels(value) return TRUE return FALSE - if(action == "rate") + if(action == "azimuth_rate") var/adjust = text2num(params["adjust"]) var/value = text2num(params["value"]) if(adjust) - value = trackrate + adjust + value = azimuth_rate + adjust if(value != null) - trackrate = CLAMP(value, -7200, 7200) - if(trackrate) - nexttime = world.time + 36000 / abs(trackrate) + azimuth_rate = round(CLAMP(value, -2 * SSsun.base_rotation, 2 * SSsun.base_rotation), 0.01) return TRUE return FALSE if(action == "tracking") var/mode = text2num(params["mode"]) track = mode - if(mode == 2 && connected_tracker) - connected_tracker.set_angle(SSsun.angle) - set_panels(currentdir) - else if(mode == 1) - targetdir = currentdir - if(trackrate) - nexttime = world.time + 36000 / abs(trackrate) - set_panels(targetdir) + if(mode == SOLAR_TRACK_AUTO) + if(connected_tracker) + connected_tracker.sun_update(SSsun, SSsun.azimuth) + else + track = SOLAR_TRACK_OFF return TRUE if(action == "refresh") search_for_connected() - if(connected_tracker && track == 2) - connected_tracker.set_angle(SSsun.angle) - set_panels(currentdir) return TRUE return FALSE /obj/machinery/power/solar_control/attackby(obj/item/I, mob/user, params) - if(istype(I, /obj/item/screwdriver)) + if(I.tool_behaviour == TOOL_SCREWDRIVER) if(I.use_tool(src, user, 20, volume=50)) - if (src.stat & BROKEN) + if(src.stat & BROKEN) to_chat(user, "The broken glass falls out.") var/obj/structure/frame/computer/A = new /obj/structure/frame/computer( src.loc ) new /obj/item/shard( src.loc ) @@ -446,15 +435,15 @@ switch(damage_type) if(BRUTE) if(stat & BROKEN) - playsound(src.loc, 'sound/effects/hit_on_shattered_glass.ogg', 70, 1) + playsound(src.loc, 'sound/effects/hit_on_shattered_glass.ogg', 70, TRUE) else - playsound(src.loc, 'sound/effects/glasshit.ogg', 75, 1) + playsound(src.loc, 'sound/effects/glasshit.ogg', 75, TRUE) if(BURN) - playsound(src.loc, 'sound/items/welder.ogg', 100, 1) + playsound(src.loc, 'sound/items/welder.ogg', 100, TRUE) /obj/machinery/power/solar_control/obj_break(damage_flag) if(!(stat & BROKEN) && !(flags_1 & NODECONSTRUCT_1)) - playsound(loc, 'sound/effects/glassbr3.ogg', 100, 1) + playsound(loc, 'sound/effects/glassbr3.ogg', 100, TRUE) stat |= BROKEN update_icon() @@ -462,35 +451,26 @@ lastgen = gen gen = 0 - if(stat & (NOPOWER | BROKEN)) - return + if(connected_tracker && (!powernet || connected_tracker.powernet != powernet)) + connected_tracker.unset_control() - if(connected_tracker) //NOTE : handled here so that we don't add trackers to the processing list - if(connected_tracker.powernet != powernet) - connected_tracker.unset_control() +///Ran every time the sun updates. +/obj/machinery/power/solar_control/proc/timed_track() + if(track == SOLAR_TRACK_TIMED) + azimuth_target += azimuth_rate + set_panels(azimuth_target) - if(track==1 && trackrate) //manual tracking and set a rotation speed - if(nexttime <= world.time) //every time we need to increase/decrease the angle by 1�... - targetdir = (targetdir + trackrate/abs(trackrate) + 360) % 360 //... do it - nexttime += 36000/abs(trackrate) //reset the counter for the next 1� - -//rotates the panel to the passed angle -/obj/machinery/power/solar_control/proc/set_panels(currentdir) +///Rotates the panel to the passed angles +/obj/machinery/power/solar_control/proc/set_panels(azimuth) + azimuth = CLAMP(round(azimuth, 0.01), -360, 719.99) + if(azimuth >= 360) + azimuth -= 360 + if(azimuth < 0) + azimuth += 360 + azimuth_target = azimuth for(var/obj/machinery/power/solar/S in connected_panels) - S.adir = currentdir //instantly rotates the panel - S.occlusion()//and - S.update_icon() //update it - - update_icon() - - -/obj/machinery/power/solar_control/power_change() - ..() - update_icon() - - - + S.queue_turn(azimuth) // // MISC @@ -499,3 +479,6 @@ /obj/item/paper/guides/jobs/engi/solars name = "paper- 'Going green! Setup your own solar array instructions.'" info = "

Welcome

At greencorps we love the environment, and space. With this package you are able to help mother nature and produce energy without any usage of fossil fuel or plasma! Singularity energy is dangerous while solar energy is safe, which is why it's better. Now here is how you setup your own solar array.

You can make a solar panel by wrenching the solar assembly onto a cable node. Adding a glass panel, reinforced or regular glass will do, will finish the construction of your solar panel. It is that easy!

Now after setting up 19 more of these solar panels you will want to create a solar tracker to keep track of our mother nature's gift, the sun. These are the same steps as before except you insert the tracker equipment circuit into the assembly before performing the final step of adding the glass. You now have a tracker! Now the last step is to add a computer to calculate the sun's movements and to send commands to the solar panels to change direction with the sun. Setting up the solar computer is the same as setting up any computer, so you should have no trouble in doing that. You do need to put a wire node under the computer, and the wire needs to be connected to the tracker.

Congratulations, you should have a working solar array. If you are having trouble, here are some tips. Make sure all solar equipment are on a cable node, even the computer. You can always deconstruct your creations if you make a mistake.

That's all to it, be safe, be green!

" + +#undef SOLAR_GEN_RATE +#undef OCCLUSION_DISTANCE diff --git a/code/modules/power/tracker.dm b/code/modules/power/tracker.dm index c25ece3594..2f169ebad0 100644 --- a/code/modules/power/tracker.dm +++ b/code/modules/power/tracker.dm @@ -1,6 +1,6 @@ //Solar tracker -//Machine that tracks the sun and reports it's direction to the solar controllers +//Machine that tracks the sun and reports its direction to the solar controllers //As long as this is working, solar panels on same powernet will track automatically /obj/machinery/power/tracker @@ -11,35 +11,39 @@ density = TRUE use_power = NO_POWER_USE max_integrity = 250 - integrity_failure = 50 + integrity_failure = 0.2 var/id = 0 - var/sun_angle = 0 // sun angle as set by sun datum - var/obj/machinery/power/solar_control/control = null - var/obj/item/solar_assembly/assembly + var/obj/machinery/power/solar_control/control /obj/machinery/power/tracker/Initialize(mapload, obj/item/solar_assembly/S) . = ..() Make(S) connect_to_network() + RegisterSignal(SSsun, COMSIG_SUN_MOVED, .proc/sun_update) /obj/machinery/power/tracker/Destroy() unset_control() //remove from control computer return ..() -//set the control of the tracker to a given computer if closer than SOLAR_MAX_DIST /obj/machinery/power/tracker/proc/set_control(obj/machinery/power/solar_control/SC) - if(!SC || (get_dist(src, SC) > SOLAR_MAX_DIST)) - return 0 + unset_control() control = SC SC.connected_tracker = src - return 1 //set the control of the tracker to null and removes it from the previous control computer if needed /obj/machinery/power/tracker/proc/unset_control() if(control) + if(control.track == SOLAR_TRACK_AUTO) + control.track = SOLAR_TRACK_OFF control.connected_tracker = null - control = null + control = null + +///Tell the controller to turn the solar panels +/obj/machinery/power/tracker/proc/sun_update(datum/source, azimuth) + setDir(angle2dir(azimuth)) + if(control && control.track == SOLAR_TRACK_AUTO) + control.set_panels(azimuth) /obj/machinery/power/tracker/proc/Make(obj/item/solar_assembly/S) if(!S) @@ -51,42 +55,31 @@ S.moveToNullspace() update_icon() -//updates the tracker icon and the facing angle for the control computer -/obj/machinery/power/tracker/proc/set_angle(angle) - sun_angle = angle - - //set icon dir to show sun illumination - setDir(turn(NORTH, -angle - 22.5) )// 22.5 deg bias ensures, e.g. 67.5-112.5 is EAST - - if(powernet && (powernet == control.powernet)) //update if we're still in the same powernet - control.currentdir = angle - /obj/machinery/power/tracker/crowbar_act(mob/user, obj/item/I) - playsound(src.loc, 'sound/machines/click.ogg', 50, 1) - user.visible_message("[user] begins to take the glass off [src].", "You begin to take the glass off [src]...") + playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) + user.visible_message("[user] begins to take the glass off [src].", "You begin to take the glass off [src]...") if(I.use_tool(src, user, 50)) - playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) - user.visible_message("[user] takes the glass off [src].", "You take the glass off [src].") + playsound(src.loc, 'sound/items/deconstruct.ogg', 50, TRUE) + user.visible_message("[user] takes the glass off [src].", "You take the glass off [src].") deconstruct(TRUE) return TRUE /obj/machinery/power/tracker/obj_break(damage_flag) if(!(stat & BROKEN) && !(flags_1 & NODECONSTRUCT_1)) - playsound(loc, 'sound/effects/glassbr3.ogg', 100, 1) - stat |= BROKEN + playsound(loc, 'sound/effects/glassbr3.ogg', 100, TRUE) unset_control() -/obj/machinery/power/solar/deconstruct(disassembled = TRUE) +/obj/machinery/power/tracker/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) if(disassembled) - if(assembly) - assembly.forceMove(loc) - assembly.give_glass(stat & BROKEN) + var/obj/item/solar_assembly/S = locate() in src + if(S) + S.forceMove(loc) + S.give_glass(stat & BROKEN) else - playsound(src, "shatter", 70, 1) - var/shard = assembly?.glass_type ? assembly.glass_type.shard_type : /obj/item/shard - new shard(loc) - new shard(loc) + playsound(src, "shatter", 70, TRUE) + new /obj/item/shard(src.loc) + new /obj/item/shard(src.loc) qdel(src) // Tracker Electronic diff --git a/tgstation.dme b/tgstation.dme index 28ae7eee99..836fae32e4 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -77,6 +77,7 @@ #include "code\__DEFINES\obj_flags.dm" #include "code\__DEFINES\pinpointers.dm" #include "code\__DEFINES\pipe_construction.dm" +#include "code\__DEFINES\power.dm" #include "code\__DEFINES\preferences.dm" #include "code\__DEFINES\procpath.dm" #include "code\__DEFINES\profile.dm" From c00f797a4a0411ea31e7e14c4a621ad57e697fe7 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 16 Feb 2020 01:26:33 -0600 Subject: [PATCH 015/175] extendies --- .../configuration/entries/general.dm | 10 +++++++ code/controllers/subsystem/autotransfer.dm | 17 ++++++++++++ code/controllers/subsystem/ticker.dm | 2 +- code/controllers/subsystem/vote.dm | 26 ++++++++++++++++++- config/config.txt | 6 +++++ 5 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 code/controllers/subsystem/autotransfer.dm diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index cb8c0fe966..b5e7137374 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -82,6 +82,16 @@ config_entry_value = 600 min_val = 0 +/datum/config_entry/number/vote_autotransfer_initial //length of time before the first autotransfer vote is called (deciseconds, default 2 hours) + config_entry_value = 72000 + integer = FALSE + min_val = 0 + +/datum/config_entry/number/vote_autotransfer_interval //length of time to wait before subsequent autotransfer votes (deciseconds, default 30 minutes) + config_entry_value = 18000 + integer = FALSE + min_val = 0 + /datum/config_entry/flag/default_no_vote // vote does not default to nochange/norestart /datum/config_entry/flag/no_dead_vote // dead people can't vote diff --git a/code/controllers/subsystem/autotransfer.dm b/code/controllers/subsystem/autotransfer.dm new file mode 100644 index 0000000000..05ef3127c1 --- /dev/null +++ b/code/controllers/subsystem/autotransfer.dm @@ -0,0 +1,17 @@ +SUBSYSTEM_DEF(autotransfer) + name = "Autotransfer Vote" + flags = SS_KEEP_TIMING | SS_BACKGROUND + wait = 1 MINUTES + + var/starttime + var/targettime + +/datum/controller/subsystem/autotransfer/Initialize(timeofday) + starttime = world.time + targettime = starttime + CONFIG_GET(number/vote_autotransfer_initial) + return ..() + +/datum/controller/subsystem/autotransfer/fire() + if (world.time > targettime) + SSvote.initiate_vote("transfer",null) //TODO figure out how to not use null as the user + targettime = targettime + CONFIG_GET(number/vote_autotransfer_interval) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index fe994facdc..3857fb0af5 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -213,7 +213,7 @@ SUBSYSTEM_DEF(ticker) check_queue() check_maprotate() scripture_states = scripture_unlock_alert(scripture_states) - SSshuttle.autoEnd() + //SSshuttle.autoEnd() if(!roundend_check_paused && mode.check_finished(force_ending) || force_ending) current_state = GAME_STATE_FINISHED diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 9924ed7917..10d1cbb3d0 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -89,6 +89,20 @@ SUBSYSTEM_DEF(vote) choices[GLOB.master_mode] += non_voters.len if(choices[GLOB.master_mode] >= greatest_votes) greatest_votes = choices[GLOB.master_mode] + else if(mode == "transfer") // austation begin -- Crew autotransfer vote + var/factor = 1 + switch(world.time / (1 MINUTES )) + if(0 to 60) + factor = 0.5 + if(61 to 120) + factor = 0.8 + if(121 to 240) + factor = 1 + if(241 to 300) + factor = 1.2 + else + factor = 1.4 + choices["Initiate Crew Transfer"] += round(non_voters.len * factor) // austation end //get all options with that many votes and return them in a list . = list() if(greatest_votes) @@ -365,6 +379,13 @@ SUBSYSTEM_DEF(vote) log_admin("The map has been voted for and will change to: [VM.map_name]") if(SSmapping.changemap(config.maplist[.])) to_chat(world, "The map vote has chosen [VM.map_name] for next round!") + if("transfer") // austation begin -- Crew autotransfer vote + if(. == "Initiate Crew Transfer") + //TODO find a cleaner way to do this + SSshuttle.requestEvac(null,"Crew transfer requested.") + var/obj/machinery/computer/communications/C = locate() in GLOB.machines + if(C) + C.post_status("shuttle") // austation end if(restart) var/active_admins = 0 for(var/client/C in GLOB.admins) @@ -444,6 +465,7 @@ SUBSYSTEM_DEF(vote) to_chat(usr, "A vote was initiated recently, you must wait [DisplayTimeText(next_allowed_time-world.time)] before a new vote can be started!") return 0 + SEND_SOUND(world, sound('sound/misc/notice2.ogg')) reset() obfuscated = hideresults //CIT CHANGE - adds obfuscated votes switch(vote_type) @@ -465,6 +487,8 @@ SUBSYSTEM_DEF(vote) if(targetmap.max_round_search_span && count_occurences_of_value(lastmaps, M, targetmap.max_round_search_span) >= targetmap.max_rounds_played) continue choices |= M + if("transfer") // austation begin -- Crew autotranfer vote + choices.Add("Initiate Crew Transfer","Continue Playing") // austation end if("roundtype") //CIT CHANGE - adds the roundstart secret/extended vote choices.Add("secret", "extended") if("mode tiers") @@ -496,7 +520,7 @@ SUBSYSTEM_DEF(vote) else return 0 mode = vote_type - initiator = initiator_key + initiator = initiator_key ? initiator_key : "the Server" // austation -- Crew autotransfer vote started_time = world.time var/text = "[capitalize(mode)] vote started by [initiator]." if(mode == "custom") diff --git a/config/config.txt b/config/config.txt index 0ab0cc911e..cc9ede5ef2 100644 --- a/config/config.txt +++ b/config/config.txt @@ -184,6 +184,12 @@ VOTE_DELAY 6000 ## time period (deciseconds) which voting session will last (default 1 minute) VOTE_PERIOD 600 +## autovote initial delay (deciseconds) before first automatic transfer vote call (default 120 minutes) +VOTE_AUTOTRANSFER_INITIAL 72000 + +##autovote delay (deciseconds) before sequential automatic transfer votes are called (default 30 minutes) +VOTE_AUTOTRANSFER_INTERVAL 18000 + ## prevents dead players from voting or starting votes # NO_DEAD_VOTE From 35a070fc5736f4d8aee2770869093a87cb26cb30 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 16 Feb 2020 01:29:06 -0600 Subject: [PATCH 016/175] oh shit oh jesus is this working --- tgstation.dme | 1 + 1 file changed, 1 insertion(+) diff --git a/tgstation.dme b/tgstation.dme index 28f469ac25..3591fa59b5 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -242,6 +242,7 @@ #include "code\controllers\subsystem\assets.dm" #include "code\controllers\subsystem\atoms.dm" #include "code\controllers\subsystem\augury.dm" +#include "code\controllers\subsystem\autotransfer.dm" #include "code\controllers\subsystem\blackbox.dm" #include "code\controllers\subsystem\chat.dm" #include "code\controllers\subsystem\communications.dm" From f05a88d36f661bc93cd3e2b0539211e19ad73cd6 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 16 Feb 2020 02:24:41 -0600 Subject: [PATCH 017/175] it compiles now ghom --- code/controllers/subsystem/vote.dm | 38 +++++++++++++++--------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 10d1cbb3d0..9ddd8d9123 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -90,19 +90,19 @@ SUBSYSTEM_DEF(vote) if(choices[GLOB.master_mode] >= greatest_votes) greatest_votes = choices[GLOB.master_mode] else if(mode == "transfer") // austation begin -- Crew autotransfer vote - var/factor = 1 - switch(world.time / (1 MINUTES )) - if(0 to 60) - factor = 0.5 - if(61 to 120) - factor = 0.8 - if(121 to 240) - factor = 1 - if(241 to 300) - factor = 1.2 - else - factor = 1.4 - choices["Initiate Crew Transfer"] += round(non_voters.len * factor) // austation end + var/factor = 1 + switch(world.time / (1 MINUTES)) + if(0 to 60) + factor = 0.5 + if(61 to 120) + factor = 0.8 + if(121 to 240) + factor = 1 + if(241 to 300) + factor = 1.2 + else + factor = 1.4 + choices["Initiate Crew Transfer"] += round(non_voters.len * factor) // austation end //get all options with that many votes and return them in a list . = list() if(greatest_votes) @@ -380,12 +380,12 @@ SUBSYSTEM_DEF(vote) if(SSmapping.changemap(config.maplist[.])) to_chat(world, "The map vote has chosen [VM.map_name] for next round!") if("transfer") // austation begin -- Crew autotransfer vote - if(. == "Initiate Crew Transfer") - //TODO find a cleaner way to do this - SSshuttle.requestEvac(null,"Crew transfer requested.") - var/obj/machinery/computer/communications/C = locate() in GLOB.machines - if(C) - C.post_status("shuttle") // austation end + if(. == "Initiate Crew Transfer") + //TODO find a cleaner way to do this + SSshuttle.requestEvac(null,"Crew transfer requested.") + var/obj/machinery/computer/communications/C = locate() in GLOB.machines + if(C) + C.post_status("shuttle") // austation end if(restart) var/active_admins = 0 for(var/client/C in GLOB.admins) From c97111bedaabdd8feddccc0985d0155c4a607ead Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Mon, 17 Feb 2020 05:32:03 -0500 Subject: [PATCH 018/175] Reorganise Food + Balance Tweaks -Reorganised -ALL- foods in the crafting menu. -Made a section for Eastern Dishes, Mexican Dishes, and Sweets -Made Bowls, Salads, Soups, Eggs Benedict, and Omelettes normal sized. -Moved Easter Recipies to the food files, fixing it in the process. -Capitalised a few things. --- code/__DEFINES/construction.dm | 4 +- code/datums/components/crafting/craft.dm | 2 + .../food_and_drinks/food/customizables.dm | 2 +- .../food_and_drinks/food/snacks_egg.dm | 2 - .../food_and_drinks/food/snacks_other.dm | 46 +++ .../food_and_drinks/food/snacks_salad.dm | 2 +- .../food_and_drinks/food/snacks_soup.dm | 2 +- .../recipes/tablecraft/recipes_bread.dm | 130 ++++-- .../recipes/tablecraft/recipes_burger.dm | 390 +++++++++--------- .../recipes/tablecraft/recipes_cake.dm | 234 +++++------ .../recipes/tablecraft/recipes_frozen.dm | 2 +- .../recipes/tablecraft/recipes_meat.dm | 134 +++--- .../recipes/tablecraft/recipes_mexican.dm | 111 +++++ .../recipes/tablecraft/recipes_misc.dm | 261 ++---------- .../recipes/tablecraft/recipes_pastry.dm | 283 ++++++------- .../recipes/tablecraft/recipes_pie.dm | 220 +++++----- .../recipes/tablecraft/recipes_pizza.dm | 114 ++--- .../recipes/tablecraft/recipes_salad.dm | 80 ++-- .../recipes/tablecraft/recipes_sandwich.dm | 3 +- .../recipes/tablecraft/recipes_soup.dm | 243 ++++++----- .../recipes/tablecraft/recipes_spaghetti.dm | 20 +- .../recipes/tablecraft/recipes_sushi.dm | 70 +++- .../recipes/tablecraft/recipies_sweets.dm | 117 ++++++ code/modules/holiday/easter.dm | 98 +---- tgstation.dme | 2 + 25 files changed, 1303 insertions(+), 1269 deletions(-) create mode 100644 code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm create mode 100644 code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index c93f1b2435..c4d87de495 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -92,8 +92,10 @@ #define CAT_BREAD "Breads" #define CAT_BURGER "Burgers" #define CAT_CAKE "Cakes" +#define CAT_FISH "Eastern" #define CAT_EGG "Egg-Based Food" #define CAT_MEAT "Meats" +#define CAT_MEXICAN "Mexican" #define CAT_MISCFOOD "Misc. Food" #define CAT_PASTRY "Pastries" #define CAT_PIE "Pies" @@ -102,7 +104,7 @@ #define CAT_SANDWICH "Sandwiches" #define CAT_SOUP "Soups" #define CAT_SPAGHETTI "Spaghettis" -#define CAT_FISH "Fish" +#define CAT_SWEETS "Sweets" #define CAT_ICE "Frozen" #define RCD_FLOORWALL 1 diff --git a/code/datums/components/crafting/craft.dm b/code/datums/components/crafting/craft.dm index b5c7f34c27..674746479d 100644 --- a/code/datums/components/crafting/craft.dm +++ b/code/datums/components/crafting/craft.dm @@ -31,6 +31,7 @@ CAT_FISH, CAT_ICE, CAT_MEAT, + CAT_MEXICAN, CAT_MISCFOOD, CAT_PASTRY, CAT_PIE, @@ -39,6 +40,7 @@ CAT_SANDWICH, CAT_SOUP, CAT_SPAGHETTI, + CAT_SWEETS, ), CAT_DRINK = CAT_NONE, CAT_CLOTHING = CAT_NONE, diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm index 016e37a5c4..7cc1152962 100644 --- a/code/modules/food_and_drinks/food/customizables.dm +++ b/code/modules/food_and_drinks/food/customizables.dm @@ -294,7 +294,7 @@ icon_state = "bowl" reagent_flags = OPENCONTAINER materials = list(MAT_GLASS = 500) - w_class = WEIGHT_CLASS_NORMAL + w_class = WEIGHT_CLASS_SMALL /obj/item/reagent_containers/glass/bowl/attackby(obj/item/I,mob/user, params) if(istype(I, /obj/item/reagent_containers/food/snacks)) diff --git a/code/modules/food_and_drinks/food/snacks_egg.dm b/code/modules/food_and_drinks/food/snacks_egg.dm index c65e42c0e4..b2a474adac 100644 --- a/code/modules/food_and_drinks/food/snacks_egg.dm +++ b/code/modules/food_and_drinks/food/snacks_egg.dm @@ -124,7 +124,6 @@ bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 2) list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 1) bitesize = 1 - w_class = WEIGHT_CLASS_NORMAL tastes = list("egg" = 1, "cheese" = 1) foodtype = MEAT | BREAKFAST @@ -152,7 +151,6 @@ icon_state = "benedict" bonus_reagents = list(/datum/reagent/consumable/nutriment/vitamin = 4) trash = /obj/item/trash/plate - w_class = WEIGHT_CLASS_NORMAL list_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/vitamin = 4) tastes = list("egg" = 1, "bacon" = 1, "bun" = 1) foodtype = MEAT | BREAKFAST diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm index a7090a5274..1fff57395b 100644 --- a/code/modules/food_and_drinks/food/snacks_other.dm +++ b/code/modules/food_and_drinks/food/snacks_other.dm @@ -674,3 +674,49 @@ if (7000 to INFINITY) burn() ..() + +//Easter Stuff + +/obj/item/reagent_containers/food/snacks/chocolatebunny + name = "chocolate bunny" + desc = "Contains less than 10% real rabbit!" + icon_state = "chocolatebunny" + bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1) + list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/sugar = 2, /datum/reagent/consumable/coco = 2) + filling_color = "#A0522D" + +/obj/item/reagent_containers/food/snacks/store/cake/brioche + name = "brioche cake" + desc = "A ring of sweet, glazed buns." + icon_state = "briochecake" + slice_path = /obj/item/reagent_containers/food/snacks/cakeslice/brioche + slices_num = 6 + bonus_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/vitamin = 2) + +/obj/item/reagent_containers/food/snacks/cakeslice/brioche + name = "brioche cake slice" + desc = "Delicious sweet-bread. Who needs anything else?" + icon_state = "briochecake_slice" + filling_color = "#FFD700" + +/obj/item/reagent_containers/food/snacks/scotchegg + name = "scotch egg" + desc = "A boiled egg wrapped in a delicious, seasoned meatball." + icon_state = "scotchegg" + bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 2) + bitesize = 3 + filling_color = "#FFFFF0" + list_reagents = list(/datum/reagent/consumable/nutriment = 6) + +/obj/item/reagent_containers/food/snacks/soup/mammi + name = "Mammi" + desc = "A bowl of mushy bread and milk. It reminds you, not too fondly, of a bowel movement." + icon_state = "mammi" + bonus_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 1) + list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 1) + +/obj/item/reagent_containers/food/snacks/hotcrossbun + bitesize = 2 + name = "hot-cross bun" + desc = "The Cross represents the Assistants that died for your sins." + icon_state = "hotcrossbun" \ No newline at end of file diff --git a/code/modules/food_and_drinks/food/snacks_salad.dm b/code/modules/food_and_drinks/food/snacks_salad.dm index e272733235..aa4cf44f4e 100644 --- a/code/modules/food_and_drinks/food/snacks_salad.dm +++ b/code/modules/food_and_drinks/food/snacks_salad.dm @@ -4,7 +4,7 @@ icon = 'icons/obj/food/soupsalad.dmi' trash = /obj/item/reagent_containers/glass/bowl bitesize = 3 - w_class = WEIGHT_CLASS_NORMAL + w_class = WEIGHT_CLASS_SMALL list_reagents = list(/datum/reagent/consumable/nutriment = 7, /datum/reagent/consumable/nutriment/vitamin = 2) tastes = list("leaves" = 1) foodtype = VEGETABLES diff --git a/code/modules/food_and_drinks/food/snacks_soup.dm b/code/modules/food_and_drinks/food/snacks_soup.dm index a0e1ebcb39..796cff9b65 100644 --- a/code/modules/food_and_drinks/food/snacks_soup.dm +++ b/code/modules/food_and_drinks/food/snacks_soup.dm @@ -1,5 +1,5 @@ /obj/item/reagent_containers/food/snacks/soup - w_class = WEIGHT_CLASS_NORMAL + w_class = WEIGHT_CLASS_SMALL icon = 'icons/obj/food/soupsalad.dmi' trash = /obj/item/reagent_containers/glass/bowl bitesize = 5 diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm index e572cc76ff..c3890b28eb 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm @@ -3,36 +3,6 @@ ////////////////////////////////////////////////BREAD//////////////////////////////////////////////// -/datum/crafting_recipe/food/meatbread - name = "Meat bread" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet/plain = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 3 - ) - result = /obj/item/reagent_containers/food/snacks/store/bread/meat - subcategory = CAT_BREAD - -/datum/crafting_recipe/food/xenomeatbread - name = "Xenomeat bread" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 3 - ) - result = /obj/item/reagent_containers/food/snacks/store/bread/xenomeat - subcategory = CAT_BREAD - -/datum/crafting_recipe/food/spidermeatbread - name = "Spidermeat bread" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet/spider = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 3 - ) - result = /obj/item/reagent_containers/food/snacks/store/bread/spidermeat - subcategory = CAT_BREAD - /datum/crafting_recipe/food/banananutbread name = "Banana nut bread" reqs = list( @@ -44,16 +14,6 @@ result = /obj/item/reagent_containers/food/snacks/store/bread/banana subcategory = CAT_BREAD -/datum/crafting_recipe/food/tofubread - name = "Tofu bread" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /obj/item/reagent_containers/food/snacks/tofu = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 3 - ) - result = /obj/item/reagent_containers/food/snacks/store/bread/tofu - subcategory = CAT_BREAD - /datum/crafting_recipe/food/creamcheesebread name = "Cream cheese bread" reqs = list( @@ -64,6 +24,16 @@ result = /obj/item/reagent_containers/food/snacks/store/bread/creamcheese subcategory = CAT_BREAD +/datum/crafting_recipe/food/meatbread + name = "Meat bread" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet/plain = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 3 + ) + result = /obj/item/reagent_containers/food/snacks/store/bread/meat + subcategory = CAT_BREAD + /datum/crafting_recipe/food/mimanabread name = "Mimana bread" reqs = list( @@ -75,6 +45,38 @@ result = /obj/item/reagent_containers/food/snacks/store/bread/mimana subcategory = CAT_BREAD +/datum/crafting_recipe/food/spidermeatbread + name = "Spidermeat bread" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet/spider = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 3 + ) + result = /obj/item/reagent_containers/food/snacks/store/bread/spidermeat + subcategory = CAT_BREAD + +/datum/crafting_recipe/food/tofubread + name = "Tofu bread" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /obj/item/reagent_containers/food/snacks/tofu = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 3 + ) + result = /obj/item/reagent_containers/food/snacks/store/bread/tofu + subcategory = CAT_BREAD + +/datum/crafting_recipe/food/xenomeatbread + name = "Xenomeat bread" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 3 + ) + result = /obj/item/reagent_containers/food/snacks/store/bread/xenomeat + subcategory = CAT_BREAD + +////////////////////////////////////////////////TOAST//////////////////////////////////////////////// + /datum/crafting_recipe/food/butteredtoast name = "Buttered Toast" reqs = list( @@ -84,6 +86,45 @@ result = /obj/item/reagent_containers/food/snacks/butteredtoast subcategory = CAT_BREAD +/datum/crafting_recipe/food/slimetoast + name = "Slime toast" + reqs = list( + /datum/reagent/toxin/slimejelly = 5, + /obj/item/reagent_containers/food/snacks/breadslice/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/jelliedtoast/slime + subcategory = CAT_BREAD + +/datum/crafting_recipe/food/jelliedtoast + name = "Jellied toast" + reqs = list( + /datum/reagent/consumable/cherryjelly = 5, + /obj/item/reagent_containers/food/snacks/breadslice/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry + subcategory = CAT_BREAD + +/datum/crafting_recipe/food/peanutbuttertoast + name = "Peanut butter toast" + reqs = list( + /datum/reagent/consumable/peanut_butter = 5, + /obj/item/reagent_containers/food/snacks/breadslice/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/peanut_buttertoast + subcategory = CAT_BREAD + +////////////////////////////////////////////////MISC//////////////////////////////////////////////// + +/datum/crafting_recipe/food/baguette + name = "Baguette" + time = 40 + reqs = list(/datum/reagent/consumable/sodiumchloride = 1, + /datum/reagent/consumable/blackpepper = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 2 + ) + result = /obj/item/reagent_containers/food/snacks/baguette + subcategory = CAT_BREAD + /datum/crafting_recipe/food/butterbiscuit name = "Butter Biscuit" reqs = list( @@ -100,4 +141,13 @@ /obj/item/reagent_containers/food/snacks/butter = 3, ) result = /obj/item/reagent_containers/food/snacks/butterdog + subcategory = CAT_BREAD + +/datum/crafting_recipe/food/twobread + name = "Two bread" + reqs = list( + /datum/reagent/consumable/ethanol/wine = 5, + /obj/item/reagent_containers/food/snacks/breadslice/plain = 2 + ) + result = /obj/item/reagent_containers/food/snacks/twobread subcategory = CAT_BREAD \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm index ffa8709245..0fae6542e9 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm @@ -1,41 +1,9 @@ // see code/module/crafting/table.dm -////////////////////////////////////////////////BURGERS//////////////////////////////////////////////// +////////////////////////////////////////////////STANDARD BURGS//////////////////////////////////////////////// -/datum/crafting_recipe/food/humanburger - name = "Human burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/meat/steak/plain/human = 1 - ) - parts = list( - /obj/item/reagent_containers/food/snacks/meat/steak/plain/human = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/human - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/burger - name = "Burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - - result = /obj/item/reagent_containers/food/snacks/burger/plain - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/corgiburger - name = "Corgi burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/slab/corgi = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - - result = /obj/item/reagent_containers/food/snacks/burger/corgi - subcategory = CAT_BURGER - /datum/crafting_recipe/food/appendixburger name = "Appendix burger" reqs = list( @@ -54,15 +22,87 @@ result = /obj/item/reagent_containers/food/snacks/burger/brain subcategory = CAT_BURGER -/datum/crafting_recipe/food/xenoburger - name = "Xeno burger" +/datum/crafting_recipe/food/burger + name = "Burger" reqs = list( - /obj/item/reagent_containers/food/snacks/meat/steak/xeno = 1, + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + + result = /obj/item/reagent_containers/food/snacks/burger/plain + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/baconburger + name = "Bacon Burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/bacon = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + + result = /obj/item/reagent_containers/food/snacks/burger/baconburger + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/bigbiteburger + name = "Big bite burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 2, /obj/item/reagent_containers/food/snacks/bun = 1 ) - result = /obj/item/reagent_containers/food/snacks/burger/xeno + result = /obj/item/reagent_containers/food/snacks/burger/bigbite subcategory = CAT_BURGER +/datum/crafting_recipe/food/superbiteburger + name = "Super bite burger" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 5, + /datum/reagent/consumable/blackpepper = 5, + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 5, + /obj/item/reagent_containers/food/snacks/grown/tomato = 4, + /obj/item/reagent_containers/food/snacks/cheesewedge = 3, + /obj/item/reagent_containers/food/snacks/boiledegg = 1, + /obj/item/reagent_containers/food/snacks/meat/bacon = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + + ) + result = /obj/item/reagent_containers/food/snacks/burger/superbite + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/cheeseburger + name = "Cheese Burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/cheese + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/corgiburger + name = "Corgi burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/slab/corgi = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + + result = /obj/item/reagent_containers/food/snacks/burger/corgi + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/humanburger + name = "Human burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/bun = 1, + /obj/item/reagent_containers/food/snacks/meat/steak/plain/human = 1 + ) + parts = list( + /obj/item/reagent_containers/food/snacks/meat/steak/plain/human = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/human + subcategory = CAT_BURGER + +///////////////EXOTIC////////////////// + /datum/crafting_recipe/food/bearger name = "Bearger" reqs = list( @@ -72,6 +112,16 @@ result = /obj/item/reagent_containers/food/snacks/burger/bearger subcategory = CAT_BURGER +/datum/crafting_recipe/food/chickenburger + name = "Chicken Sandwich" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/steak/chicken = 1, + /datum/reagent/consumable/mayonnaise = 5, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/chicken + subcategory = CAT_BURGER + /datum/crafting_recipe/food/fishburger name = "Fish burger" reqs = list( @@ -82,6 +132,54 @@ result = /obj/item/reagent_containers/food/snacks/burger/fish subcategory = CAT_BURGER +/datum/crafting_recipe/food/fivealarmburger + name = "Five alarm burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/ghost_chili = 2, + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/fivealarm + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/slimeburger + name = "Jelly burger" + reqs = list( + /datum/reagent/toxin/slimejelly = 5, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/jelly/slime + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/jellyburger + name = "Jelly burger" + reqs = list( + /datum/reagent/consumable/cherryjelly = 5, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/jelly/cherry + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/ribburger + name = "McRib" + reqs = list( + /obj/item/reagent_containers/food/snacks/bbqribs = 1, //The sauce is already included in the ribs + /obj/item/reagent_containers/food/snacks/onion_slice = 1, //feel free to remove if too burdensome. + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/rib + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/mcguffin + name = "McGuffin" + reqs = list( + /obj/item/reagent_containers/food/snacks/friedegg = 1, + /obj/item/reagent_containers/food/snacks/meat/bacon = 2, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/mcguffin + subcategory = CAT_BURGER + /datum/crafting_recipe/food/tofuburger name = "Tofu burger" reqs = list( @@ -91,16 +189,45 @@ result = /obj/item/reagent_containers/food/snacks/burger/tofu subcategory = CAT_BURGER -/datum/crafting_recipe/food/ghostburger - name = "Ghost burger" +/datum/crafting_recipe/food/baseballburger + name = "Home run baseball burger" reqs = list( - /obj/item/ectoplasm = 1, - /datum/reagent/consumable/sodiumchloride = 2, + /obj/item/melee/baseball_bat = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/baseball + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/ratburger + name = "Rat burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/deadmouse = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/rat + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/soylentburger + name = "Soylent Burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/soylentgreen = 1, //two full meats worth. + /obj/item/reagent_containers/food/snacks/cheesewedge = 2, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/soylent + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/xenoburger + name = "Xeno burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/steak/xeno = 1, /obj/item/reagent_containers/food/snacks/bun = 1 ) - result = /obj/item/reagent_containers/food/snacks/burger/ghost + result = /obj/item/reagent_containers/food/snacks/burger/xeno subcategory = CAT_BURGER +////////////MYSTICAL//////////////// + /datum/crafting_recipe/food/clownburger name = "Clown burger" reqs = list( @@ -119,6 +246,35 @@ result = /obj/item/reagent_containers/food/snacks/burger/mime subcategory = CAT_BURGER +/datum/crafting_recipe/food/ghostburger + name = "Ghost burger" + reqs = list( + /obj/item/ectoplasm = 1, + /datum/reagent/consumable/sodiumchloride = 2, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/ghost + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/spellburger + name = "Spell burger" + reqs = list( + /obj/item/clothing/head/wizard/fake = 1, + ) + result = /obj/item/reagent_containers/food/snacks/burger/spell + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/spellburger2 + name = "Spell burger" + reqs = list( + /obj/item/clothing/head/wizard = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/spell + subcategory = CAT_BURGER + +////////////COLORED BURGERS////////////// + /datum/crafting_recipe/food/redburger name = "Red burger" reqs = list( @@ -197,154 +353,4 @@ /obj/item/reagent_containers/food/snacks/bun = 1 ) result = /obj/item/reagent_containers/food/snacks/burger/white - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/spellburger - name = "Spell burger" - reqs = list( - /obj/item/clothing/head/wizard/fake = 1, - ) - result = /obj/item/reagent_containers/food/snacks/burger/spell - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/spellburger2 - name = "Spell burger" - reqs = list( - /obj/item/clothing/head/wizard = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/spell - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/bigbiteburger - name = "Big bite burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 2, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/bigbite - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/superbiteburger - name = "Super bite burger" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 5, - /datum/reagent/consumable/blackpepper = 5, - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 5, - /obj/item/reagent_containers/food/snacks/grown/tomato = 4, - /obj/item/reagent_containers/food/snacks/cheesewedge = 3, - /obj/item/reagent_containers/food/snacks/boiledegg = 1, - /obj/item/reagent_containers/food/snacks/meat/bacon = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - - ) - result = /obj/item/reagent_containers/food/snacks/burger/superbite - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/slimeburger - name = "Jelly burger" - reqs = list( - /datum/reagent/toxin/slimejelly = 5, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/jelly/slime - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/jellyburger - name = "Jelly burger" - reqs = list( - /datum/reagent/consumable/cherryjelly = 5, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/jelly/cherry - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/fivealarmburger - name = "Five alarm burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/ghost_chili = 2, - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/fivealarm - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/ratburger - name = "Rat burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/deadmouse = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/rat - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/baseballburger - name = "Home run baseball burger" - reqs = list( - /obj/item/melee/baseball_bat = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/baseball - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/baconburger - name = "Bacon Burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/bacon = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - - result = /obj/item/reagent_containers/food/snacks/burger/baconburger - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/cheeseburger - name = "Cheese Burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/cheese - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/soylentburger - name = "Soylent Burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/soylentgreen = 1, //two full meats worth. - /obj/item/reagent_containers/food/snacks/cheesewedge = 2, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/soylent - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/ribburger - name = "McRib" - reqs = list( - /obj/item/reagent_containers/food/snacks/bbqribs = 1, //The sauce is already included in the ribs - /obj/item/reagent_containers/food/snacks/onion_slice = 1, //feel free to remove if too burdensome. - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/rib - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/mcguffin - name = "McGuffin" - reqs = list( - /obj/item/reagent_containers/food/snacks/friedegg = 1, - /obj/item/reagent_containers/food/snacks/meat/bacon = 2, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/mcguffin - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/chickenburger - name = "Chicken Sandwich" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/steak/chicken = 1, - /datum/reagent/consumable/mayonnaise = 5, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/chicken subcategory = CAT_BURGER \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm index f168896164..492d5c2db3 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm @@ -1,7 +1,84 @@ // see code/module/crafting/table.dm -////////////////////////////////////////////////CAKE//////////////////////////////////////////////// +////////////////////////////////////////////////FRUIT CAKE//////////////////////////////////////////////// + +/datum/crafting_recipe/food/applecake + name = "Apple cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/apple = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/apple + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/bscccake + name = "Blackberry and strawberry chocolate cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 2, + /obj/item/reagent_containers/food/snacks/grown/berries = 5 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/bscc + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/bscvcake + name = "Blackberry and strawberry vanilla cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/berries = 5 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/bsvc + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/lemoncake + name = "Lemon cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/citrus/lemon = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/lemon + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/limecake + name = "Lime cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/citrus/lime = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/lime + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/orangecake + name = "Orange cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/orange + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/peachcake + name = "Peach cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/peach = 5 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/peach_cake + subcategory = CAT_CAKE + +///////////////////////////////////FANCY//////////////////////////////////////////// + +/datum/crafting_recipe/food/birthdaycake + name = "Birthday cake" + reqs = list( + /datum/reagent/consumable/sugar = 5, + /datum/reagent/consumable/caramel =2, + /obj/item/candle = 1, + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/birthday + subcategory = CAT_CAKE /datum/crafting_recipe/food/carrotcake name = "Carrot cake" @@ -21,42 +98,6 @@ result = /obj/item/reagent_containers/food/snacks/store/cake/cheese subcategory = CAT_CAKE -/datum/crafting_recipe/food/applecake - name = "Apple cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/apple = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/apple - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/orangecake - name = "Orange cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/orange - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/limecake - name = "Lime cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/lime = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/lime - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/lemoncake - name = "Lemon cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/lemon = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/lemon - subcategory = CAT_CAKE - /datum/crafting_recipe/food/chocolatecake name = "Chocolate cake" reqs = list( @@ -66,35 +107,6 @@ result = /obj/item/reagent_containers/food/snacks/store/cake/chocolate subcategory = CAT_CAKE -/datum/crafting_recipe/food/birthdaycake - name = "Birthday cake" - reqs = list( - /datum/reagent/consumable/sugar = 5, - /datum/reagent/consumable/caramel =2, - /obj/item/candle = 1, - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/birthday - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/braincake - name = "Brain cake" - reqs = list( - /obj/item/organ/brain = 1, - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/brain - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/slimecake - name = "Slime cake" - reqs = list( - /obj/item/slime_extract = 1, - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/slimecake - subcategory = CAT_CAKE - /datum/crafting_recipe/food/pumpkinspicecake name = "Pumpkin spice cake" reqs = list( @@ -104,6 +116,26 @@ result = /obj/item/reagent_containers/food/snacks/store/cake/pumpkinspice subcategory = CAT_CAKE +/datum/crafting_recipe/food/poundcake + name = "Pound cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 4 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/pound_cake + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/vanillacake + name = "Vanilla cake" + always_availible = FALSE + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/vanillapod = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake + subcategory = CAT_CAKE + +/////////////SPECIAL//////////// + /datum/crafting_recipe/food/holycake name = "Angel food cake" reqs = list( @@ -113,12 +145,24 @@ result = /obj/item/reagent_containers/food/snacks/store/cake/holy_cake subcategory = CAT_CAKE -/datum/crafting_recipe/food/poundcake - name = "Pound cake" +/datum/crafting_recipe/food/braincake + name = "Brain cake" reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 4 + /obj/item/organ/brain = 1, + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1 ) - result = /obj/item/reagent_containers/food/snacks/store/cake/pound_cake + result = /obj/item/reagent_containers/food/snacks/store/cake/brain + subcategory = CAT_CAKE + +/datum/crafting_recipe/food/clowncake + name = "Clown cake" + always_availible = FALSE + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /obj/item/reagent_containers/food/snacks/sundae = 2, + /obj/item/reagent_containers/food/snacks/grown/banana = 5 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/clown_cake subcategory = CAT_CAKE /datum/crafting_recipe/food/hardwarecake @@ -131,53 +175,13 @@ result = /obj/item/reagent_containers/food/snacks/store/cake/hardware_cake subcategory = CAT_CAKE -/datum/crafting_recipe/food/bscccake - name = "blackberry and strawberry chocolate cake" +/datum/crafting_recipe/food/slimecake + name = "Slime cake" reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 2, - /obj/item/reagent_containers/food/snacks/grown/berries = 5 + /obj/item/slime_extract = 1, + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1 ) - result = /obj/item/reagent_containers/food/snacks/store/cake/bscc - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/bscvcake - name = "blackberry and strawberry vanilla cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/berries = 5 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/bsvc - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/clowncake - name = "clown cake" - always_availible = FALSE - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/sundae = 2, - /obj/item/reagent_containers/food/snacks/grown/banana = 5 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/clown_cake - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/vanillacake - name = "vanilla cake" - always_availible = FALSE - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/vanillapod = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake - subcategory = CAT_CAKE - -/datum/crafting_recipe/food/peachcake - name = "Peach cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/peach = 5 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/peach_cake + result = /obj/item/reagent_containers/food/snacks/store/cake/slimecake subcategory = CAT_CAKE /datum/crafting_recipe/food/trumpetcake diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm index e204b0c72c..1b1801d982 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm @@ -14,7 +14,7 @@ subcategory = CAT_ICE /datum/crafting_recipe/food/spacefreezy - name ="Space freezy" + name ="Space Freezy" reqs = list( /datum/reagent/consumable/bluecherryjelly = 5, /datum/reagent/consumable/spacemountainwind = 15, diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm index d8145410cd..03020b8ba9 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm @@ -36,6 +36,18 @@ result = /obj/item/reagent_containers/food/snacks/kebab/tail subcategory = CAT_MEAT +/datum/crafting_recipe/food/fiestaskewer + name = "Fiesta Skewer" + reqs = list( + /obj/item/stack/rods = 1, + /obj/item/reagent_containers/food/snacks/grown/chili = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, + /obj/item/reagent_containers/food/snacks/grown/corn = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/kebab/fiesta + subcategory = CAT_MEAT + // see code/module/crafting/table.dm ////////////////////////////////////////////////MR SPIDER//////////////////////////////////////////////// @@ -50,8 +62,69 @@ result = /obj/item/reagent_containers/food/snacks/spidereggsham subcategory = CAT_MEAT +//////////////////////////////////////////////FISH/////////////////////////////////////////// + +/datum/crafting_recipe/food/fishfingers + name = "Fish fingers" + reqs = list( + /datum/reagent/consumable/flour = 5, + /obj/item/reagent_containers/food/snacks/bun = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fishfingers + subcategory = CAT_MEAT + +/datum/crafting_recipe/food/cubancarp + name = "Cuban carp" + reqs = list( + /datum/reagent/consumable/flour = 5, + /obj/item/reagent_containers/food/snacks/grown/chili = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cubancarp + subcategory = CAT_MEAT + +/datum/crafting_recipe/food/fishandchips + name = "Fish and chips" + reqs = list( + /obj/item/reagent_containers/food/snacks/fries = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fishandchips + subcategory = CAT_MEAT + ////////////////////////////////////////////////MISC RECIPE's//////////////////////////////////////////////// +/datum/crafting_recipe/food/ribs + name = "BBQ Ribs" + reqs = list( + /datum/reagent/consumable/bbqsauce = 5, + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 2, + /obj/item/stack/rods = 2 + ) + result = /obj/item/reagent_containers/food/snacks/bbqribs + subcategory = CAT_MEAT + +/datum/crafting_recipe/food/nugget + name = "Chicken nugget" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/cutlet = 1 + ) + result = /obj/item/reagent_containers/food/snacks/nugget + subcategory = CAT_MEAT + +/datum/crafting_recipe/food/corndog + name = "Corndog meal" + reqs = list( + /obj/item/stack/rods = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, + /obj/item/reagent_containers/food/snacks/bun = 1, + /datum/reagent/consumable/mustard = 5, + /datum/reagent/consumable/ketchup = 5 + ) + result = /obj/item/reagent_containers/food/snacks/corndog + subcategory = CAT_MEAT + /datum/crafting_recipe/food/cornedbeef name = "Corned beef" reqs = list( @@ -72,16 +145,6 @@ result = /obj/item/reagent_containers/food/snacks/bearsteak subcategory = CAT_MEAT -/datum/crafting_recipe/food/enchiladas - name = "Enchiladas" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, - /obj/item/reagent_containers/food/snacks/grown/chili = 2, - /obj/item/reagent_containers/food/snacks/tortilla = 2 - ) - result = /obj/item/reagent_containers/food/snacks/enchiladas - subcategory = CAT_MEAT - /datum/crafting_recipe/food/stewedsoymeat name = "Stewed soymeat" reqs = list( @@ -101,23 +164,6 @@ result = /obj/item/reagent_containers/food/snacks/sausage subcategory = CAT_MEAT -/datum/crafting_recipe/food/nugget - name = "Chicken nugget" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/cutlet = 1 - ) - result = /obj/item/reagent_containers/food/snacks/nugget - subcategory = CAT_MEAT - -/datum/crafting_recipe/food/rawkhinkali - name = "Raw Khinkali" - reqs = list( - /obj/item/reagent_containers/food/snacks/doughslice = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 - ) - result = /obj/item/reagent_containers/food/snacks/rawkhinkali - subcategory = CAT_MEAT - /datum/crafting_recipe/food/pigblanket name = "Pig in a Blanket" reqs = list( @@ -128,18 +174,6 @@ result = /obj/item/reagent_containers/food/snacks/pigblanket subcategory = CAT_MEAT -/datum/crafting_recipe/food/corndog - name = "Corndog meal" - reqs = list( - /obj/item/stack/rods = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, - /obj/item/reagent_containers/food/snacks/bun = 1, - /datum/reagent/consumable/mustard = 5, - /datum/reagent/consumable/ketchup = 5 - ) - result = /obj/item/reagent_containers/food/snacks/corndog - subcategory = CAT_MEAT - /datum/crafting_recipe/food/ratkebab name = "Rat Kebab" reqs = list( @@ -166,25 +200,3 @@ ) result = /obj/item/reagent_containers/food/snacks/salad/ricepork subcategory = CAT_MEAT - -/datum/crafting_recipe/food/fiestaskewer - name = "Fiesta Skewer" - reqs = list( - /obj/item/stack/rods = 1, - /obj/item/reagent_containers/food/snacks/grown/chili = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, - /obj/item/reagent_containers/food/snacks/grown/corn = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/kebab/fiesta - subcategory = CAT_MEAT - -/datum/crafting_recipe/food/ribs - name = "BBQ Ribs" - reqs = list( - /datum/reagent/consumable/bbqsauce = 5, - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 2, - /obj/item/stack/rods = 2 - ) - result = /obj/item/reagent_containers/food/snacks/bbqribs - subcategory = CAT_MEAT \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm new file mode 100644 index 0000000000..e155a1bd23 --- /dev/null +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm @@ -0,0 +1,111 @@ +// see code/module/crafting/table.dm + +////////////////////////////////////////////////"MEXICAN"//////////////////////////////////////////////// + +/datum/crafting_recipe/food/burrito + name ="Burrito" + reqs = list( + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /obj/item/reagent_containers/food/snacks/grown/soybeans = 2 + ) + result = /obj/item/reagent_containers/food/snacks/burrito + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/cheesyburrito + name ="Cheesy burrito" + reqs = list( + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /obj/item/reagent_containers/food/snacks/cheesewedge = 2, + /obj/item/reagent_containers/food/snacks/grown/soybeans = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cheesyburrito + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/enchiladas + name = "Enchiladas" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, + /obj/item/reagent_containers/food/snacks/grown/chili = 2, + /obj/item/reagent_containers/food/snacks/tortilla = 2 + ) + result = /obj/item/reagent_containers/food/snacks/enchiladas + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/carneburrito + name ="Carne de asada burrito" + reqs = list( + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, + /obj/item/reagent_containers/food/snacks/grown/soybeans = 1 + ) + result = /obj/item/reagent_containers/food/snacks/carneburrito + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/fuegoburrito + name ="Fuego plasma burrito" + reqs = list( + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /obj/item/reagent_containers/food/snacks/grown/ghost_chili = 2, + /obj/item/reagent_containers/food/snacks/grown/soybeans = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fuegoburrito + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/taco + name ="Classic Taco" + reqs = list( + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, + /obj/item/reagent_containers/food/snacks/grown/cabbage = 1, + ) + result = /obj/item/reagent_containers/food/snacks/taco + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/tacoplain + name ="Plain Taco" + reqs = list( + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, + ) + result = /obj/item/reagent_containers/food/snacks/taco/plain + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/nachos + name ="Nachos" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /obj/item/reagent_containers/food/snacks/tortilla = 1 + ) + result = /obj/item/reagent_containers/food/snacks/nachos + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/cheesynachos + name ="Cheesy nachos" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/tortilla = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cheesynachos + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/cubannachos + name ="Cuban nachos" + reqs = list( + /datum/reagent/consumable/ketchup = 5, + /obj/item/reagent_containers/food/snacks/grown/chili = 2, + /obj/item/reagent_containers/food/snacks/tortilla = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cubannachos + subcategory = CAT_MEXICAN + +/datum/crafting_recipe/food/wrap + name = "Wrap" + reqs = list(/datum/reagent/consumable/soysauce = 10, + /obj/item/reagent_containers/food/snacks/friedegg = 1, + /obj/item/reagent_containers/food/snacks/grown/cabbage = 1, + ) + result = /obj/item/reagent_containers/food/snacks/eggwrap + subcategory = CAT_MEXICAN \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index 9cf5ea31a0..b2d79e10f9 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -3,60 +3,32 @@ // MISC -/datum/crafting_recipe/food/candiedapple - name = "Candied apple" - reqs = list(/datum/reagent/water = 5, - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/grown/apple = 1 - ) - result = /obj/item/reagent_containers/food/snacks/candiedapple - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/spiderlollipop - name = "Spider Lollipop" - reqs = list(/obj/item/stack/rods = 1, - /datum/reagent/consumable/sugar = 5, - /datum/reagent/water = 5, - /obj/item/reagent_containers/food/snacks/spiderling = 1 - ) - result = /obj/item/reagent_containers/food/snacks/spiderlollipop - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/chococoin - name = "Choco coin" - reqs = list( - /obj/item/coin = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/chococoin - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/fudgedice - name = "Fudge dice" - reqs = list( - /obj/item/dice = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/fudgedice - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/chocoorange - name = "Choco orange" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/chocoorange - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/loadedbakedpotato - name = "Loaded baked potato" +/datum/crafting_recipe/food/beans + name = "Beans" time = 40 - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/potato = 1, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1 + reqs = list(/datum/reagent/consumable/ketchup = 5, + /obj/item/reagent_containers/food/snacks/grown/soybeans = 2 ) - result = /obj/item/reagent_containers/food/snacks/loadedbakedpotato + result = /obj/item/reagent_containers/food/snacks/beans + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/branrequests + name = "Bran Requests Cereal" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/wheat = 1, + /obj/item/reagent_containers/food/snacks/no_raisin = 1, + ) + result = /obj/item/reagent_containers/food/snacks/branrequests + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/oatmeal + name = "Oatmeal" + reqs = list( + /datum/reagent/consumable/milk = 10, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/grown/oat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/salad/oatmeal subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/cheesyfries @@ -68,24 +40,6 @@ result = /obj/item/reagent_containers/food/snacks/cheesyfries subcategory = CAT_MISCFOOD -/datum/crafting_recipe/food/wrap - name = "Wrap" - reqs = list(/datum/reagent/consumable/soysauce = 10, - /obj/item/reagent_containers/food/snacks/friedegg = 1, - /obj/item/reagent_containers/food/snacks/grown/cabbage = 1, - ) - result = /obj/item/reagent_containers/food/snacks/eggwrap - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/beans - name = "Beans" - time = 40 - reqs = list(/datum/reagent/consumable/ketchup = 5, - /obj/item/reagent_containers/food/snacks/grown/soybeans = 2 - ) - result = /obj/item/reagent_containers/food/snacks/beans - subcategory = CAT_MISCFOOD - /datum/crafting_recipe/food/eggplantparm name ="Eggplant parmigiana" reqs = list( @@ -95,91 +49,14 @@ result = /obj/item/reagent_containers/food/snacks/eggplantparm subcategory = CAT_MISCFOOD -/datum/crafting_recipe/food/baguette - name = "Baguette" +/datum/crafting_recipe/food/loadedbakedpotato + name = "Loaded baked potato" time = 40 - reqs = list(/datum/reagent/consumable/sodiumchloride = 1, - /datum/reagent/consumable/blackpepper = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 2 - ) - result = /obj/item/reagent_containers/food/snacks/baguette - subcategory = CAT_MISCFOOD - -////////////////////////////////////////////////TOAST//////////////////////////////////////////////// - -/datum/crafting_recipe/food/slimetoast - name = "Slime toast" reqs = list( - /datum/reagent/toxin/slimejelly = 5, - /obj/item/reagent_containers/food/snacks/breadslice/plain = 1 + /obj/item/reagent_containers/food/snacks/grown/potato = 1, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1 ) - result = /obj/item/reagent_containers/food/snacks/jelliedtoast/slime - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/jelliedtoast - name = "Jellied toast" - reqs = list( - /datum/reagent/consumable/cherryjelly = 5, - /obj/item/reagent_containers/food/snacks/breadslice/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/peanutbuttertoast - name = "Peanut butter toast" - reqs = list( - /datum/reagent/consumable/peanut_butter = 5, - /obj/item/reagent_containers/food/snacks/breadslice/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/peanut_buttertoast - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/twobread - name = "Two bread" - reqs = list( - /datum/reagent/consumable/ethanol/wine = 5, - /obj/item/reagent_containers/food/snacks/breadslice/plain = 2 - ) - result = /obj/item/reagent_containers/food/snacks/twobread - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/burrito - name ="Burrito" - reqs = list( - /obj/item/reagent_containers/food/snacks/tortilla = 1, - /obj/item/reagent_containers/food/snacks/grown/soybeans = 2 - ) - result = /obj/item/reagent_containers/food/snacks/burrito - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/cheesyburrito - name ="Cheesy burrito" - reqs = list( - /obj/item/reagent_containers/food/snacks/tortilla = 1, - /obj/item/reagent_containers/food/snacks/cheesewedge = 2, - /obj/item/reagent_containers/food/snacks/grown/soybeans = 1 - ) - result = /obj/item/reagent_containers/food/snacks/cheesyburrito - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/carneburrito - name ="Carne de asada burrito" - reqs = list( - /obj/item/reagent_containers/food/snacks/tortilla = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, - /obj/item/reagent_containers/food/snacks/grown/soybeans = 1 - ) - result = /obj/item/reagent_containers/food/snacks/carneburrito - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/fuegoburrito - name ="Fuego plasma burrito" - reqs = list( - /obj/item/reagent_containers/food/snacks/tortilla = 1, - /obj/item/reagent_containers/food/snacks/grown/ghost_chili = 2, - /obj/item/reagent_containers/food/snacks/grown/soybeans = 1 - ) - result = /obj/item/reagent_containers/food/snacks/fuegoburrito + result = /obj/item/reagent_containers/food/snacks/loadedbakedpotato subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/melonfruitbowl @@ -195,35 +72,6 @@ result = /obj/item/reagent_containers/food/snacks/melonfruitbowl subcategory = CAT_MISCFOOD -/datum/crafting_recipe/food/nachos - name ="Nachos" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /obj/item/reagent_containers/food/snacks/tortilla = 1 - ) - result = /obj/item/reagent_containers/food/snacks/nachos - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/cheesynachos - name ="Cheesy nachos" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/tortilla = 1 - ) - result = /obj/item/reagent_containers/food/snacks/cheesynachos - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/cubannachos - name ="Cuban nachos" - reqs = list( - /datum/reagent/consumable/ketchup = 5, - /obj/item/reagent_containers/food/snacks/grown/chili = 2, - /obj/item/reagent_containers/food/snacks/tortilla = 1 - ) - result = /obj/item/reagent_containers/food/snacks/cubannachos - subcategory = CAT_MISCFOOD - /datum/crafting_recipe/food/melonkeg name ="Melon keg" reqs = list( @@ -235,16 +83,6 @@ result = /obj/item/reagent_containers/food/snacks/melonkeg subcategory = CAT_MISCFOOD -/datum/crafting_recipe/food/honeybar - name = "Honey nut bar" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/oat = 1, - /datum/reagent/consumable/honey = 5 - ) - result = /obj/item/reagent_containers/food/snacks/honeybar - subcategory = CAT_MISCFOOD - - /datum/crafting_recipe/food/stuffedlegion name = "Stuffed legion" time = 40 @@ -257,7 +95,6 @@ result = /obj/item/reagent_containers/food/snacks/stuffedlegion subcategory = CAT_MISCFOOD - /datum/crafting_recipe/lizardwine //not a subtype of /datum/crafting_recipe/food due to a bug where the resulting bottle would contain 100u of lizardwine and 100u of ethanol. name = "Lizard wine" time = 40 @@ -269,7 +106,6 @@ category = CAT_FOOD subcategory = CAT_MISCFOOD - /datum/crafting_recipe/food/powercrepe name = "Powercrepe" time = 40 @@ -283,36 +119,6 @@ result = /obj/item/reagent_containers/food/snacks/powercrepe subcategory = CAT_MISCFOOD -/datum/crafting_recipe/food/taco - name ="Classic Taco" - reqs = list( - /obj/item/reagent_containers/food/snacks/tortilla = 1, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, - /obj/item/reagent_containers/food/snacks/grown/cabbage = 1, - ) - result = /obj/item/reagent_containers/food/snacks/taco - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/tacoplain - name ="Plain Taco" - reqs = list( - /obj/item/reagent_containers/food/snacks/tortilla = 1, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 1, - ) - result = /obj/item/reagent_containers/food/snacks/taco/plain - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/branrequests - name = "Bran Requests Cereal" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/wheat = 1, - /obj/item/reagent_containers/food/snacks/no_raisin = 1, - ) - result = /obj/item/reagent_containers/food/snacks/branrequests - subcategory = CAT_MISCFOOD - /datum/crafting_recipe/food/ricepudding name = "Rice pudding" reqs = list( @@ -332,12 +138,3 @@ ) result = /obj/item/reagent_containers/food/snacks/riceball subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/chocolatestrawberry - name = "Chocolate Strawberry" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry - subcategory = CAT_MISCFOOD \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 62b8509eb1..b19a2a8a67 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -123,23 +123,6 @@ datum/crafting_recipe/food/donut/meat ////////////////////////////////////////////////////JELLY DONUTS/////////////////////////////////////////////////////// -/datum/crafting_recipe/food/donut/jelly/berry - name = "Berry Jelly Donut" - reqs = list( - /datum/reagent/consumable/berryjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/berry - -/datum/crafting_recipe/food/donut/jelly/trumpet - name = "Spaceman's Jelly Donut" - reqs = list( - /datum/reagent/medicine/polypyr = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - - result = /obj/item/reagent_containers/food/snacks/donut/jelly/trumpet - /datum/crafting_recipe/food/donut/jelly/apple name = "Apple Jelly Donut" reqs = list( @@ -148,21 +131,13 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/donut/jelly/apple -/datum/crafting_recipe/food/donut/jelly/caramel - name = "Caramel Jelly Donut" +/datum/crafting_recipe/food/donut/jelly/berry + name = "Berry Jelly Donut" reqs = list( - /datum/reagent/consumable/caramel = 3, + /datum/reagent/consumable/berryjuice = 3, /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/caramel - -/datum/crafting_recipe/food/donut/jelly/choco - name = "Chocolate Jelly Donut" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/choco + result = /obj/item/reagent_containers/food/snacks/donut/jelly/berry /datum/crafting_recipe/food/donut/jelly/blumpkin name = "Blumpkin Jelly Donut" @@ -180,6 +155,22 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/donut/jelly/bungo +/datum/crafting_recipe/food/donut/jelly/caramel + name = "Caramel Jelly Donut" + reqs = list( + /datum/reagent/consumable/caramel = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/caramel + +/datum/crafting_recipe/food/donut/jelly/choco + name = "Chocolate Jelly Donut" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/choco + /datum/crafting_recipe/food/donut/jelly/matcha name = "Matcha Jelly Donut" reqs = list( @@ -188,8 +179,24 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/donut/jelly/matcha +/datum/crafting_recipe/food/donut/jelly/trumpet + name = "Spaceman's Jelly Donut" + reqs = list( + /datum/reagent/medicine/polypyr = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/trumpet + ////////////////////////////////////////////////////SLIME DONUTS/////////////////////////////////////////////////////// +/datum/crafting_recipe/food/donut/slimejelly/apple + name = "Apple Slime Donut" + reqs = list( + /datum/reagent/consumable/applejuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/apple + /datum/crafting_recipe/food/donut/slimejelly/berry name = "Berry Slime Donut" reqs = list( @@ -198,22 +205,21 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/berry -/datum/crafting_recipe/food/donut/slimejelly/trumpet - name = "Spaceman's Slime Donut" +/datum/crafting_recipe/food/donut/slimejelly/blumpkin + name = "Blumpkin Slime Donut" reqs = list( - /datum/reagent/medicine/polypyr = 3, + /datum/reagent/consumable/blumpkinjuice = 3, /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/blumpkin - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/trumpet - -/datum/crafting_recipe/food/donut/slimejelly/apple - name = "Apple Slime Donut" +/datum/crafting_recipe/food/donut/slimejelly/bungo + name = "Bungo Slime Donut" reqs = list( - /datum/reagent/consumable/applejuice = 3, + /datum/reagent/consumable/bungojuice = 3, /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/apple + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/bungo /datum/crafting_recipe/food/donut/slimejelly/caramel name = "Caramel Slime Donut" @@ -231,21 +237,14 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/choco -/datum/crafting_recipe/food/donut/slimejelly/blumpkin - name = "Blumpkin Slime Donut" +/datum/crafting_recipe/food/donut/slimejelly/trumpet + name = "Spaceman's Slime Donut" reqs = list( - /datum/reagent/consumable/blumpkinjuice = 3, + /datum/reagent/medicine/polypyr = 3, /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/blumpkin -/datum/crafting_recipe/food/donut/slimejelly/bungo - name = "Bungo Slime Donut" - reqs = list( - /datum/reagent/consumable/bungojuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/bungo + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/trumpet /datum/crafting_recipe/food/donut/slimejelly/matcha name = "Matcha Slime Donut" @@ -388,123 +387,8 @@ datum/crafting_recipe/food/donut/meat result = /obj/item/reagent_containers/food/snacks/muffin/poppy subcategory = CAT_PASTRY -/datum/crafting_recipe/food/chawanmushi - name = "Chawanmushi" - reqs = list( - /datum/reagent/water = 5, - /datum/reagent/consumable/soysauce = 5, - /obj/item/reagent_containers/food/snacks/boiledegg = 2, - /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chawanmushi - subcategory = CAT_PASTRY - ////////////////////////////////////////////OTHER//////////////////////////////////////////// -/datum/crafting_recipe/food/meatbun - name = "Meat bun" - reqs = list( - /datum/reagent/consumable/soysauce = 5, - /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1, - /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 - ) - result = /obj/item/reagent_containers/food/snacks/meatbun - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/khachapuri - name = "Khachapuri" - reqs = list( - /datum/reagent/consumable/eggyolk = 5, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/khachapuri - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/sugarcookie - time = 15 - name = "Sugar cookie" - reqs = list( - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/sugarcookie - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/fortunecookie - time = 15 - name = "Fortune cookie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/paper = 1 - ) - parts = list( - /obj/item/paper = 1 - ) - result = /obj/item/reagent_containers/food/snacks/fortunecookie - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/poppypretzel - time = 15 - name = "Poppy pretzel" - reqs = list( - /obj/item/seeds/poppy = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/poppypretzel - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/plumphelmetbiscuit - time = 15 - name = "Plumphelmet biscuit" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet = 1 - ) - result = /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/cracker - time = 15 - name = "Cracker" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - ) - result = /obj/item/reagent_containers/food/snacks/cracker - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/chococornet - name = "Choco cornet" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chococornet - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/oatmealcookie - name = "Oatmeal cookie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/oat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/oatmealcookie - subcategory = CAT_PASTRY - - -/datum/crafting_recipe/food/raisincookie - name = "Raisin cookie" - reqs = list( - /obj/item/reagent_containers/food/snacks/no_raisin = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/oat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/raisincookie - subcategory = CAT_PASTRY - /datum/crafting_recipe/food/cherrycupcake name = "Cherry cupcake" reqs = list( @@ -532,6 +416,55 @@ datum/crafting_recipe/food/donut/meat result = /obj/item/reagent_containers/food/snacks/strawberrycupcake subcategory = CAT_PASTRY +/datum/crafting_recipe/food/raisincookie + name = "Raisin cookie" + reqs = list( + /obj/item/reagent_containers/food/snacks/no_raisin = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/oat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/raisincookie + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/oatmealcookie + name = "Oatmeal cookie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/oat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/oatmealcookie + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/sugarcookie + time = 15 + name = "Sugar cookie" + reqs = list( + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/sugarcookie + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/chococornet + name = "Choco cornet" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chococornet + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/cracker + time = 15 + name = "Cracker" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + ) + result = /obj/item/reagent_containers/food/snacks/cracker + subcategory = CAT_PASTRY + /datum/crafting_recipe/food/honeybun name = "Honey bun" reqs = list( @@ -539,4 +472,24 @@ datum/crafting_recipe/food/donut/meat /datum/reagent/consumable/honey = 5 ) result = /obj/item/reagent_containers/food/snacks/honeybun - subcategory = CAT_PASTRY \ No newline at end of file + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/poppypretzel + time = 15 + name = "Poppy pretzel" + reqs = list( + /obj/item/seeds/poppy = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/poppypretzel + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/plumphelmetbiscuit + time = 15 + name = "Plumphelmet biscuit" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet = 1 + ) + result = /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit + subcategory = CAT_PASTRY diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm index b5bed4d5fc..eabad73138 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm @@ -1,7 +1,16 @@ // see code/module/crafting/table.dm -////////////////////////////////////////////////PIES//////////////////////////////////////////////// +//////////////////////////////////FRUITS///////////////////////////////////////// + +/datum/crafting_recipe/food/applepie + name = "Apple pie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/apple = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pie/applepie + subcategory = CAT_PIE /datum/crafting_recipe/food/bananacreampie name = "Banana cream pie" @@ -13,33 +22,13 @@ result = /obj/item/reagent_containers/food/snacks/pie/cream subcategory = CAT_PIE -/datum/crafting_recipe/food/meatpie - name = "Meat pie" - reqs = list( - /datum/reagent/consumable/blackpepper = 1, - /datum/reagent/consumable/sodiumchloride = 1, - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pie/meatpie - subcategory = CAT_PIE - -/datum/crafting_recipe/food/tofupie - name = "Tofu pie" +/datum/crafting_recipe/food/berryclafoutis + name = "Berry clafoutis" reqs = list( /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/tofu = 1 + /obj/item/reagent_containers/food/snacks/grown/berries = 1 ) - result = /obj/item/reagent_containers/food/snacks/pie/tofupie - subcategory = CAT_PIE - -/datum/crafting_recipe/food/xenopie - name = "Xeno pie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pie/xemeatpie + result = /obj/item/reagent_containers/food/snacks/pie/berryclafoutis subcategory = CAT_PIE /datum/crafting_recipe/food/cherrypie @@ -51,13 +40,53 @@ result = /obj/item/reagent_containers/food/snacks/pie/cherrypie subcategory = CAT_PIE -/datum/crafting_recipe/food/berryclafoutis - name = "Berry clafoutis" +/datum/crafting_recipe/food/frostypie + name = "Frosty pie" reqs = list( /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/berries = 1 + /obj/item/reagent_containers/food/snacks/grown/bluecherries = 1 ) - result = /obj/item/reagent_containers/food/snacks/pie/berryclafoutis + result = /obj/item/reagent_containers/food/snacks/pie/frostypie + subcategory = CAT_PIE + +/datum/crafting_recipe/food/grapetart + name = "Grape tart" + reqs = list( + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/grapes = 3 + ) + result = /obj/item/reagent_containers/food/snacks/pie/grapetart + subcategory = CAT_PIE + +/datum/crafting_recipe/food/peachpie + name = "Peach Pie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/peach = 3 + ) + result = /obj/item/reagent_containers/food/snacks/pie/peachpie + subcategory = CAT_PIE + +/datum/crafting_recipe/food/strawberrypie + name = "Strawberry pie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pie/strawberrypie + subcategory = CAT_PIE + +//////////OTHER PIES///////// + +/datum/crafting_recipe/food/amanitapie + name = "Amanita pie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/mushroom/amanita = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pie/amanita_pie subcategory = CAT_PIE /datum/crafting_recipe/food/bearypie @@ -70,64 +99,14 @@ result = /obj/item/reagent_containers/food/snacks/pie/bearypie subcategory = CAT_PIE -/datum/crafting_recipe/food/amanitapie - name = "Amanita pie" +/datum/crafting_recipe/food/baklava + name = "Baklava pie" reqs = list( - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/mushroom/amanita = 1 + /obj/item/reagent_containers/food/snacks/butter = 1, + /obj/item/reagent_containers/food/snacks/tortilla = 4, //Layers + /obj/item/seeds/wheat/oat = 3 ) - result = /obj/item/reagent_containers/food/snacks/pie/amanita_pie - subcategory = CAT_PIE - -/datum/crafting_recipe/food/plumppie - name = "Plump pie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pie/plump_pie - subcategory = CAT_PIE - -/datum/crafting_recipe/food/applepie - name = "Apple pie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/apple = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pie/applepie - subcategory = CAT_PIE - -/datum/crafting_recipe/food/pumpkinpie - name = "Pumpkin pie" - reqs = list( - /datum/reagent/consumable/milk = 5, - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/pumpkin = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pie/pumpkinpie - subcategory = CAT_PIE - -/datum/crafting_recipe/food/goldenappletart - name = "Golden apple tart" - reqs = list( - /datum/reagent/consumable/milk = 5, - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/apple/gold = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pie/appletart - subcategory = CAT_PIE - -/datum/crafting_recipe/food/grapetart - name = "Grape tart" - reqs = list( - /datum/reagent/consumable/milk = 5, - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/grapes = 3 - ) - result = /obj/item/reagent_containers/food/snacks/pie/grapetart + result = /obj/item/reagent_containers/food/snacks/pie/baklava subcategory = CAT_PIE /datum/crafting_recipe/food/blumpkinpie @@ -151,32 +130,66 @@ result = /obj/item/reagent_containers/food/snacks/pie/dulcedebatata subcategory = CAT_PIE -/datum/crafting_recipe/food/frostypie - name = "Frosty pie" +/datum/crafting_recipe/food/meatpie + name = "Meat pie" reqs = list( + /datum/reagent/consumable/blackpepper = 1, + /datum/reagent/consumable/sodiumchloride = 1, /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/bluecherries = 1 + /obj/item/reagent_containers/food/snacks/meat/steak/plain = 1 ) - result = /obj/item/reagent_containers/food/snacks/pie/frostypie + result = /obj/item/reagent_containers/food/snacks/pie/meatpie subcategory = CAT_PIE -/datum/crafting_recipe/food/strawberrypie - name = "Strawberry pie" +/datum/crafting_recipe/food/plumppie + name = "Plump pie" reqs = list( /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 + /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet = 1 ) - result = /obj/item/reagent_containers/food/snacks/pie/strawberrypie + result = /obj/item/reagent_containers/food/snacks/pie/plump_pie subcategory = CAT_PIE -/datum/crafting_recipe/food/baklava - name = "Baklava pie" +/datum/crafting_recipe/food/pumpkinpie + name = "Pumpkin pie" reqs = list( - /obj/item/reagent_containers/food/snacks/butter = 1, - /obj/item/reagent_containers/food/snacks/tortilla = 4, //Layers - /obj/item/seeds/wheat/oat = 3 + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/pumpkin = 1 ) - result = /obj/item/reagent_containers/food/snacks/pie/baklava + result = /obj/item/reagent_containers/food/snacks/pie/pumpkinpie + subcategory = CAT_PIE + +/datum/crafting_recipe/food/tofupie + name = "Tofu pie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/tofu = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pie/tofupie + subcategory = CAT_PIE + +/datum/crafting_recipe/food/xenopie + name = "Xeno pie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pie/xemeatpie + subcategory = CAT_PIE + +//////////////TARTS////////////// + +/datum/crafting_recipe/food/goldenappletart + name = "Golden apple tart" + reqs = list( + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/pie/plain = 1, + /obj/item/reagent_containers/food/snacks/grown/apple/gold = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pie/appletart subcategory = CAT_PIE /datum/crafting_recipe/food/mimetart @@ -215,12 +228,3 @@ ) result = /obj/item/reagent_containers/food/snacks/pie/cocolavatart subcategory = CAT_PIE - -/datum/crafting_recipe/food/peachpie - name = "Peach Pie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pie/plain = 1, - /obj/item/reagent_containers/food/snacks/grown/peach = 3 - ) - result = /obj/item/reagent_containers/food/snacks/pie/peachpie - subcategory = CAT_PIE \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm index 64447dd180..21112a4a4f 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm @@ -3,6 +3,40 @@ ////////////////////////////////////////////////PIZZA!!!//////////////////////////////////////////////// +/datum/crafting_recipe/food/dankpizza + name = "Dank pizza" + reqs = list( + /obj/item/reagent_containers/food/snacks/pizzabread = 1, + /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pizza/dank + subcategory = CAT_PIZZA + +/datum/crafting_recipe/food/donkpocketpizza + name = "Donkpocket pizza" + reqs = list( + /obj/item/reagent_containers/food/snacks/pizzabread = 1, + /obj/item/reagent_containers/food/snacks/donkpocket/warm = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pizza/donkpocket + subcategory = CAT_PIZZA + +/datum/crafting_recipe/food/pineapplepizza + name = "Hawaiian pizza" + reqs = list( + /obj/item/reagent_containers/food/snacks/pizzabread = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, + /obj/item/reagent_containers/food/snacks/pineappleslice = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pizza/pineapple + subcategory = CAT_PIZZA + /datum/crafting_recipe/food/margheritapizza name = "Margherita pizza" reqs = list( @@ -24,18 +58,6 @@ result = /obj/item/reagent_containers/food/snacks/pizza/meat subcategory = CAT_PIZZA -/datum/crafting_recipe/food/arnold - name = "Arnold pizza" - reqs = list( - /obj/item/reagent_containers/food/snacks/pizzabread = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 3, - /obj/item/ammo_casing/c9mm = 8, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pizza/arnold - subcategory = CAT_PIZZA - /datum/crafting_recipe/food/mushroompizza name = "Mushroom pizza" reqs = list( @@ -45,6 +67,17 @@ result = /obj/item/reagent_containers/food/snacks/pizza/mushroom subcategory = CAT_PIZZA +/datum/crafting_recipe/food/sassysagepizza + name = "Sassysage pizza" + reqs = list( + /obj/item/reagent_containers/food/snacks/pizzabread = 1, + /obj/item/reagent_containers/food/snacks/faggot = 3, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pizza/sassysage + subcategory = CAT_PIZZA + /datum/crafting_recipe/food/vegetablepizza name = "Vegetable pizza" reqs = list( @@ -57,50 +90,7 @@ result = /obj/item/reagent_containers/food/snacks/pizza/vegetable subcategory = CAT_PIZZA -/datum/crafting_recipe/food/donkpocketpizza - name = "Donkpocket pizza" - reqs = list( - /obj/item/reagent_containers/food/snacks/pizzabread = 1, - /obj/item/reagent_containers/food/snacks/donkpocket/warm = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pizza/donkpocket - subcategory = CAT_PIZZA - -/datum/crafting_recipe/food/dankpizza - name = "Dank pizza" - reqs = list( - /obj/item/reagent_containers/food/snacks/pizzabread = 1, - /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pizza/dank - subcategory = CAT_PIZZA - -/datum/crafting_recipe/food/sassysagepizza - name = "Sassysage pizza" - reqs = list( - /obj/item/reagent_containers/food/snacks/pizzabread = 1, - /obj/item/reagent_containers/food/snacks/faggot = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pizza/sassysage - subcategory = CAT_PIZZA - -/datum/crafting_recipe/food/pineapplepizza - name = "Hawaiian pizza" - reqs = list( - /obj/item/reagent_containers/food/snacks/pizzabread = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, - /obj/item/reagent_containers/food/snacks/pineappleslice = 3, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/pizza/pineapple - subcategory = CAT_PIZZA +//////Special Pizzas///// /datum/crafting_recipe/food/pineapplepizza/anomaly name = "Anomaly Hawaiian pizza" @@ -120,3 +110,15 @@ tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WIRECUTTER) result = /obj/item/pizzabox/infinite subcategory = CAT_PIZZA + +/datum/crafting_recipe/food/arnold + name = "Arnold pizza" + reqs = list( + /obj/item/reagent_containers/food/snacks/pizzabread = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 3, + /obj/item/ammo_casing/c9mm = 8, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/pizza/arnold + subcategory = CAT_PIZZA diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm index 39eeb7d936..0a44c4590e 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm @@ -3,16 +3,6 @@ ////////////////////////////////////////////////SALADS//////////////////////////////////////////////// -/datum/crafting_recipe/food/herbsalad - name = "Herb salad" - reqs = list( - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, - /obj/item/reagent_containers/food/snacks/grown/apple = 1 - ) - result = /obj/item/reagent_containers/food/snacks/salad/herbsalad - subcategory = CAT_SALAD - /datum/crafting_recipe/food/aesirsalad name = "Aesir salad" reqs = list( @@ -23,38 +13,16 @@ result = /obj/item/reagent_containers/food/snacks/salad/aesirsalad subcategory = CAT_SALAD -/datum/crafting_recipe/food/validsalad - name = "Valid salad" +/datum/crafting_recipe/food/citrusdelight + name = "Citrus delight" reqs = list( /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, - /obj/item/reagent_containers/food/snacks/grown/potato = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 - ) - result = /obj/item/reagent_containers/food/snacks/salad/validsalad - subcategory = CAT_SALAD + /obj/item/reagent_containers/food/snacks/grown/citrus/lime = 1, + /obj/item/reagent_containers/food/snacks/grown/citrus/lemon = 1, + /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1 -/datum/crafting_recipe/food/monkeysdelight - name = "Monkeys delight" - reqs = list( - /datum/reagent/consumable/flour = 5, - /datum/reagent/consumable/sodiumchloride = 1, - /datum/reagent/consumable/blackpepper = 1, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/monkeycube = 1, - /obj/item/reagent_containers/food/snacks/grown/banana = 1 ) - result = /obj/item/reagent_containers/food/snacks/soup/monkeysdelight - subcategory = CAT_SALAD - -/datum/crafting_recipe/food/oatmeal - name = "Oatmeal" - reqs = list( - /datum/reagent/consumable/milk = 10, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/oat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/salad/oatmeal + result = /obj/item/reagent_containers/food/snacks/salad/citrusdelight subcategory = CAT_SALAD /datum/crafting_recipe/food/fruitsalad @@ -70,6 +38,16 @@ result = /obj/item/reagent_containers/food/snacks/salad/fruit subcategory = CAT_SALAD +/datum/crafting_recipe/food/herbsalad + name = "Herb salad" + reqs = list( + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, + /obj/item/reagent_containers/food/snacks/grown/apple = 1 + ) + result = /obj/item/reagent_containers/food/snacks/salad/herbsalad + subcategory = CAT_SALAD + /datum/crafting_recipe/food/junglesalad name = "Jungle salad" reqs = list( @@ -83,14 +61,26 @@ result = /obj/item/reagent_containers/food/snacks/salad/jungle subcategory = CAT_SALAD -/datum/crafting_recipe/food/citrusdelight - name = "Citrus delight" +/datum/crafting_recipe/food/monkeysdelight + name = "Monkeys delight" + reqs = list( + /datum/reagent/consumable/flour = 5, + /datum/reagent/consumable/sodiumchloride = 1, + /datum/reagent/consumable/blackpepper = 1, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/monkeycube = 1, + /obj/item/reagent_containers/food/snacks/grown/banana = 1 + ) + result = /obj/item/reagent_containers/food/snacks/soup/monkeysdelight + subcategory = CAT_SALAD + +/datum/crafting_recipe/food/validsalad + name = "Valid salad" reqs = list( /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/lime = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/lemon = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1 - + /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, + /obj/item/reagent_containers/food/snacks/grown/potato = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1 ) - result = /obj/item/reagent_containers/food/snacks/salad/citrusdelight + result = /obj/item/reagent_containers/food/snacks/salad/validsalad subcategory = CAT_SALAD diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm index 127b2cc238..d2ea1da50a 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm @@ -84,7 +84,6 @@ result = /obj/item/reagent_containers/food/snacks/peanutbutter_sandwich subcategory = CAT_SANDWICH - /datum/crafting_recipe/food/notasandwich name = "Not a sandwich" reqs = list( @@ -113,4 +112,4 @@ /obj/item/reagent_containers/food/snacks/sausage = 1 ) result = /obj/item/reagent_containers/food/snacks/hotdog - subcategory = CAT_SANDWICH + subcategory = CAT_SANDWICH //I don't agree with this. diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm index 76a5a64096..0c966faf33 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm @@ -3,71 +3,46 @@ ////////////////////////////////////////////////SOUP//////////////////////////////////////////////// -/datum/crafting_recipe/food/meatballsoup - name = "Meatball soup" +/datum/crafting_recipe/food/amanitajelly + name = "Amanita jelly" + reqs = list( + /datum/reagent/consumable/ethanol/vodka = 5, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/grown/mushroom/amanita = 3 + ) + result = /obj/item/reagent_containers/food/snacks/soup/amanitajelly + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/beetsoup + name = "Beet soup" reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1, - /obj/item/reagent_containers/food/snacks/grown/carrot = 1, - /obj/item/reagent_containers/food/snacks/grown/potato = 1 + /obj/item/reagent_containers/food/snacks/grown/whitebeet = 1, + /obj/item/reagent_containers/food/snacks/grown/cabbage = 1, ) - result = /obj/item/reagent_containers/food/snacks/soup/meatball + result = /obj/item/reagent_containers/food/snacks/soup/beet subcategory = CAT_SOUP -/datum/crafting_recipe/food/vegetablesoup - name = "Vegetable soup" +/datum/crafting_recipe/food/bloodsoup + name = "Blood soup" + reqs = list( + /datum/reagent/blood = 10, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato/blood = 2 + ) + result = /obj/item/reagent_containers/food/snacks/soup/blood + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/clownstears + name = "Clowns tears" reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/carrot = 1, - /obj/item/reagent_containers/food/snacks/grown/corn = 1, - /obj/item/reagent_containers/food/snacks/grown/eggplant = 1, - /obj/item/reagent_containers/food/snacks/grown/potato = 1 + /obj/item/reagent_containers/food/snacks/grown/banana = 1, + /obj/item/stack/ore/bananium = 1 ) - result = /obj/item/reagent_containers/food/snacks/soup/vegetable - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/nettlesoup - name = "Nettle soup" - reqs = list( - /datum/reagent/water = 10, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/nettle = 1, - /obj/item/reagent_containers/food/snacks/grown/potato = 1, - /obj/item/reagent_containers/food/snacks/boiledegg = 1 - ) - result = /obj/item/reagent_containers/food/snacks/soup/nettle - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/wingfangchu - name = "Wingfangchu" - reqs = list( - /obj/item/reagent_containers/glass/bowl = 1, - /datum/reagent/consumable/soysauce = 5, - /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno = 2 - ) - result = /obj/item/reagent_containers/food/snacks/soup/wingfangchu - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/wishsoup - name = "Wish soup" - reqs = list( - /datum/reagent/water = 20, - /obj/item/reagent_containers/glass/bowl = 1 - ) - result= /obj/item/reagent_containers/food/snacks/soup/wish - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/hotchili - name = "Hot chili" - reqs = list( - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, - /obj/item/reagent_containers/food/snacks/grown/chili = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 1 - ) - result = /obj/item/reagent_containers/food/snacks/soup/hotchili + result = /obj/item/reagent_containers/food/snacks/soup/clownstears subcategory = CAT_SOUP /datum/crafting_recipe/food/coldchili @@ -81,16 +56,6 @@ result = /obj/item/reagent_containers/food/snacks/soup/coldchili subcategory = CAT_SOUP -/datum/crafting_recipe/food/tomatosoup - name = "Tomato soup" - reqs = list( - /datum/reagent/water = 10, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 2 - ) - result = /obj/item/reagent_containers/food/snacks/soup/tomato - subcategory = CAT_SOUP - /datum/crafting_recipe/food/eyeballsoup name = "Eyeball soup" reqs = list( @@ -102,6 +67,28 @@ result = /obj/item/reagent_containers/food/snacks/soup/tomato/eyeball subcategory = CAT_SOUP +/datum/crafting_recipe/food/hotchili + name = "Hot chili" + reqs = list( + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/meat/cutlet = 2, + /obj/item/reagent_containers/food/snacks/grown/chili = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/soup/hotchili + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/meatballsoup + name = "Meatball soup" + reqs = list( + /datum/reagent/water = 10, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1, + /obj/item/reagent_containers/food/snacks/grown/carrot = 1, + /obj/item/reagent_containers/food/snacks/grown/potato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/soup/meatball + subcategory = CAT_SOUP /datum/crafting_recipe/food/milosoup name = "Milo soup" @@ -114,35 +101,15 @@ result = /obj/item/reagent_containers/food/snacks/soup/milo subcategory = CAT_SOUP -/datum/crafting_recipe/food/bloodsoup - name = "Blood soup" +/datum/crafting_recipe/food/mushroomsoup + name = "Mushroom soup" reqs = list( - /datum/reagent/blood = 10, + /datum/reagent/consumable/milk = 5, + /datum/reagent/water = 5, /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato/blood = 2 + /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 ) - result = /obj/item/reagent_containers/food/snacks/soup/blood - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/slimesoup - name = "Slime soup" - reqs = list( - /datum/reagent/water = 10, - /datum/reagent/toxin/slimejelly = 5, - /obj/item/reagent_containers/glass/bowl = 1 - ) - result = /obj/item/reagent_containers/food/snacks/soup/slime - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/clownstears - name = "Clowns tears" - reqs = list( - /datum/reagent/water = 10, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/banana = 1, - /obj/item/stack/ore/bananium = 1 - ) - result = /obj/item/reagent_containers/food/snacks/soup/clownstears + result = /obj/item/reagent_containers/food/snacks/soup/mushroom subcategory = CAT_SOUP /datum/crafting_recipe/food/mysterysoup @@ -158,26 +125,37 @@ result = /obj/item/reagent_containers/food/snacks/soup/mystery subcategory = CAT_SOUP -/datum/crafting_recipe/food/mushroomsoup - name = "Mushroom soup" - reqs = list( - /datum/reagent/consumable/milk = 5, - /datum/reagent/water = 5, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 - ) - result = /obj/item/reagent_containers/food/snacks/soup/mushroom - subcategory = CAT_SOUP - -/datum/crafting_recipe/food/beetsoup - name = "Beet soup" +/datum/crafting_recipe/food/nettlesoup + name = "Nettle soup" reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/whitebeet = 1, - /obj/item/reagent_containers/food/snacks/grown/cabbage = 1, + /obj/item/reagent_containers/food/snacks/grown/nettle = 1, + /obj/item/reagent_containers/food/snacks/grown/potato = 1, + /obj/item/reagent_containers/food/snacks/boiledegg = 1 ) - result = /obj/item/reagent_containers/food/snacks/soup/beet + result = /obj/item/reagent_containers/food/snacks/soup/nettle + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/redbeetsoup + name = "Red beet soup" + reqs = list( + /datum/reagent/water = 10, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/grown/redbeet = 1, + /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 + ) + result = /obj/item/reagent_containers/food/snacks/soup/beet/red + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/slimesoup + name = "Slime soup" + reqs = list( + /datum/reagent/water = 10, + /datum/reagent/toxin/slimejelly = 5, + /obj/item/reagent_containers/glass/bowl = 1 + ) + result = /obj/item/reagent_containers/food/snacks/soup/slime subcategory = CAT_SOUP /datum/crafting_recipe/food/stew @@ -205,16 +183,6 @@ result = /obj/item/reagent_containers/food/snacks/soup/spacylibertyduff subcategory = CAT_SOUP -/datum/crafting_recipe/food/amanitajelly - name = "Amanita jelly" - reqs = list( - /datum/reagent/consumable/ethanol/vodka = 5, - /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/mushroom/amanita = 3 - ) - result = /obj/item/reagent_containers/food/snacks/soup/amanitajelly - subcategory = CAT_SOUP - /datum/crafting_recipe/food/sweetpotatosoup name = "Sweet potato soup" reqs = list( @@ -226,13 +194,44 @@ result = /obj/item/reagent_containers/food/snacks/soup/sweetpotato subcategory = CAT_SOUP -/datum/crafting_recipe/food/redbeetsoup - name = "Red beet soup" +/datum/crafting_recipe/food/tomatosoup + name = "Tomato soup" reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/grown/redbeet = 1, - /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 + /obj/item/reagent_containers/food/snacks/grown/tomato = 2 ) - result = /obj/item/reagent_containers/food/snacks/soup/beet/red + result = /obj/item/reagent_containers/food/snacks/soup/tomato subcategory = CAT_SOUP + +/datum/crafting_recipe/food/vegetablesoup + name = "Vegetable soup" + reqs = list( + /datum/reagent/water = 10, + /obj/item/reagent_containers/glass/bowl = 1, + /obj/item/reagent_containers/food/snacks/grown/carrot = 1, + /obj/item/reagent_containers/food/snacks/grown/corn = 1, + /obj/item/reagent_containers/food/snacks/grown/eggplant = 1, + /obj/item/reagent_containers/food/snacks/grown/potato = 1 + ) + result = /obj/item/reagent_containers/food/snacks/soup/vegetable + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/wingfangchu + name = "Wingfangchu" + reqs = list( + /obj/item/reagent_containers/glass/bowl = 1, + /datum/reagent/consumable/soysauce = 5, + /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno = 2 + ) + result = /obj/item/reagent_containers/food/snacks/soup/wingfangchu + subcategory = CAT_SOUP + +/datum/crafting_recipe/food/wishsoup + name = "Wish soup" + reqs = list( + /datum/reagent/water = 20, + /obj/item/reagent_containers/glass/bowl = 1 + ) + result= /obj/item/reagent_containers/food/snacks/soup/wish + subcategory = CAT_SOUP \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm index 355402111c..12020a6241 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm @@ -3,15 +3,6 @@ ////////////////////////////////////////////////SPAGHETTI//////////////////////////////////////////////// -/datum/crafting_recipe/food/tomatopasta - name = "Tomato pasta" - reqs = list( - /obj/item/reagent_containers/food/snacks/boiledspaghetti = 1, - /obj/item/reagent_containers/food/snacks/grown/tomato = 2 - ) - result = /obj/item/reagent_containers/food/snacks/pastatomato - subcategory = CAT_SPAGHETTI - /datum/crafting_recipe/food/copypasta name = "Copypasta" reqs = list( @@ -38,6 +29,17 @@ result = /obj/item/reagent_containers/food/snacks/spesslaw subcategory = CAT_SPAGHETTI +/datum/crafting_recipe/food/tomatopasta + name = "Tomato pasta" + reqs = list( + /obj/item/reagent_containers/food/snacks/boiledspaghetti = 1, + /obj/item/reagent_containers/food/snacks/grown/tomato = 2 + ) + result = /obj/item/reagent_containers/food/snacks/pastatomato + subcategory = CAT_SPAGHETTI + +////////////NOODLES/////////// + /datum/crafting_recipe/food/beefnoodle name = "Beef noodle" reqs = list( diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm index 9dbf1d684b..5a95ba9907 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm @@ -1,4 +1,5 @@ -//////////////////////////Sushi Components/////////////////////// +/////////////Recategorizing this as -Eastern- foods/////////////// +///////////////////////Sushi Components/////////////////////////// /datum/crafting_recipe/food/sushi_rice name = "Sushi Rice" @@ -93,33 +94,58 @@ result = /obj/item/reagent_containers/food/snacks/sushie_pro subcategory = CAT_FISH -///////////////Gaijin junk///////////////////////////////////// +//////////////////Not-Fish////////////////////// -/datum/crafting_recipe/food/fishfingers - name = "Fish fingers" +/datum/crafting_recipe/food/chawanmushi + name = "Chawanmushi" reqs = list( - /datum/reagent/consumable/flour = 5, + /datum/reagent/water = 5, + /datum/reagent/consumable/soysauce = 5, + /obj/item/reagent_containers/food/snacks/boiledegg = 2, + /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chawanmushi + subcategory = CAT_FISH + +/datum/crafting_recipe/food/khachapuri + name = "Khachapuri" + reqs = list( + /datum/reagent/consumable/eggyolk = 5, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/khachapuri + subcategory = CAT_FISH + +/datum/crafting_recipe/food/rawkhinkali + name = "Raw Khinkali" + reqs = list( + /obj/item/reagent_containers/food/snacks/doughslice = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1 + ) + result = /obj/item/reagent_containers/food/snacks/rawkhinkali + subcategory = CAT_FISH + +/datum/crafting_recipe/food/meatbun + name = "Meat bun" + reqs = list( + /datum/reagent/consumable/soysauce = 5, /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 + /obj/item/reagent_containers/food/snacks/faggot = 1, + /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 ) - result = /obj/item/reagent_containers/food/snacks/fishfingers + result = /obj/item/reagent_containers/food/snacks/meatbun subcategory = CAT_FISH -/datum/crafting_recipe/food/cubancarp - name = "Cuban carp" +/datum/crafting_recipe/food/fortunecookie + time = 15 + name = "Fortune cookie" reqs = list( - /datum/reagent/consumable/flour = 5, - /obj/item/reagent_containers/food/snacks/grown/chili = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/paper = 1 ) - result = /obj/item/reagent_containers/food/snacks/cubancarp + parts = list( + /obj/item/paper = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fortunecookie subcategory = CAT_FISH - -/datum/crafting_recipe/food/fishandchips - name = "Fish and chips" - reqs = list( - /obj/item/reagent_containers/food/snacks/fries = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/fishandchips - subcategory = CAT_FISH \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm new file mode 100644 index 0000000000..a06bfb880b --- /dev/null +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm @@ -0,0 +1,117 @@ +// see code/module/crafting/table.dm + +// SWEETS + +/datum/crafting_recipe/food/candiedapple + name = "Candied apple" + reqs = list(/datum/reagent/water = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/grown/apple = 1 + ) + result = /obj/item/reagent_containers/food/snacks/candiedapple + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chococoin + name = "Choco coin" + reqs = list( + /obj/item/coin = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/chococoin + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chocoorange + name = "Choco orange" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/chocoorange + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chocolatestrawberry + name = "Chocolate Strawberry" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/fudgedice + name = "Fudge dice" + reqs = list( + /obj/item/dice = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/fudgedice + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/honeybar + name = "Honey nut bar" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/oat = 1, + /datum/reagent/consumable/honey = 5 + ) + result = /obj/item/reagent_containers/food/snacks/honeybar + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/spiderlollipop + name = "Spider Lollipop" + reqs = list(/obj/item/stack/rods = 1, + /datum/reagent/consumable/sugar = 5, + /datum/reagent/water = 5, + /obj/item/reagent_containers/food/snacks/spiderling = 1 + ) + result = /obj/item/reagent_containers/food/snacks/spiderlollipop + subcategory = CAT_SWEETS + +//Easter Stuff + +/datum/crafting_recipe/food/chocolatebunny + name = "Chocolate bunny" + reqs = list( + /datum/reagent/consumable/sugar = 2, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chocolatebunny + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/hotcrossbun + name = "Hot-Cross Bun" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /datum/reagent/consumable/sugar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/hotcrossbun + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/briochecake + name = "Brioche cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /datum/reagent/consumable/sugar = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/brioche + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/scotchegg + name = "Scotch egg" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /datum/reagent/consumable/blackpepper = 1, + /obj/item/reagent_containers/food/snacks/boiledegg = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1 + ) + result = /obj/item/reagent_containers/food/snacks/scotchegg + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/mammi + name = "Mammi" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /datum/reagent/consumable/milk = 5 + ) + result = /obj/item/reagent_containers/food/snacks/soup/mammi + subcategory = CAT_SWEETS diff --git a/code/modules/holiday/easter.dm b/code/modules/holiday/easter.dm index 1898fe4b01..5f2d92fc93 100644 --- a/code/modules/holiday/easter.dm +++ b/code/modules/holiday/easter.dm @@ -140,96 +140,8 @@ containsPrize = FALSE qdel(src) -//Easter Recipes + food -/obj/item/reagent_containers/food/snacks/hotcrossbun - bitesize = 2 - name = "hot-cross bun" - desc = "The Cross represents the Assistants that died for your sins." - icon_state = "hotcrossbun" - -/datum/crafting_recipe/food/hotcrossbun - name = "Hot-Cross Bun" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /datum/reagent/consumable/sugar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/hotcrossbun - category = CAT_MISCFOOD - - -/obj/item/reagent_containers/food/snacks/store/cake/brioche - name = "brioche cake" - desc = "A ring of sweet, glazed buns." - icon_state = "briochecake" - slice_path = /obj/item/reagent_containers/food/snacks/cakeslice/brioche - slices_num = 6 - bonus_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/vitamin = 2) - -/obj/item/reagent_containers/food/snacks/cakeslice/brioche - name = "brioche cake slice" - desc = "Delicious sweet-bread. Who needs anything else?" - icon_state = "briochecake_slice" - filling_color = "#FFD700" - -/datum/crafting_recipe/food/briochecake - name = "Brioche cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /datum/reagent/consumable/sugar = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/brioche - category = CAT_MISCFOOD - -/obj/item/reagent_containers/food/snacks/scotchegg - name = "scotch egg" - desc = "A boiled egg wrapped in a delicious, seasoned meatball." - icon_state = "scotchegg" - bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 2) - bitesize = 3 - filling_color = "#FFFFF0" - list_reagents = list(/datum/reagent/consumable/nutriment = 6) - -/datum/crafting_recipe/food/scotchegg - name = "Scotch egg" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /datum/reagent/consumable/blackpepper = 1, - /obj/item/reagent_containers/food/snacks/boiledegg = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 - ) - result = /obj/item/reagent_containers/food/snacks/scotchegg - category = CAT_MISCFOOD - -/obj/item/reagent_containers/food/snacks/soup/mammi - name = "Mammi" - desc = "A bowl of mushy bread and milk. It reminds you, not too fondly, of a bowel movement." - icon_state = "mammi" - bonus_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 1) - list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 1) - -/datum/crafting_recipe/food/mammi - name = "Mammi" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /datum/reagent/consumable/milk = 5 - ) - result = /obj/item/reagent_containers/food/snacks/soup/mammi - category = CAT_MISCFOOD - -/obj/item/reagent_containers/food/snacks/chocolatebunny - name = "chocolate bunny" - desc = "Contains less than 10% real rabbit!" - icon_state = "chocolatebunny" - bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1) - list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/sugar = 2, /datum/reagent/consumable/coco = 2) - filling_color = "#A0522D" - -/datum/crafting_recipe/food/chocolatebunny - name = "Chocolate bunny" - reqs = list( - /datum/reagent/consumable/sugar = 2, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chocolatebunny - category = CAT_MISCFOOD +/* +Easter Recipes + Food moved to appropriate files. +\code\modules\food_and_drinks\ +\code\modules\food_and_drinks\recipes\ +*/ \ No newline at end of file diff --git a/tgstation.dme b/tgstation.dme index 28f469ac25..de3bd872f3 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1837,6 +1837,7 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_egg.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_frozen.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_meat.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_mexican.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_misc.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pastry.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pie.dm" @@ -1846,6 +1847,7 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_soup.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_spaghetti.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_sushi.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipies_sweets.dm" #include "code\modules\games\cas.dm" #include "code\modules\goonchat\browserOutput.dm" #include "code\modules\holiday\easter.dm" From dc6d1fb359244394672faba9e0dcdd58678ce2a4 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Mon, 17 Feb 2020 05:56:02 -0500 Subject: [PATCH 019/175] Sorted Frozen Foods --- .../recipes/tablecraft/recipes_frozen.dm | 288 +++++++++--------- 1 file changed, 145 insertions(+), 143 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm index 1b1801d982..6d443c99f0 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm @@ -3,6 +3,64 @@ //Misc. Frozen.// ///////////////// +/datum/crafting_recipe/food/banana_split + name = "Banana Split" + always_availible = FALSE + reqs = list( + /obj/item/reagent_containers/food/snacks/icecream = 3, + /obj/item/reagent_containers/food/snacks/grown/banana = 1, + /obj/item/reagent_containers/food/snacks/grown/cherries = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/banana_split + subcategory = CAT_ICE + + /datum/crafting_recipe/food/bluecharrie_float + name = "Blue Cherry Shake" + always_availible = FALSE + reqs = list( + /obj/item/reagent_containers/food/snacks/icecream = 1, + /obj/item/reagent_containers/food/snacks/grown/bluecherries = 3, + /obj/item/reagent_containers/food/drinks/drinkingglass = 1 + ) + result = /obj/item/reagent_containers/food/snacks/bluecharrie_float + subcategory = CAT_ICE + +/datum/crafting_recipe/food/charrie_float + name = "Cherry Shake" + always_availible = FALSE + reqs = list( + /obj/item/reagent_containers/food/snacks/icecream = 1, + /obj/item/reagent_containers/food/snacks/grown/cherries = 3, + /obj/item/reagent_containers/food/drinks/drinkingglass = 1 + ) + result = /obj/item/reagent_containers/food/snacks/charrie_float + subcategory = CAT_ICE + +/datum/crafting_recipe/food/root_float + name = "Cola Float" + always_availible = FALSE + reqs = list( + /obj/item/reagent_containers/food/snacks/icecream = 1, + /obj/item/reagent_containers/food/snacks/grown/cherries = 1, + /datum/reagent/consumable/space_cola = 10, + /obj/item/reagent_containers/food/drinks/drinkingglass = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cola_float + subcategory = CAT_ICE + +/datum/crafting_recipe/food/honkdae + name ="Honkdae" + reqs = list( + /datum/reagent/consumable/cream = 5, + /obj/item/clothing/mask/gas/clown_hat = 1, + /obj/item/reagent_containers/food/snacks/grown/cherries = 1, + /obj/item/reagent_containers/food/snacks/grown/banana = 2, + /obj/item/reagent_containers/food/snacks/icecream = 1 + ) + result = /obj/item/reagent_containers/food/snacks/honkdae + subcategory = CAT_ICE + /datum/crafting_recipe/food/icecreamsandwich name = "Icecream sandwich" reqs = list( @@ -34,105 +92,8 @@ result = /obj/item/reagent_containers/food/snacks/sundae subcategory = CAT_ICE -/datum/crafting_recipe/food/honkdae - name ="Honkdae" - reqs = list( - /datum/reagent/consumable/cream = 5, - /obj/item/clothing/mask/gas/clown_hat = 1, - /obj/item/reagent_containers/food/snacks/grown/cherries = 1, - /obj/item/reagent_containers/food/snacks/grown/banana = 2, - /obj/item/reagent_containers/food/snacks/icecream = 1 - ) - result = /obj/item/reagent_containers/food/snacks/honkdae - subcategory = CAT_ICE - -/datum/crafting_recipe/food/banana_split - name = "Banana Split" - always_availible = FALSE - reqs = list( - /obj/item/reagent_containers/food/snacks/icecream = 3, - /obj/item/reagent_containers/food/snacks/grown/banana = 1, - /obj/item/reagent_containers/food/snacks/grown/cherries = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/banana_split - subcategory = CAT_ICE - -/datum/crafting_recipe/food/root_float - name = "Cola Float" - always_availible = FALSE - reqs = list( - /obj/item/reagent_containers/food/snacks/icecream = 1, - /obj/item/reagent_containers/food/snacks/grown/cherries = 1, - /datum/reagent/consumable/space_cola = 10, - /obj/item/reagent_containers/food/drinks/drinkingglass = 1 - ) - result = /obj/item/reagent_containers/food/snacks/cola_float - subcategory = CAT_ICE - -/datum/crafting_recipe/food/charrie_float - name = "Cherry Shake" - always_availible = FALSE - reqs = list( - /obj/item/reagent_containers/food/snacks/icecream = 1, - /obj/item/reagent_containers/food/snacks/grown/cherries = 3, - /obj/item/reagent_containers/food/drinks/drinkingglass = 1 - ) - result = /obj/item/reagent_containers/food/snacks/charrie_float - subcategory = CAT_ICE - -/datum/crafting_recipe/food/bluecharrie_float - name = "Blue Cherry Shake" - always_availible = FALSE - reqs = list( - /obj/item/reagent_containers/food/snacks/icecream = 1, - /obj/item/reagent_containers/food/snacks/grown/bluecherries = 3, - /obj/item/reagent_containers/food/drinks/drinkingglass = 1 - ) - result = /obj/item/reagent_containers/food/snacks/bluecharrie_float - subcategory = CAT_ICE - //////////////////////////SNOW CONES/////////////////////// -/datum/crafting_recipe/food/flavorless_sc - name = "Flavorless snowcone" - reqs = list( - /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15 - ) - result = /obj/item/reagent_containers/food/snacks/snowcones - subcategory = CAT_ICE - -/datum/crafting_recipe/food/pineapple_sc - name = "Pineapple snowcone" - reqs = list( - /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15, - /obj/item/reagent_containers/food/snacks/pineappleslice = 2 - ) - result = /obj/item/reagent_containers/food/snacks/snowcones/pineapple - subcategory = CAT_ICE - -/datum/crafting_recipe/food/lime_sc - name = "Lime snowcone" - reqs = list( - /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/limejuice = 5 - ) - result = /obj/item/reagent_containers/food/snacks/snowcones/lime - subcategory = CAT_ICE - -/datum/crafting_recipe/food/lemon_sc - name = "Lemon snowcone" - reqs = list( - /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/lemonjuice = 5 - ) - result = /obj/item/reagent_containers/food/snacks/snowcones/lemon - subcategory = CAT_ICE - /datum/crafting_recipe/food/apple_sc name = "Apple snowcone" reqs = list( @@ -143,24 +104,14 @@ result = /obj/item/reagent_containers/food/snacks/snowcones/apple subcategory = CAT_ICE -/datum/crafting_recipe/food/grape_sc - name = "Grape snowcone" +/datum/crafting_recipe/food/berry_sc + name = "Berry snowcone" reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/grapejuice = 5 + /datum/reagent/consumable/berryjuice = 5 ) - result = /obj/item/reagent_containers/food/snacks/snowcones/grape - subcategory = CAT_ICE - -/datum/crafting_recipe/food/orange_sc - name = "Orange snowcone" - reqs = list( - /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/orangejuice = 5 - ) - result = /obj/item/reagent_containers/food/snacks/snowcones/orange + result = /obj/item/reagent_containers/food/snacks/snowcones/berry subcategory = CAT_ICE /datum/crafting_recipe/food/blue_sc @@ -183,14 +134,13 @@ result = /obj/item/reagent_containers/food/snacks/snowcones/red subcategory = CAT_ICE -/datum/crafting_recipe/food/berry_sc - name = "Berry snowcone" +/datum/crafting_recipe/food/flavorless_sc + name = "Flavorless snowcone" reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/berryjuice = 5 + /datum/reagent/consumable/ice = 15 ) - result = /obj/item/reagent_containers/food/snacks/snowcones/berry + result = /obj/item/reagent_containers/food/snacks/snowcones subcategory = CAT_ICE /datum/crafting_recipe/food/fruitsalad_sc @@ -206,24 +156,84 @@ result = /obj/item/reagent_containers/food/snacks/snowcones/fruitsalad subcategory = CAT_ICE -/datum/crafting_recipe/food/mime_sc - name = "Mime snowcone" +/datum/crafting_recipe/food/grape_sc + name = "Grape snowcone" reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/nothing = 5 + /datum/reagent/consumable/grapejuice = 5 ) - result = /obj/item/reagent_containers/food/snacks/snowcones/mime + result = /obj/item/reagent_containers/food/snacks/snowcones/grape subcategory = CAT_ICE -/datum/crafting_recipe/food/clown_sc - name = "Clown snowcone" +/datum/crafting_recipe/food/honey_sc + name = "Honey snowcone" reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/laughter = 5 + /datum/reagent/consumable/honey = 5 ) - result = /obj/item/reagent_containers/food/snacks/snowcones/clown + result = /obj/item/reagent_containers/food/snacks/snowcones/honey + subcategory = CAT_ICE + +/datum/crafting_recipe/food/lemon_sc + name = "Lemon snowcone" + reqs = list( + /obj/item/reagent_containers/food/drinks/sillycup = 1, + /datum/reagent/consumable/ice = 15, + /datum/reagent/consumable/lemonjuice = 5 + ) + result = /obj/item/reagent_containers/food/snacks/snowcones/lemon + subcategory = CAT_ICE + +/datum/crafting_recipe/food/lime_sc + name = "Lime snowcone" + reqs = list( + /obj/item/reagent_containers/food/drinks/sillycup = 1, + /datum/reagent/consumable/ice = 15, + /datum/reagent/consumable/limejuice = 5 + ) + result = /obj/item/reagent_containers/food/snacks/snowcones/lime + subcategory = CAT_ICE + +/datum/crafting_recipe/food/orange_sc + name = "Orange snowcone" + reqs = list( + /obj/item/reagent_containers/food/drinks/sillycup = 1, + /datum/reagent/consumable/ice = 15, + /datum/reagent/consumable/orangejuice = 5 + ) + result = /obj/item/reagent_containers/food/snacks/snowcones/orange + subcategory = CAT_ICE + +/datum/crafting_recipe/food/pineapple_sc + name = "Pineapple snowcone" + reqs = list( + /obj/item/reagent_containers/food/drinks/sillycup = 1, + /datum/reagent/consumable/ice = 15, + /obj/item/reagent_containers/food/snacks/pineappleslice = 2 + ) + result = /obj/item/reagent_containers/food/snacks/snowcones/pineapple + subcategory = CAT_ICE + +/datum/crafting_recipe/food/pwrgame_sc + name = "Pwrgame snowcone" + reqs = list( + /obj/item/reagent_containers/food/drinks/sillycup = 1, + /datum/reagent/consumable/ice = 15, + /datum/reagent/consumable/pwr_game = 15 + ) + result = /obj/item/reagent_containers/food/snacks/snowcones/pwrgame + subcategory = CAT_ICE + +/datum/crafting_recipe/food/rainbow_sc + name = "Rainbow snowcone" + reqs = list( + /obj/item/reagent_containers/food/drinks/sillycup = 1, + /datum/reagent/consumable/ice = 15, + /datum/reagent/colorful_reagent = 1 //Harder to make + ) + result = /obj/item/reagent_containers/food/snacks/snowcones/rainbow subcategory = CAT_ICE /datum/crafting_recipe/food/soda_sc @@ -246,32 +256,24 @@ result = /obj/item/reagent_containers/food/snacks/snowcones/spacemountainwind subcategory = CAT_ICE -/datum/crafting_recipe/food/pwrgame_sc - name = "Pwrgame snowcone" +/////I don't like seperating the clown and mime./// + +/datum/crafting_recipe/food/mime_sc + name = "Mime snowcone" reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/pwr_game = 15 + /datum/reagent/consumable/nothing = 5 ) - result = /obj/item/reagent_containers/food/snacks/snowcones/pwrgame + result = /obj/item/reagent_containers/food/snacks/snowcones/mime subcategory = CAT_ICE -/datum/crafting_recipe/food/honey_sc - name = "Honey snowcone" +/datum/crafting_recipe/food/clown_sc + name = "Clown snowcone" reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, - /datum/reagent/consumable/honey = 5 + /datum/reagent/consumable/laughter = 5 ) - result = /obj/item/reagent_containers/food/snacks/snowcones/honey - subcategory = CAT_ICE - -/datum/crafting_recipe/food/rainbow_sc - name = "Rainbow snowcone" - reqs = list( - /obj/item/reagent_containers/food/drinks/sillycup = 1, - /datum/reagent/consumable/ice = 15, - /datum/reagent/colorful_reagent = 1 //Harder to make - ) - result = /obj/item/reagent_containers/food/snacks/snowcones/rainbow - subcategory = CAT_ICE + result = /obj/item/reagent_containers/food/snacks/snowcones/clown + subcategory = CAT_ICE \ No newline at end of file From 79705d17162b4dbc7969b5725427be61b854a461 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Mon, 17 Feb 2020 08:24:21 -0500 Subject: [PATCH 020/175] Moving Burgers Around --- .../recipes/tablecraft/recipes_burger.dm | 95 +++++++++---------- 1 file changed, 47 insertions(+), 48 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm index 0fae6542e9..cf96c01e7b 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm @@ -3,25 +3,6 @@ ////////////////////////////////////////////////STANDARD BURGS//////////////////////////////////////////////// - -/datum/crafting_recipe/food/appendixburger - name = "Appendix burger" - reqs = list( - /obj/item/organ/appendix = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/appendix - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/brainburger - name = "Brain burger" - reqs = list( - /obj/item/organ/brain = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/brain - subcategory = CAT_BURGER - /datum/crafting_recipe/food/burger name = "Burger" reqs = list( @@ -101,8 +82,55 @@ result = /obj/item/reagent_containers/food/snacks/burger/human subcategory = CAT_BURGER +/datum/crafting_recipe/food/ribburger + name = "McRib" + reqs = list( + /obj/item/reagent_containers/food/snacks/bbqribs = 1, //The sauce is already included in the ribs + /obj/item/reagent_containers/food/snacks/onion_slice = 1, //feel free to remove if too burdensome. + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/rib + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/mcguffin + name = "McGuffin" + reqs = list( + /obj/item/reagent_containers/food/snacks/friedegg = 1, + /obj/item/reagent_containers/food/snacks/meat/bacon = 2, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/mcguffin + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/tofuburger + name = "Tofu burger" + reqs = list( + /obj/item/reagent_containers/food/snacks/tofu = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/tofu + subcategory = CAT_BURGER + ///////////////EXOTIC////////////////// +/datum/crafting_recipe/food/appendixburger + name = "Appendix burger" + reqs = list( + /obj/item/organ/appendix = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/appendix + subcategory = CAT_BURGER + +/datum/crafting_recipe/food/brainburger + name = "Brain burger" + reqs = list( + /obj/item/organ/brain = 1, + /obj/item/reagent_containers/food/snacks/bun = 1 + ) + result = /obj/item/reagent_containers/food/snacks/burger/brain + subcategory = CAT_BURGER + /datum/crafting_recipe/food/bearger name = "Bearger" reqs = list( @@ -160,35 +188,6 @@ result = /obj/item/reagent_containers/food/snacks/burger/jelly/cherry subcategory = CAT_BURGER -/datum/crafting_recipe/food/ribburger - name = "McRib" - reqs = list( - /obj/item/reagent_containers/food/snacks/bbqribs = 1, //The sauce is already included in the ribs - /obj/item/reagent_containers/food/snacks/onion_slice = 1, //feel free to remove if too burdensome. - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/rib - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/mcguffin - name = "McGuffin" - reqs = list( - /obj/item/reagent_containers/food/snacks/friedegg = 1, - /obj/item/reagent_containers/food/snacks/meat/bacon = 2, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/mcguffin - subcategory = CAT_BURGER - -/datum/crafting_recipe/food/tofuburger - name = "Tofu burger" - reqs = list( - /obj/item/reagent_containers/food/snacks/tofu = 1, - /obj/item/reagent_containers/food/snacks/bun = 1 - ) - result = /obj/item/reagent_containers/food/snacks/burger/tofu - subcategory = CAT_BURGER - /datum/crafting_recipe/food/baseballburger name = "Home run baseball burger" reqs = list( From 6e32a466afcbf22591a5d6b393cd23c037973d48 Mon Sep 17 00:00:00 2001 From: raspyosu Date: Mon, 17 Feb 2020 17:24:09 -0500 Subject: [PATCH 021/175] tweak mesmerize range increased added a "windup" hardstun length increased to counteract windup windup allows target to attempt to avoid via breaking line of sight at the time the windup completes initial stun reduced to major slowdown, user also recieves slowdown to prevent sprint memes from just letting them follow around a corner if there is one --- code/datums/status_effects/debuffs.dm | 4 +- .../bloodsucker/powers/bs_mesmerize.dm | 54 ++++++++++--------- 2 files changed, 33 insertions(+), 25 deletions(-) diff --git a/code/datums/status_effects/debuffs.dm b/code/datums/status_effects/debuffs.dm index c694f27d64..999fd33a00 100644 --- a/code/datums/status_effects/debuffs.dm +++ b/code/datums/status_effects/debuffs.dm @@ -101,14 +101,16 @@ /datum/status_effect/no_combat_mode/mesmerize/on_creation(mob/living/new_owner, set_duration) . = ..() ADD_TRAIT(owner, TRAIT_MUTE, "mesmerize") + owner.add_movespeed_modifier("[STATUS_EFFECT_MESMERIZE]_[id]", TRUE, priority = 64, override = TRUE, multiplicative_slowdown = 5, blacklisted_movetypes = FALSE? NONE : CRAWLING) /datum/status_effect/no_combat_mode/mesmerize/on_remove() . = ..() REMOVE_TRAIT(owner, TRAIT_MUTE, "mesmerize") + owner.remove_movespeed_modifier("[STATUS_EFFECT_MESMERIZE]_[id]") /obj/screen/alert/status_effect/mesmerized name = "Mesmerized" - desc = "You cant tear your sight from who is in front of you...Their gaze is simply too enthralling.." + desc = "You cant tear your sight from who is in front of you... their gaze is simply too enthralling.." icon = 'icons/mob/actions/bloodsucker.dmi' icon_state = "power_mez" diff --git a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm index dc9d1d46a0..2ee8c3e33f 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm @@ -11,8 +11,8 @@ button_icon_state = "power_mez" bloodcost = 30 cooldown = 300 - target_range = 1 - power_activates_immediately = FALSE + target_range = 3 + power_activates_immediately = TRUE message_Trigger = "Whom will you subvert to your will?" must_be_capacitated = TRUE bloodsucker_can_buy = TRUE @@ -41,6 +41,7 @@ if (A == owner) return FALSE var/mob/living/carbon/target = A // We already know it's carbon due to CheckValidTarget() + // Bloodsucker if (target.mind && target.mind.has_antag_datum(ANTAG_DATUM_BLOODSUCKER)) if (display_error) @@ -62,7 +63,7 @@ to_chat(owner, "Your victim's eyes are glazed over. They cannot perceive you.") return FALSE // Check: Target See Me? (behind wall) - if (!(owner in view(target_range, get_turf(target)))) + if (!(target in view(target_range, get_turf(owner)))) // Sub-Check: GET CLOSER //if (!(owner in range(target_range, get_turf(target))) // if (display_error) @@ -70,6 +71,10 @@ if (display_error) to_chat(owner, "You're too far outside your victim's view.") return FALSE + + if (target.has_status_effect(STATUS_EFFECT_MESMERIZE)) // ? + return TRUE + // Check: Facing target? if (!is_A_facing_B(owner,target)) // in unsorted.dm if (display_error) @@ -83,28 +88,29 @@ return TRUE /datum/action/bloodsucker/targeted/mesmerize/FireTargetedPower(atom/A) - // set waitfor = FALSE <---- DONT DO THIS!We WANT this power to hold up ClickWithPower(), so that we can unlock the power when it's done. - var/mob/living/carbon/target = A - var/mob/living/user = owner + // set waitfor = FALSE <---- DONT DO THIS!We WANT this power to hold up ClickWithPower(), so that we can unlock the power when it's done. + var/mob/living/carbon/target = A + var/mob/living/user = owner - if(istype(target)) - target.Stun(40) //Utterly useless without this, its okay since there are so many checks to go through - target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 45) //So you cant rotate with combat mode, plus fancy status alert - - if(do_mob(user, target, 40, 0, TRUE, extra_checks = CALLBACK(src, .proc/ContinueActive, user, target))) - PowerActivatedSuccessfully() // PAY COST! BEGIN COOLDOWN! - var/power_time = 90 + level_current * 12 - target.apply_status_effect(STATUS_EFFECT_MESMERIZE, power_time + 80) - to_chat(user, "[target] is fixed in place by your hypnotic gaze.") - target.Stun(power_time) - target.next_move = world.time + power_time // <--- Use direct change instead. We want an unmodified delay to their next move // target.changeNext_move(power_time) // check click.dm - target.notransform = TRUE // <--- Fuck it. We tried using next_move, but they could STILL resist. We're just doing a hard freeze. - spawn(power_time) - if(istype(target)) - target.notransform = FALSE - // They Woke Up! (Notice if within view) - if(istype(user) && target.stat == CONSCIOUS && (target in view(10, get_turf(user))) ) - to_chat(user, "[target] has snapped out of their trance.") + if(istype(target)) + PowerActivatedSuccessfully() // PAY COST! BEGIN COOLDOWN! + var/power_time = 138 + level_current * 12 + target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) + user.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) + if(do_mob(user, target, 50, TRUE, TRUE)) + if (CheckCanTarget(target)) // target just has to be out of view when it is fully charged in order to avoid + target.face_atom(user) + target.apply_status_effect(STATUS_EFFECT_MESMERIZE, power_time) // pretty much purely cosmetic + target.Stun(power_time) + to_chat(user, "[target] is fixed in place by your hypnotic gaze.") + target.next_move = world.time + power_time // <--- Use direct change instead. We want an unmodified delay to their next move // target.changeNext_move(power_time) // check click.dm + target.notransform = TRUE // <--- Fuck it. We tried using next_move, but they could STILL resist. We're just doing a hard freeze. + spawn(power_time) + if(istype(target)) + target.notransform = FALSE + // They Woke Up! (Notice if within view) + if(istype(user) && target.stat == CONSCIOUS && (target in view(10, get_turf(user))) ) + to_chat(user, "[target] has snapped out of their trance.") /datum/action/bloodsucker/targeted/mesmerize/ContinueActive(mob/living/user, mob/living/target) From 0fa679771bdd129ba089bd8d44f59b2afed33879 Mon Sep 17 00:00:00 2001 From: raspyosu Date: Mon, 17 Feb 2020 17:46:47 -0500 Subject: [PATCH 022/175] fix indentation muh spaces --- .../bloodsucker/powers/bs_mesmerize.dm | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm index 2ee8c3e33f..0e1a9d44b0 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm @@ -88,29 +88,29 @@ return TRUE /datum/action/bloodsucker/targeted/mesmerize/FireTargetedPower(atom/A) - // set waitfor = FALSE <---- DONT DO THIS!We WANT this power to hold up ClickWithPower(), so that we can unlock the power when it's done. - var/mob/living/carbon/target = A - var/mob/living/user = owner + // set waitfor = FALSE <---- DONT DO THIS!We WANT this power to hold up ClickWithPower(), so that we can unlock the power when it's done. + var/mob/living/carbon/target = A + var/mob/living/user = owner - if(istype(target)) - PowerActivatedSuccessfully() // PAY COST! BEGIN COOLDOWN! - var/power_time = 138 + level_current * 12 - target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) - user.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) - if(do_mob(user, target, 50, TRUE, TRUE)) - if (CheckCanTarget(target)) // target just has to be out of view when it is fully charged in order to avoid - target.face_atom(user) - target.apply_status_effect(STATUS_EFFECT_MESMERIZE, power_time) // pretty much purely cosmetic - target.Stun(power_time) - to_chat(user, "[target] is fixed in place by your hypnotic gaze.") - target.next_move = world.time + power_time // <--- Use direct change instead. We want an unmodified delay to their next move // target.changeNext_move(power_time) // check click.dm - target.notransform = TRUE // <--- Fuck it. We tried using next_move, but they could STILL resist. We're just doing a hard freeze. - spawn(power_time) - if(istype(target)) - target.notransform = FALSE - // They Woke Up! (Notice if within view) - if(istype(user) && target.stat == CONSCIOUS && (target in view(10, get_turf(user))) ) - to_chat(user, "[target] has snapped out of their trance.") + if(istype(target)) + PowerActivatedSuccessfully() // PAY COST! BEGIN COOLDOWN! + var/power_time = 138 + level_current * 12 + target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) + user.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) + if(do_mob(user, target, 50, TRUE, TRUE)) + if (CheckCanTarget(target)) // target just has to be out of view when it is fully charged in order to avoid + target.face_atom(user) + target.apply_status_effect(STATUS_EFFECT_MESMERIZE, power_time) // pretty much purely cosmetic + target.Stun(power_time) + to_chat(user, "[target] is fixed in place by your hypnotic gaze.") + target.next_move = world.time + power_time // <--- Use direct change instead. We want an unmodified delay to their next move // target.changeNext_move(power_time) // check click.dm + target.notransform = TRUE // <--- Fuck it. We tried using next_move, but they could STILL resist. We're just doing a hard freeze. + spawn(power_time) + if(istype(target)) + target.notransform = FALSE + // They Woke Up! (Notice if within view) + if(istype(user) && target.stat == CONSCIOUS && (target in view(10, get_turf(user))) ) + to_chat(user, "[target] has snapped out of their trance.") /datum/action/bloodsucker/targeted/mesmerize/ContinueActive(mob/living/user, mob/living/target) From 8666a36b1e04c7e3b6642ed6416aa987d03e68e7 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 18 Feb 2020 02:24:31 -0700 Subject: [PATCH 023/175] fixes most things --- code/game/objects/items/twohanded.dm | 3 --- .../structures/crates_lockers/closets/secure/security.dm | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index bce9e47554..bcf74d2164 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1025,11 +1025,8 @@ righthand_file = 'icons/mob/inhands/weapons/estaff_righthand.dmi' name = "riot suppression electrostaff" desc = "A large quarterstaff, with massive silver electrodes mounted at the end." - force = 10 - damtype = BRUTE w_class = WEIGHT_CLASS_HUGE slot_flags = ITEM_SLOT_BACK | ITEM_SLOT_OCLOTHING - sharpness = FALSE force_unwielded = 5 force_wielded = 10 throwforce = 15 //if you are a madman and finish someone off with this, power to you. diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 7a087f8583..bec1c893ae 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -267,7 +267,7 @@ new /obj/item/clothing/suit/armor/bulletproof(src) /obj/structure/closet/secure_closet/lethalshots - name = "shotgun lethal rounds" + name = "lethal ammunition and riot staves" req_access = list(ACCESS_ARMORY) icon_state = "tac" /obj/structure/closet/secure_closet/lethalshots/PopulateContents() From 43db50616167e7a2c682d2136f46241d3b644b42 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 18 Feb 2020 02:26:05 -0700 Subject: [PATCH 024/175] stopa ccidently recycling this --- code/game/objects/items/twohanded.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index bcf74d2164..2529ebd9ce 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1032,7 +1032,6 @@ throwforce = 15 //if you are a madman and finish someone off with this, power to you. throw_speed = 1 block_chance = 30 - materials = list(MAT_METAL = 4000, MAT_SILVER = 2000) attack_verb = list("struck", "beaten", "thwacked", "pulped") total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. (to curb stun-kill rampaging without it being on) var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high From 49cef552a0bb192c154537bdbf15860212f9d65a Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 18 Feb 2020 02:27:38 -0700 Subject: [PATCH 025/175] cleaner --- code/game/objects/items/twohanded.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 2529ebd9ce..5a0dbf7981 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1031,7 +1031,9 @@ force_wielded = 10 throwforce = 15 //if you are a madman and finish someone off with this, power to you. throw_speed = 1 + item_flags = NO_MAT_REDEMPTION | SLOWS_WHILE_IN_HAND block_chance = 30 + materials = list(MAT_METAL = 4000, MAT_SILVER = 2000) attack_verb = list("struck", "beaten", "thwacked", "pulped") total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. (to curb stun-kill rampaging without it being on) var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high From 9803a0835c4ff028f5ac3e4f99bb2502ee20fb38 Mon Sep 17 00:00:00 2001 From: raspyosu Date: Tue, 18 Feb 2020 19:04:20 -0500 Subject: [PATCH 026/175] lunge tweaks added short (20 frames at 30fps) windup w/ telegraphing via audio only played to target range increased to 4 added flavor text --- .../bloodsucker/powers/bs_lunge.dm | 40 +++++++++--------- sound/bloodsucker/lunge_warn.ogg | Bin 0 -> 73076 bytes 2 files changed, 21 insertions(+), 19 deletions(-) create mode 100644 sound/bloodsucker/lunge_warn.ogg diff --git a/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm b/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm index 48e12332a2..0f2aba49b6 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm @@ -7,9 +7,9 @@ button_icon_state = "power_lunge" bloodcost = 10 cooldown = 120 - target_range = 3 + target_range = 4 power_activates_immediately = TRUE - message_Trigger = ""//"Whom will you subvert to your will?" + message_Trigger = "Whom will you ensnare within your grasp?" must_be_capacitated = TRUE bloodsucker_can_buy = TRUE @@ -59,24 +59,26 @@ // CAUSES: Target has their back to me, I'm invisible, or I'm in a Closet // Step One: Heatseek toward Target's Turf - walk_towards(owner, T, 0.1, 10) // NOTE: this runs in the background! to cancel it, you need to use walk(owner.current,0), or give them a new path. addtimer(CALLBACK(owner, .proc/_walk, 0), 2 SECONDS) - if(get_turf(owner) != T && !(isliving(target) && target.Adjacent(owner)) && owner.incapacitated() && owner.resting) - var/send_dir = get_dir(owner, T) - new /datum/forced_movement(owner, get_ranged_target_turf(owner, send_dir, 1), 1, FALSE) - owner.spin(10) - // Step Two: Check if I'm at/adjectent to Target's CURRENT turf (not original...that was just a destination) - sleep(1) - if(target.Adjacent(owner)) - // LEVEL 2: If behind target, mute or unconscious! - if(do_knockdown) // && level_current >= 1) - target.Knockdown(15 + 10 * level_current,1) - target.adjustStaminaLoss(40 + 10 * level_current) - // Cancel Walk (we were close enough to contact them) - walk(owner, 0) - target.Stun(10,1) //Without this the victim can just walk away - target.grabbedby(owner) // Taken from mutations.dm under changelings - target.grippedby(owner, instant = TRUE) //instant aggro grab + target.playsound_local(get_turf(owner), 'sound/bloodsucker/lunge_warn.ogg', 60, FALSE, pressure_affected = FALSE) // target-only telegraphing + if(do_mob(owner, owner, 7, TRUE, TRUE)) + walk_towards(owner, T, 0.1, 10) // NOTE: this runs in the background! to cancel it, you need to use walk(owner.current,0), or give them a new path. + if(get_turf(owner) != T && !(isliving(target) && target.Adjacent(owner)) && owner.incapacitated() && owner.resting) + var/send_dir = get_dir(owner, T) + new /datum/forced_movement(owner, get_ranged_target_turf(owner, send_dir, 1), 1, FALSE) + owner.spin(10) + // Step Two: Check if I'm at/adjectent to Target's CURRENT turf (not original...that was just a destination) + sleep(1.5) + if(target.Adjacent(owner)) + // LEVEL 2: If behind target, mute or unconscious! + if(do_knockdown) // && level_current >= 1) + target.Knockdown(15 + 10 * level_current,1) + target.adjustStaminaLoss(40 + 10 * level_current) + // Cancel Walk (we were close enough to contact them) + walk(owner, 0) + target.Stun(10,1) //Without this the victim can just walk away + target.grabbedby(owner) // Taken from mutations.dm under changelings + target.grippedby(owner, instant = TRUE) //instant aggro grab /datum/action/bloodsucker/targeted/lunge/DeactivatePower(mob/living/user = owner, mob/living/target) ..() // activate = FALSE diff --git a/sound/bloodsucker/lunge_warn.ogg b/sound/bloodsucker/lunge_warn.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0feec43228b178402fcb1e199434253316485369 GIT binary patch literal 73076 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

8|UMo*98JZ(xkh=rgE0w`c$G3q^Zd!JMY)^pKc_ z%;RN;#+P=}cjmrXpvF`F&v}yH1JnIIPXh0@0Zt^q#&a0V4+irDx3(~tI}B#>CkAIu zRU&qI++g07RLbDGWo@*}VID0h*^i<2lbMk1(#{N*z2|*;+w$H$k{Nb+8N&qxyY2vs zXOHKbx_(XQPemS;!+EGb%Q-pF&QF27%U&T4KLG!DP0VlZ%+!;1NC(W*1vel{c6_`R z%^9tGAC)%Uh{Ar|`D__*Xl&*SfTy#oAX?*+@v`B_Fmq(1nR&CZZyx<-go}1z7UxAVY=n1 z{|kL|sKvlpTIe?Y=+a@6)4XRZlL~Wrj=le(D#AivbX4kR-(Zy0vYXb|FVar#`>VfL z9hGDC4A$O{*%^i7l=_pMIT+-ZxhK@7HSczAoR7KAl-;`NjvXJwRxJ|S?pKc@d6S+V z=#HqvUY1SR>of$Rz34fk5#ef`(6fgS?lm10ocy@*N;_(ha%N9I&AHil?9`$+ zapJahh`;{7SUL;0Cg1n{4-t7QrJ|suii$x<_b><%0Tq>Iba&SnihxL|NXL}!(LDxI zA~AaO=mBF47`2UUzxnxnckB+b%FE>|wrE3~*bz#q&m}N@wBtUbyywI;y%81k- zjZ1|iRzg8UYJBGL1AoOS3 z)9@eG{zT^3HH3mycva8G(k#W-Sxe;xF^8U_(`XA#wAAAK0ege5n>4BpR?EG$Oi^J} znls?2-ox089KIWN7Y0W24Z3CO#CNqcWjZs*hW>IC=&y5`x5M=qpD2$+t>t+8CSDC* zTF?!4@QN7x^r@2#D!d42#Pjg&_OQ|YI)c|QY!=K@3~N1q$0miP-P)gA|Hp*^gt?Zl z2!kotJ&k@4YO+O{OuE%Gd!BeffaY1}(1_9f9C|I>IGo!>?*8?}O0eo^YeGBOM^DgO zfpXGIKKf04^C1yhbCSu_ArTnJFIcnBN|_?p?95?^s%5KKv-&T%<86CKfI;ebHa~uupVF5{rAY;KiE@R1WDkT91xe|UXo!`TePZ6z|Q^r$geNDP$n=Y_6; zW$tZM@RpRldB2HfRe$Gh66MmhSce)W^wfshGgbVSpRf$~=fSgl+p)FvK7!RB!}epjVP(o{!fxZBkDz62udM_PKWh-npp4L!+Xa{^g7el7`5uznAa($bUE)F4 z3nhOqua-_<(PonbF==Zg7d?W>ZM!W31Qt7gv-yQFf%Y1_V=|a5j%34#06;_^eG>sf zeDi39gk}3NPJ`hPo9ED$6LR2#Mz7hCLW{5_f;9)>#_O$7NpHbM9@xcVd&RiPx)J|1 zFJds>7}n5LS3o;CINvvto8rl+a~1aT0W|l2nKWH~~iA!dGRxEXe4edQl8+y94ZwQgdo;xTNNj5gm zx*@D1G5fY|#YB$WGNl5;jMi7!Vn%hF*(-7fN6Jr`HG@W93~A1mz8DzNt4P4;Avew5 z?#thrbf)3LTgqBDcmk_1Bw{~}*?j_B|MKzp=f1NJZANvU5lj9ftV4~9HyCYLK)Dphezdzd{?J%X1Q}{>o0OmgkJg!k z!ONo7b`|u76zJ#`=U6?#1r9+%#@g<6v4Uftk`_=8HnG>+4Uz2KV?UIYKwUWAmp>k< z0~Ws!5WAGokGU%;_PYD&t_ZKF?0#K}_IsEU4r!6KwgVnITzRU>S<}3G{Py!5^9M|8 z>lpmJJfd;4qzS~ zj~LzY2*021i(KxEL-Ly-=dk^Qj<20y#Ksrc_qcf>M}fOX8_k65#$~`_%MzE)Gr7QO(R=dJAI`|XG6XPh zou!w6gDmYsZ0wJ7ii`mN>w6zw{Gns=YeQ`B?vpdVy_ym^<;rHY)_){iKN_@5Fd^L40r?X`VeTjb3TK9P#A5uG~$W zKX31j=C=5M5Y<_gVtwAe8@jE89FV#F-ov_Zss^4FT|0Or`Bub4dR`4lx*J1=dBZyK ze@AuNwo*han1bwP9bqr;TBvZfiPx=% z(@uGtBYsD-%IGxs)i0Fp&Gplk9Usm%H4i!AXT6}_%)uD=Ab%9^J2q+`w4-tMH*ai- zp4@nZ<9kKE=t$>3zH{Sx-lXv@b`}j6$bH28<7oe7n_K7O)etJEl{Z&NLhwtc98DCp zBLmI5W>6yp2&~Qq0DK+xUt2I+_7vC32^5q>!sk=EDv9FV_XXByq4Rie(725Osu!Lx^L*7qC01{T6}BMKfnG|21&iVi#8yTs6>Pv|DfsvQ z0tz5g4nQyBYWjz%g8RJu0sVeY5K()Q&3;==> zm^}(U^p4&{UKN)xrtwtTMtt}g0J{_5 z0`sC|$RpO)>|ZAG0D!C@Ba(T85#Y29UoeY>uOw{nc>zfbOZ*T3?mF1oGqxzN zXbU1cu+hrLMQDN~;m8~qH2m(XSIsA*-mEW6dGZwJmot}2^fStZLe z9_=dSbieb9{aR1$CK79;b9u;n&q=Y&UHUxm`mn?n|CTLgLt8F7F~>)GI`FYxt8fLY zo;f1j61^vWjCM-BN69rNR|B~{691H*tA^LkYLNK(|vFuyFJdHZMXb{17J-Ckd zTBh|fVub(T@*;_G`j}^*^PZ|{YA6oDdy0f_Fsw#zAgO1~q{4%%s$c^6o$@mQis_DU z^SzchOzPQ#H6H9?>X8emxKL(?9_G8=0i$k$gz#wZGmfG^!#G9WyI)3qeiT7(V)$M$ zGO+_%WwyuwK;tDqF6fno_~|d%uxx*z2jGmwumABE!fuwA&9$=1Zk3$+xA%Y6$shbH zq(vqryUU?eMM5Xvyp4qV!b@Hm(a_Ln5%Sp`7r*+XvU6Qg7?Kp*o3l|eaAy0(Xv=25 zNjd6Rh{QmI|C{pa+PV;0culn3{FPZ#`-e%YbuVLZT8%K%g}dLq1POVG-fc3xpu~0d z)jc#@?k2RWO15_vBB|IsZVtK^#mUR+n&QdUJ4EGw`7C?%+t!BSj5W0mF2DMg;4`Zg4g7em>vPlRsjzIE*l2Rc3>&-)vynw9&f54L2%#o@D9 z`!6CkWEHLbKFj;1TqEwy(aJKL{Uak^Zx=H4{f^HUvd1kK@07?wXRFc-#Cc9YC6MvI zom+Otk%p8j5p(NmhlzrNb7>Hbm~WE-TJ~R=G6Gi>vERPJ24 zVpGIrPz?p)d~^i>urQRXFdd*Ia+B=MQbOt@Lb0ynhEx{2*#peex*00Ak2ywJu(VXQ zMRB`xIKP9`|F{rtH5d=-g&_`4fB-n?!+X5-z7V)Qlphu@zo;T zPVsO<_Nx@!=@Z7V3;=zHohxwK67=0Vczy!KomArbXuOnf&xEhj1W#<0Y5R{5mb5=8 zUV$|?BkJdr0`W?XQ%WNMdTy8DtHAoDwVp?}SL}oMuLijCymDh^VvGIljgRVxPI2CF zmK)pmlX0FjSm>Go`}a8K5ASx^cI}`hrMK%=e8bMPvsW_my}IyN0tXml_weXs^Jw%$ zKlXUa)}eate{#v6K%0-Mp$V=EZXDy9XH~7q(>(B#wG4l*?%3|AvQX%!whGR< z5;)OW?h~xEnYO-*pME3p_u-z{>4805`~(cW>9?zluHLgNXyKd`>tnXZzgDPK>vbwa zHky{gZ7C>^`a|%MD$9;FM^^4SIB$o{H4(CTQ5S+#PzF7Y?*al$2?Dmfo^-;+{FR^{p+o7u$>Agsvbj z4)uiPhPOaAw8FnRWE(`T6%E1+#17>K=Dlslt%D!*7A39ov}Yi{noL*~O`o(<(j0W| z-n_G)VkHatuWiRX%^f>E=N39w5wYL(W+DMx=&o!JndcIb#+7Ngk#Q?bH4F*{Wkmy{H$$lz{bbt2yaRMg+Op7kOi&&@xdn^16%7M7i zD!i>Tf5ln%d2{wtrCK6ae(4txmv+;g2dAos?L!O7>Uz;%4=W}5F>X{-8ym@>zJwLa z0K7UCcdFXC?nUvxoI#w8Bmdg3lc=S`cy_HA|Idw+{x7fofA!=a8g1}h1Or_?38v9J z{`Y@Lqdlh4)MzvffjVBQy#`uJWha9|w4!y_d z!A0(b+7CS-y|Y03?-{0q4T+aL0amQYiH-CKaM;I`==o%wyiT zVW7BIfQ*xHj)KssO55BE%xvFPZpEu)&n*2;T8f;Rp%Fas74us`cI)=PFRc}wpB<<^2mEd?_s+n|~svf-uTvhBB{wqbRgnUc+uRX z3<>*TFexc(dA^w$C1xWNO!4tziwczBpP0Bg3K|F=Qc}CN?cc($BY`xJgRkvwg`Dg+ zej4lEld+lsp@X-w-NhFmDFsD1l&s&%oZD={X#%<4AvD=zcT^VHHY|Fz97X`y z*H5Y1L0}$|+fIw0nl_ixa%f7~2VS`(?asZ5QYz@Qu12A^vMLeRNCgfQh;q65q}fi#dED;37v(=Y*TcQo<#N|6H`EPo661E;S3p($&coH8TrGL8KH^UsW!}G1 znj{tKi;MfcHLT!xIg|D6E9vv;fLJCPZnUK|!unudV7k8lGnU*eI{Ut^{%icln(YiOgk;dcxbwyQw(DHs0e(o%% z?~#{8YR!1B3BAbx09*js_4;LXF{E5bE;Fq%D=W+33$60>Co@9O1{?>PygUUjhgOLb z>oRC?vGq%A1ADWx2#%kO*>&Yf&b?dDvNi3?0W8Q4hOyhfc877^FIA%2pemjb-?Tp) z@HqhiXfPeIGQr8#nSS%9MAsT%hhy=l#jo}He_;|p7nS8|`~iRgmUf0BI#6-E{oj(j zj3ScoL3k-VuOarKS~>TFVy2$=Rh6?MHl*_8-^ife_5seqonSLc5aP{H<|bQ3MRJlM zE9#*L*ox!LH0Q#E7q#D@Jo~pgz1TPI^P(L;_{jF9PyLoTmzX3r#QauJZQA}w*L8Po z-nb~v{nJ9|xcbsDCAVR^s|1({idrM}%h#9x%(y|Y6W$F9(R}Y!eTal}_BTvP9)7f1 zqvFsd=bCC8Tjy;~a;W%8XhEP;Q%_Ln!$o1mo)2?lDXNud3K}Ob5zXAsKWa(~P(2)d z4{~leoOb||9zW1Voq8J0ghGt=fA4-7*jsnF7v_!~o{=H>;;x4Kvt3sP^vgVsm8k4sh0N2KFPy+VJX=Aqk+k-Jm$n_+`zH%f){K z&FJLC05cc{iBaZWa&+GmEp#Q!koNPy#BWBPFmB-1X&>o_@$L&LxTW&jbKe7^`b&?s zuc*RYzhhMCLzuM*6)l+QhoZ7{Cm;AOaw;2MAsP{BMs<+TKzn_eA_AQw{7(HysAa zJq-`9?|d`n28EV)$3&g5h%*x`ZwM%|O=bQX-Td;l;WYFM>&lwUUIzB?RWw=Zh**=@ z>1zGQUo6oV1Acl1qKL?br;e!pNeaRWf^~N%)@S80B?i{_0(nA6f#c~*WAP1w_$3G2 zjBsL~Qy*jR+O2(Dr}zR(P~XdZJArB z3+ejla>cT>a%;ZJg~ZI;rJe4ZP4IyzawfkWpA(bT{t}K7{NhVBV(+gVIWuItvac$b!D%V3?MQoc1C1IfZAlZmmK zO8O~}G9c&2X_4EDY?? z_x4t&ZM6Mh4>4$c=@;(;5z(BuX}OKIq)r#YH-{gBSO!Ta{(39N{R(y?k845|Rhb_- zEan054@a5|$Mt?zLKIm!`^UNGD$N8uNDta44e$jU68WBPSF-tjo?Gm(ahb0f(P!Wb zN-7|g~6|07F5k5`TiXdB}+bh821D_ukN=ld-rlb zrb2l34pYMH@iHRq6HTysdf@6vZ|)v?*AT3!`+omuXkyN_&*Ofoii+{U#?<8_V#3+Z z3%!nkkDhs&90iX0-QI5=q`*U;H!jSNeBQIPM--XaJP~}i5X$U)F%BWM$tZzV2oCTo zX&I(p?eo&DZem@TJ_fVT-l=Reqn-?ozMd_2*Qzgv%P*9Wim0a90ux>xtB<`lPfseg zh@-nVd3_Wq&35MxQE+Tq@_%A%&~=xZVjL+zp#{?<#?Q^=GvY^YW`=+0LV9wFHGiKB zLUE{terr&J=!j0p6PB0Hz&Rr4e~C4>Q}gk@ZQ~zjetY#^PbbK}{`5v}uAMDGxRTaF znZx%h{oS91_GQ@~0@rt}B=5b1E}sU2Yoh)Pgs4uEPyM#ZVk81uhf%xD_QwJ%%Oy;t z+yo@f9J-z2J2D+C3%hq~4Xy#h5{11Zwe-(|{B~&iJm-HLM&4}pWqH3&4x(_^D4`m6 z=9SX(RX-h_E})3AG-{>)`f9v*n{z_BK`1iI!(Dy^x4Ck^;f;v5yA}0o?5>e2$rNFb z%LrJcgT2~y0KlG_a@(52T;R8k#z)!tV(*3o6Uuwce_w;zhg02QB*ANy3n07&z8kxs z#W3KGE7kpCx6qp2CJ)dn@_d?PmC4X&<-!pnEackt>Ca@TTxI-@%wibt6%PQQfv)xP zg{AZI$vpmL!JG=0c^nL$bGqT~#`V9J^gs8!j5}Ioof4FrD&5-WVA-n*8qJYczM?Ho zkj8>_SqHWK8g0bUNnNMUR^n|o<(pOvupL@90^}B%xH7MiaaGF9$h_%dY)l1?B$gG7>F}v4=-3#inc(?q0KQ zEjLeV5D#cjC~ShvKjNyYFjr=OmlY7U0qSXed!9tHi905m%Bes(^t|Ad+gy4LP$^U@ z2l-ga=I>#y(EFq8E@gwkdNTN^AxE#h5+d}P>1)}yJtM?Iw4&|}HDdFCAR~Thoq4e9 z*x}o^nmgPX6e#VD=><>x;-D3P~*OX|JZ!j7w$Q|G> zur37<3+)lw_N>{{%&IP7x@)=3jT{ntHlDDfv(bKX+QEayfVkQCfanULng)Ryq_xa% zrqq?rnje*@V#mgeB*qc7<62-lj((ox62#*&{kaW<1Xpe7;Ggm!b9)#8%#S;xd^`x8 z0QOe^`H(Ptc=g;pLqNeH+XlZyy5HQROZ3bOcr47`RCRjQiLCT8sOIT`i%hFRWe&Kp z*1^x$9rjlBDX^s_=jV)%Hz98#X!CZ3H{zII)uH?QPzy=#<&Q}0C3VY%qe9mm<6d(! z57Eg4v>i0F#n4kgEYpf1P-_-9tImUn&h&vFw_Ljtp|%ke+DAUg&@ml#oj>rcItm_` z{QhLn%LKwzAJ)Fb0oXUuaS76QsEI2+?HIXF~Nl%ckUm zH9s2ybST1lkKHm$$SbDqnS!gdu$pE2{Gq@<(>w1QM$UGq--OZuQEu`Hlb3?-f@R#z z@B&@fg&Z2h?#Fy9rL5<2dJrYB@+Bl+K&HxpTOtH3E*GeF@qG8Kb0Ms+V#a&EH|Yf4 zvgdeEm=`uTDhr$Lyp>FD0u9`h6W~q$B9FeFs6s^f?sSF@Y3t1|3XGBaDW{K;&OtX8 z(pYZ!dS`sR$|bDoek+~CE3At0+EMGRue`3YE|iksTO4coZUxge5^ex{mts2*S_uMG zbEaksv7{`0$A$9kOJbHp@OP3MZ7$(aG-4d6{;2=w&YCay($2*$70^}%+qzC#%gQV< z8}bh_VZjLOSxGAHKd}`02)QDjl3_iYu=Ypt8a~R7y7X{IMSURlFxBGI+{$<;mbTl0t}p<59!+E19{hYX+c z*aa(*@~ap&uPU)}d9xqXPy!`}@v`5&|FceS77oq)7xe+2*~{iIz%QzVRJ? z1BK}mU2`Q*0Z!FIWVJdbR*y7mVbx}%Zn6BluLt36mrFx`!_8{Rx@wb*4yD9mwIop8 z+plX*WbNzAr9>JE`9c(zo5*$1HO&FomkQ0%f9-0mYsIoC(K{``5u3PzqPfVr-oczW zBUYjP@YlXB;};s(1Aqb=lCq$mY=#_XrtZ@@gheEd>0iIbLyjP?K6dyvJFFb0XEaLV zfT*Bvb%f0}OQB=$XXzj@KdR=Zij-*YAw4{I66mg=l>9fn3>p5IItheAL&F@#_2J<( zxBYUEQwkddTAD5)M58W-*?TP&GeT^|NR4){Ij-IzB%%u6H8QRG=3V5l}39)qjAt^KpO25jV2P> zvr?AdPufU$pxx1U-(0LgbMlXu&_@Xx<9$G)IRFAolhLgMgm1QwddM% zw_s(>T%@&Yk6!p0;X|E7?<_$0LT1Q0#W-c=xJnwbH#+)BxbiUI)zotjKm(6Q7>}i; zBA~IOl_6kkn{oT>&R_QSe=C%1*0ghcJ>(~0Vov!rA6>qaJqx6&u3=Eo&#Bwe>rllN z-Sqb>m&o52PxnoAjs<1ErrQM*K>LQl#+fffyy6q)MDM(ef{Q{2yPby6=o0b#We#m%(`3m6NUovyp|ut_IJ?)pYr}M{^<Mqp#@Sn?wi&VxFP9PN`{VIlx*8 z%W_p21Yy-=+G^p5=YF-ROdy-oYm{I^v$p**SaNieNx zU0id(MkQ}q%1^KP6qosV%~%U76Kg0po(}8ek?CoE&WJ+CE{|S)n(obWzE%+3`~ty& zkJ^rQM%fVxuqxG+sVg6BW);9HBx6%F9$g+Wv|ScBBymsX#DPAu2LNaV0N3@y!JIfv zNbbkIo)DWy$0EResP6kH37SO+xt)S2SE(e?jf@FU7h=4BVSaevsqE|f%8?V(!6vbo zCW%cJkKdH-h{G9xK02LQ?HN>_`H`Yusu%_x94^4Z$Mm!4=nGprU9}34F{EF)hiRhV z-r;Qj+c#(5+%MkgEG@^o%K3g#21o9ItG}-ua8z~o2FaJYjICbtvR?a$i#T~_ei6m* zyZZ{lyQ(pGbiV!**VRw?Uw9*hNM=*b#&tGT*D>R`qoYSO&LEXvKaMVJ{2&|*mb2Pn z)(F<;s*Tqi=Pk&HvAqVn?{A+}+owaKOR^3cBs^EWbJp@rj-baGDG*SyvYnZ<*Xsbi z+3xhvHP$1Z#VhYcr=-O}fv75a+%+NI^y4HoQA`HN{rb-|z=&nW+u>H>=4@ zymJsjRlBoam@OO}O~mb0Mu&_~9h=g%zPb?H6Qp->za=3+$*%7BupvjJZPo+#u+=yw zV4L7OC9Vl!t{LJ`xv7I-Ocx;a6$xyH+J9N90!{vweKH1RSDyAGcPqsslV!SOPtRk1 zlxJnF9hbM}5*pmT3ooSk9N*dQiZAWDJ@Cb{&$>`57qa@xby|cpRs;7RyMbVLM5P&_?PiTA%SY&iLS$stw0Kp6xSUATt_I6EF z&Z3j;U)l4B>Fr!I8PT2iOY*J$HScEbF_DqH3v2#%iNYu)#LjHh=eUQjS|o^jA}dZI zCa!T~D{p%ALPUuIVWFiLPX+{&6xv!x^i!<%ojaF}P`vhQU5*?B&4oG-S3)m09bd;F z8kybRjafYXGJR?i=Hrj%ESbLs?NWy30)fqU%f^eVqBJ1$HBw-HzZ^AxYvYf~2sc-g zY1a!er!w4;arT}yHj-W?8X0U=hG>T>qEl}D7i`9_yPEG>Z}rA}*DWvBdoFB0rKPB@ zQ{M*?v0{JQgK1=Ij&I(YD|5bbLuYIp&2&Y>_hbjUbmSS>BqA7$Z9OE5uGNwBZV|3X zBTHltka|}A`P{P6TX@tfydQK$w8)wt9uC-!Ed8!cd5lY+-!D*9~JCQKRO0o#di z!v#H6o7o+4g!cPyLCB9!Epl&umO_7i_W2yZ`y_|Ehs(zAyr=lGs<+qp?Lb7UTCz|r z^VB0xf8w2AP!9D`rEZ9{v9tErVA3MFY0kTmcTOo-?AxE;n94sfhNVKc??|`lUhjcq z+yaDsWAJ#m(5;VyTf~=Xet#`_6w_;aY#Ea0W^`_az)VT718XaFaIo{Xh4Kav1N?5~ ze&{SzjaNN7xAINoWV_kn{C=r$KtEC&#@V0(lIWbi)vmtt0;V^cr|s_NQ33B{0g{f%4XEH?;Q z?X&t91I>}zgIG^87!>_?RL#a2{-rNB$n=MqG_C){2n2p}Sv`jLNsYcby8P^^f+Iv% zEFl}j({DWHn%wbJfU4b^h0V~9nePsG6J8-Hb1N^((lHgM1@U~}?_Y-yG*KYT4hBuA z98O*_Mj5eOs-U0WwgP8~TZ5}Sexo`rWLJgd>M4owV%Pd3>!|_%c&;X5d9fXAVk>JD zCp-O`zr>lMHI`mpA7N0z{d=(x{TTKup0+lvuEHu42px`#h;f}$#qWlHy)K)>M{RNS z*!twoRTgMe=O0vaP}NtkSv+@o4)61>yr*uWH|bs1pDxbJ1#?ESGC)^GpGRlhdMaK| z#N9XlvhiK0?EML%yRYn$;B@(G08Q4l99AOHJ0y<^?025PD|M*MgK^U?rYjeF-%{yf zrzfuWaDp4!tK4hu?*A3+JEXit3)*ahG@~)fIBAP{`wfMisFO@I_JnC@+qzdVb`I1w ztRrk%S9_Oh+567Cx$&;a*^9ELM+<`nx&xMGDYJEd61cSv5(ovrj0gmGxh?!R>IePO z*)w_|X#@zYui#`PH713__9{Z&S8hvc2$+a}+#@m;)}z_?KJ7s{CuNKsPpf1vG2RQs zKYI)Svi)SpUfGh41I)Vi=}0LDZtTu-pL5oHL=$1O-@Jy3sT-6?;k&WX}!1r+R>oSY7asotu&)xNwtQlD=5jW zGm9yHa{lh60i3-Nr$>2;h0`4U8HasQp7)*i%@lR5B;y%L+o(#lF{{>MKI4e&HnjBq z?Pl4`-1Se`I{GlBvfAtqrqeA(-uxt@{re7=$)>lo@$7Lqua;_qZXV+;U{VtIfvP}dPW04D zV#^(=59_`SfQRfF&nr9*+pR!U!0`Y^)coH+O2I2?FwHZpX9|@HA zeuL5roY=%$RAnZX9!`NXDOh?(xP?9Z>T#lU}Ua5;joOueN!r%gEzkU%W6Q&q5BMipg~pHt-0Su zWHFhEyeM%g#2W9P#4FrWPCfm2BmHm^7Gp#UAPD zf*IJqmZBYv*hYnYbu>?@Cn^<>ZR0P`h5``bz&{Klw zljUl9TZWKP-N>rgPicsW}4*N@r zm_sBh_9*(Sdd{~NwXz-K_p;}7n!+C*66PmvcQckEJ@rdpVK8VzE(*(m|#Pz zcK{1PfbN;>bs?g6YLJNBo#(#;%z*0CLf8@Xe-<}%~gZ+l|XxrI62tr7Ugx9>0fPT6tsm4SUfed4o{$kAA`JQlM& zQ)rzPDtNKDcGi2`#--s~A^aJG&a*QDD1kh)62F+Dc5LCG&abJ^hEBU@c)wLJO)P%J zx7)SP*St=L=sN$rT;oUO)n`$M_JIc%dXqRdsma&aBJJKtWk2QiNf752)`>%PXxRUD zk2lF~Fxzjm6ltW2$rgS{WP(o(*w)loUjYuvll~GEvv?s3ONOF(?~1Y_$yGNpA@)j0 zCpIV4_St&f@v}u3!=N*muW4FWzPS7`#q6qz4!Dd#p2|9?-e$e=pZXu2hMRf7dUqvf zZ&-ho63#&xVx&o0$Eb32-BL}tpSIB4)7_Je3`(a7tWn?x)YGNK^=4u#pS+I>(7klq zR-t0aRQ!00>}wvf|9Q&h_ML8#JKk{<`EQ>m4@4&8zXDu{M8(0Dv|s+o$8?}pl$|Ep zxk^v<0mIji%b1wF13sfmiucO{8hKZgD}ZaY>UQBq)#g7$$EyuNhK#Tl#zf|>X* zwu_NrG_2NTz{zF$o1%vj0(LZLJokd}(`y;sD+Fh`yX$(E!tSM%d$jn5-=)+daI? zJ~MYnX~{VRs>la#=CR`+T`a^c{Q2&jDadwO3vUcfF_PXO{>vfTT<*&|1R<5j#xe({k*RxFj!=@EhJ5@8jp+4hw1vwB3!cUTIYa zDu|8Uin)36`EQ{yR^`9|wASB!D^xd^Ma^nxbvmR&(uwv~-oMy7j_nzMIDW(R%BtN_e3w8Q3b-vw6B_U7C3VvQn3Cu*tJpDAlRt6f2{_QqJtlI$>(4~G} zW=*2yWTGTwQzgY0@?Vu{HH6RatU?&(yHeX{G3q1h@A!?4cS6abK3x9Cvz5WIX_moc z!v~?&H-9jT+_Rn|Zpwf0*+5999}<0e@n>?_8q#j#n{gDf11k7 zzwi71YbyUR-16GqJakP(l}39&qbbv9V*i7}3e#v$X*BWB?iDG`H)dN2B8?96J^6dr znvPlpe6cc}C$t;ErfrdMi{k{gr9)`Q8lHmvN;rc>Hqvq5a}`OBMoNp>Vfr0hVvGR3 zE6%_JcDf(8QK5rP18pXjB2dK@w$dZ`>SHHc*l%_ZfRj@tg9~768wVi7^Zr{D;N=5> zij!1j@ni_ggZmE0-}qV+i-$!)rttLyDQ5KB)9uM0_a2wJ)&)dge7bJyYN>i?T(okn zf;Y=-#X{d&P)khqb&_6_XQU8@%ip{H*AP6FiqieF4eyx^#CMjAeJkpVF`Lts{-EqS_$5^?HW|@zc&;-b&do|6-cav^Eca^R zV*Z?1*8|}o5N1UOUMRfY-FQIpK_pSXRc*59W;XB7#ovELEt^Ht$i%Lk>*YXN=t+W| zh=8E@Fku31x4zxdhAXdBS$`?M_mF;GP*ocn#zRJ*XSZe96 zAIAK-YpPCt=xZ~A0wY=2V27D9VmM#)CV9~P4I3croIsDzxb>8uk^7ZOA2a1E+q}yb zKg0Gy7j38&byKN_!Hi0(8#P0k6olP2KpALu{<^cTY_GrmE2b@dhOS<xXMCy-nE}`ist}S>hGp;0K(SJ1>`m`s0Z^prT*ilJ+5FCOo8b^YgAgb2?DcG z;!3YS*w01H4a~F>kjC6E#4d4#iOW6fNMW9_L_rG_FyfRJA?(S{$yDTI+y)QD{3pU|I?w& z4T(LD!(_V;hfS(zg}Qw=^bYNqn$_J%Q|L%)!XUM~<<&w;6}44!E~u}*5%UX!?b!5; zLbLh#A*k^2Nf%dp-HuIQ^TEEb9RE=5oz}cabmhqq)4LdwSXJ;@xAdakYy1kTSd$cq z92|QIG=8N?g%tuf6Az?EEn9lvtBZExVI9tlkD1w%Tq(Z33 zh5j~7m2}*AC9a?PNVN&^dO-4LtH|*&|E&~6)Q4uh0X%ccSUC}XFXLIJ$i)Ovv@Bc? zF_a5>IzDu;V)LYnVuLvnk6cFxmYS138;S`Y+j1fY4Is(6-hpc+13$TwD-6EfNBJ&v zIYkFD(v>&*P;3CTJAAUaPu{1~iryLp*w~rLvd`CE`!ANrBHdyHl4V#S&py?6KYR)8 zY;*k*Iy_k3IbUL~Hf;5Ne*-ur~mYEV3m)RZ8SiE-TlM@aCqymC6 znIF?Hyf3Z*<^WL~Cv%Ijj+HW$GwajLyRu=7OaME2YX-RS`2CLd=0efIOl21##uL1W z?@nTUm^S3MXRMKt9OV;GJHvZ9rU72&mV8Ngwi;MZJ^SY?jDrAgcH6(x(k0*0>d7PT zyE9y4wx>TWyC3u3cC2)sJA>`bE6Qh99497u%s~5wGa2p`>>fG;%ewWpt$>4HG>bXX zWqCl+GIw*^p-@{bgDbvI8%48BNgSk-J&{0K)}o(Ek|#M7?s${sX!T}5GOoA9{gZE0 z{Op#{PRJS?#Q6180(8{{=}Tq zg!Wj(-@N)#dQ~C5wnLVMbmBdJl#zuQ)7zOl33bz}pk!fWEAQlTpi&o!a)=D?DDA$G z^qphX8Lf4Q2&(H8B{x%Mb-Zj^35*Jb= zC90U}_K1fo;5lAA+^Olhc(K8D`X|TcN)U6_fY@9S3cq_7 zoS~V6WW)%_)~X2})_az4B3t>NA-fak)%cz)+!!ih5ZqbN%85Va%-Sp0eJ zXUEdHIk|t%f44=(E?-vwOS{_t^3$kR-}F{F-xW@iwSDgSqt>q%ewez&JmnKlen?JeShs?uVRW*&#*^0y8TYtFEjxo1+ z(5aCgCOpaL_AKvKJL=@;gxe`NPo=6`4G7J5Cu!YJHms);hsfI^nL%@``Dmm18o)%D z`u*=>UG4oclkPCdy7)iYcCqZTzLM@5Euvc*797Zo)>84Zx}=G3k1=G4g^F$|c-Ml6sqw70aHS%dTcyNfd@QW6izh>;{aaM;~YM5dzZkd&SF) zu41i~-S_VwdN#%l_S4okQQV_c^6bZ89XB+Ess!rxy;}joF8dN(Lq(oBo|J(O0$v^` z_|He3zEesGyajWKC72{rW?wRj6a3TGsMj5MHhu;ag*SDvB|N1>Lufm)bkW32g`ADn z1_iWt!V+NnO zuBX;0JZ1_0$#2H%XM?s*I1!#T_1V_@+5XosqEy%>mK6W~O4srH9TeZ?6xVIas!77n|3wt&3-i5gVZO_cndYgAQW>FbcqlV7B z&d8mXwmxBlg0U%NS!)q6Ur{A^o_FnuE>+~wP;};XoBOqCdW(*_?rx9JvArMHQ5O<( zv0rW^ed~#sm)3lzC&Ll*?dvya$x!9k%Zq_aS7Z|GVMxKp*Y|Go!hLiuxK^NqFYA07 zYBVD|5_z*io@smmbxNlwB9Nj~u-PD*Z0pArOF6|B7|r!#Jfinx zGiJO}X3IQxoKfq?zHSx$uX<4l@=*jmd2ysew%jFJ?WXscW;{AL_f!7*R7&je%SW01 zE-@6Ob@iV>Hnmpo^WVYW_{q=qlz<(lQd(`qR~Gl(U16@9@$*`7Xv zY?vb#eJ6%h|8Se(%`{X-^WC}QKog&Dij#l6Jco|ALi9DKihrWmw5$);bAF3a_+hj$ z*Qsh7F=H7#b7hMAOJfpl$EB-rNrSRoaa>)*txXzYf=onQ6$fs(Nh# zw@{&L)kccdjUH9^fN48K-7A;|gfg-KGFM={f(2ur#VruV2)u1S{N+zQPB*F7ujd|| z<~|T49fvj|rv4af+ZJ$@y}JPAM6jm6lviH&M4fC9@Eww8bd$YrE=(fs2yS{j@kW>r z;Zv`s@w33S;x>=lfV2(!bzOK(Iz`;{`!5srcP*w$&87VY+Y&0J^``GtE@t)H(MsuV z9;;(mmZh=8?Flwfpxj|HpeA zZZ@k;J0y~AZY%fUnr|+1c4?5XS+QA;3am;)RfeF_&C#nRn=fnXX`oGQrOv{47TLtE%uKE7M0e4V!zI6s+z*qR;NdD;++>NP?6 z#d@peO7%u(j@0zlZ{DFC=1+_Duy?uw8@kYk9P4o&Pt9%8RA5pc7Z{ygqoaHZ<$?jf#3Tgx3_X+zl<8nSHwBEGSwl3L9p80EcwD}(KNrxTwd z8bv|xd6}6vK#(v@_Spedc8(in&^wz~foFR<5a-|UM_i4%4I?pPjqxEixZ{knV01E1 zb$EP>04dzI-*$Qzc>QhP@`CDoiYvFUwom{M$v-eCm9|-mbK6q!QPVwI3)o*=XbE>V zc~2b+?-4`8^dF{WE(2HHeG>SCC6^hvf!!c#tnHMUA+!Z2tG>ox0&a7Ja3_TtD4qV}U-yuYJg^*48f9@=dKBX-U{ zmVyH~*&lx(uh6UKk}&>PM-MET7?=eC*Hq;2S1K8<{L4gP2Rmx2!v~%1{VKU?}LGdEG}_|cl=asI(%JgK6||>w5AvXCV-H-)J?lFRm4(c zkvBu^>U}+bv6PMfN7TE=Gx@*qLG&^H~W=sFX9yImbDlXNpoeB{?4^ zLOJF*jE&@c7&#l8@+~I1A zS~1NpPcDJ(v7aO<2xbbLmQ`y$vVpb+`Asof2NArSDf=)jd793IVe-eYN)*!~y#mg1bJwrHFaz)U5NPP?T2$J4X9|NJTc;X~Z_`IFhH0$%QC=M>%R9L0>J2cdYX zY{C${{1XSFQ00_$K+BxHW-gIHArXKUM(zo3wcd@nPqbe5_YRmGj;SLao)$@xU24=1 z{AT53>rv}r&G{PPH2RpYb5D_-=MJzhzqYkHpFK}^D$xI{iFsDCa7DJ~F^^VKm zE>F*~uE0jDb`#M{dLHDn2c#P&S;IL}fwnxgUJ)&FKx^cbUxVOy*T4lb^|CQF2)S6(c)4mNTW(%GOR-sC02H+52UWNzAo>zSR|> zxOF@4$U$KKfNk@`{G4OV^;ZXY(5+L#TgN!&A6{97EP`b#z0+b$M7rUTRBl-MJ2ZyBv)t($3bgO(cPJrH$EO#Jm!EA!Ew2(0630b(}C2 zs(AbW-y#c^yTe>tNP12km~A)4xD+xuOE)QoGqQasTYeo{OP%m!wIR}ji(f!tSdn)=Mq|~NhPPc$&)h< zrp-e|;h^k_^wcq^5Jcu_T&DvHxE_ubShlZNsq7|Sg%hQ4An$NmJA&>BqK9| z{54Ng2n@$F*ETM|cgNKHXY9*k`B;w_{0A;H5`Y^!FNQ&q|BOSll1H~5=AqP7f&m&n zLu?gQIja~-H4eQ&6|u|IkPHKAiUg`?;Q}El=_E>^;`wfk`*#K|c)Kd=f7?+~yVZ8g zu2WnteOSQc$(_oNt}8M+dqqr#=xVJDk96c{{Aqb0%5`I->OJHMT~UO+9ElN)Qi$Sv zDvF$9L%m55QCHdWHP;@r1E7ZDUwueMkFF*=>e_%ilmS25pR=?0Fu&Ll?D+tG?aZ(p zwicE<1nZZqd^ys}Vvba$WOzRO_#e&p-kcRqrPfB|O|6lj{>keYH&d{|`M#2Dbq(Z7 zs%ky~@oW9bz0AIbv5Ui};RVjs@T)ud6Jlnr zkHo_nV(Mi*zo#`6)BVYR89}B3@SQxx$)S&f>w$NZnh-9^WugTks;LU09+e0O6xpss zd2+G-9vb&L*Vp5?3D?d&r`qd6GlG*Fme@?$Rnx^ONF~Af`rpWasoAl(`ubWp2R}Oe zmVhkL<>w2HaQSLYMY8?U?AUi9N1sX*JXB4$v^gtl#Y8@DPsHM;kQd(=_lNj>7xVRX zML%(+z33QBon)WMh+r%-6TG6_9M(8{=Dk1|y#PZHmZ{$8n3Xkm4fdE*4cDN;lUmmh z?*0#`{h?H>2qkE2BLwkxo@0W?~;&Rf6dl5&4F zGDRf4kE|thvMO-pBi(JHVIGlWaf_wEphoaiefx81=?cIHV8^O@f?i82*c&D=FC^8; zN>Q8-+CRr^N1h@09E@cby`do5E^19jTt!Utwjn4>w3-SvRhyQqp9Vu0P?c)=WzWPz zA04H>ZB?}hxS6mPX6x+;nplOiNk&z)-=i?&U07biS&egmh z|6)fw`B75}cyBtGc{>sG-EuSpcC$A_r(@)g{9bBY*P&VCqpxAuyHl|WxD>QTdgNTZ z{WmDm732OhFT`Z&UVUvy#y%Z*yJX3wWW*nvNoe-IcB+;A(@WJ@BwR_XG|qB`Q!^sL zWijSW_QdGRlwAq@sfib=gEUD4O8xX=Mg>N5bL!I~B#Usd!3`aj&rdFPUkl9Mwk~ud zSY&kZ{+DuNpn3H#(yhS*I_e5bY>8A-6Z*ABxPmLMyoOchIjVd_?pa`TP>OZ0fJ_9$ z<`Qk6sx95Fex0TWR52)&gbnTnW|_$7ytRt|`2 zZw@7^2`O&Rbk4dXZvf&Zy6OO5v|6-J+^12B^jS|7uuZNOPE*zl4%QNF$}|s52+u_o z7WRkyC1H!8mogGuxYsLcy(>3q!Jd|WkT6x2@>sfGq=><>?IUz6KGGM-!KAyUOVy68*fBwCX<`(HKGsngAw?5mW?KyD|#-Xl(hJpRn6oof0nh8e8$tMV&86*o^Fe- zA?qcHvN8(#d&5|?*F{HY$it9_L)X3QF*gpF+<*Lu)w=)+Q}fQ@dT=d+gj7r7xjeCS z!joHByMunRQDNj)u`rU2-`lv&m5;txV)))=-+MkrXzOuk;wnmhh_%q$?P>{7+`nUz zEtH|BWD@Xi*41`Je2IqJxElug;A0bf(btZMpH(`o|XfX#B&*Mg7hb zvMdJ=(#!sWwXH9Y)en6)eqOaKpS5L-^$+=iAz#y~q+ETB4O3Fk2jTrq4UNXXJutcB ztIc6`!VCvtE3+N?7}gejrWT(*N3)`J`(JZe80pXbh&Oqyr~<6IrF!8<{ojw2K@+ph z<^qewE~EM)sGUN68G2o4<~p#8T)^-7L9E(`9x6C0;r>c6fE)qJJu04jEpDsKXNL#>%=&5xlGZmyfJ|XHa$(kPLU(ZnvqJ~( zC^o6;UFNnYK+M6ECInNDKC^GPLE6em|9hAmI=0{^f-%&^ns)o{{Yp-UmGg-}6q8n7(znBOvmNlY4>fT z3`M~aP3mSpEoFiiHEp|1{Bxt?iOHI((q5~}Fkx2B$@{K4vu7fCJ@Gf3;3E_o`5Lad2(WJ#xNMFw)i;OggaGs z4*&IKI!^V47di{paWocDP8yrU3LdMks7sK&^i9B%@f1{0t9!@aF29D?453C#K2q%f zWvrqb0NX-wE+n2<7a$bXEIHEs4b4>hjP)XyIE0%snk_hkM=u3KgOCHUFLUR3K~1ln z2V`CTys4&v8`ssBLOepGl@8q-^vrRX{;){bXRBxGF-)XBgvL6#DQxKMTZzDDwFA?IqKdcKvt zn3A(m!s>SjqoQj~X^7*87labf&)D{(_yFNk9kg1r#D#eQfX`?5s1vZ%v!{oQc7<+m z0yf`rxM#6MOJ9Tb*dn4tqF9V60O0uNOdMD}xWJo){<<rSolbGc7vZe?w#j*{B~+igZ^^h#C=Y`7ewjs zSS8IONyVZ4Zy6)Xb~}O(SZVO*jH+pW+-$@hHhY=mtjP0#14hwc2?J&vj*wn!XGSIJERMfr-fHZXo|8omj3ED!;z= zG?%%&ey^4Aq{knwyg7MiRrnftRHoS?ah`+u{KZXW{z44ZUnQdMS%1Vts8mhdB>f2# zcqjR=;M!HY{aSMDUgnHLTl3C}6j9TUIsGM1N~GD>F;v*js02|~?^jz?75 zhNUfF)SIAMq|E+AL!gBNOIN5fPnC(F)+atwFmq$a=aPl*MK`77{pI;rpsXwWR66)* zedVw)D9DB2inXpvJy>|9v3uUErvw&h_$kygws_8Xn5Kbw7MsDH@dInp>e|m9Dtli) z4ptI4;`l;se8E4Z9kwgA8L~$7uc^yOK$pCSd6o2dcq#sHU*@ARM<3ITJ-Yv-P`>u2 z5RN=ukBS@kx|2XfivAiJOTK#_Ea>`a4rY`mff=Cvn~GjS=glLsPaJkA#k^ww4um2| zKvz`cj9Rx`zuCHM^z19+ORR}#ZjKMuD$_&8tb?8da)Izq3y&`-Eq$upvqzw&%_r|G z+5K=S!M!&S_Y|EBy5hfybR1)E%p!MC7y}Ex9r1RDt~-2SgV$fMqbamMXwRuP;}x3A z8T8;gNSQwHs|_Un+t*O)!X1)M_vA&zE3qR7%II;#j+M+MjlQC?b9Ux;@!GZ*4S z`jZG_X1O<oCwFUa+ zaPJd2>lJaaWqNqzQs#aNFLy&%+DZkY?p0B$apm~eaJaZw%AuFD;o1-`C;2ywZqt%a zm`g`;hd@lT$~vkTsIQ^RXBDub#&`)27-FM5RxVzdF_svoy|jD?Br)YjTKj*G{PZ@M z`6+$|=4 zplsa{VG)wF(Iv{gXa2QBBi)BuXyD>-35TZ?b)~fZ6}l1u7uP%`6eaeD*qyLH=|?Rj zgY!J*CbxToX*1MTn0gi+(s{5bl86$UMfP{}JUMkbL~~Mg{c6^cr7%va#%`51zPZv66abSWCzTmW zJRI8P7=|4hC)uA}xjPG{0#HaL^uI<`h=Jq_Xy! z{x1L{_zy+%0xRVAgWl_ewH__ z(t5*O@$Q>n=8}jcPQd)}##lY)Qzck33)=(8etpg}eFiShL70J3ukV zE6&%fMPL9xTF$M@2N|56@pn1D?dw@SR49J&q2Uw;R}5YUmQMn zlIdQF5a-_TP_36n)QJdjkt$9u$YcqYxe3cw3-1=#$;mgowSfiY`8Q7Nh0+f%!>f@R zGgCUgFCUP63a((+Prh5uQx2d97w?4!>1YVC-d-u&38{F9)d7mn<{YMLvnS2UGxDK7|-*4tU=_s5^ zR$_y4Bm@mpQoj_(j0w_N7{>o6Y@4*tPin`@p;HpC);k)us1J_gA$J0{_blrl9j6 z>MvYRdGX_7Z0Q)nac~V`Y^oe;B%Iv7SyH2TWk^djSk~DQWelfB7=RVY>KJbqkQa3$ z&ZJ4ESl7Ky&|AXb;Ld+RM}Z)9gXp8aA86lEV+$t6gzhH!GOje?`Tlrr(B-*IEqO!T z!8cdE-wAE>@I|vRRlzL*o;7olM@%b#sMK5~0B-t`e38Xn~FcTu|O zlaVW}S*NMcBbj0*r9% z?X07^yP`mdySsj-60eYtV`2=iLEp6Z%(X_ecjO&`SZk88#(`E9s3oP%|6eaF~JH?_9rRH|ME=BxEi6U6Ji&F4bd~(FbHT^ z)$6k>Y}makIwmv7PrNnxs|p|(elAxLq=2tecBDOcxvPD<(u7Nl7!*b%&Z7ED(I;>G zJ}>FNFN;!xep|Yh?~$keekL=#`>3#Ba~-$obzSZ`hF=zfRk@&Rrp{FFSJXgje2Vh% zoT2_*F2=Z(oiaE#U*X@a9~>GpyT>LFr1vUUhP6u<9Ok7E`ZhvxbVu{c!--3=Reel` zowz`W5?Ltnq;=`bu*d0}C!~hmAp;FPxUj{KmEiRYABg&0XA%373l9rb#%hW0<(cV5 zFvItT+Uf2TFJA|vD8eA0RP;mbOUtGL6>EnsTV&Cyy!BP%uc9`qgNxzwQIdJC8E4 zw01Di{e+57D33;E%hc14{(}{P_oy9x3$=TkM`cbA;Yi!`zVlCdl`=w#>)tGg-#jHk zyK4Ai2oWkQGr2()0xJjgH4zxS?+(3A4Wh#N?If){%u`(f^g!*)g=gEWLR0P80Cx2$ zhxI+-&!GG!0(WEDJx)^paBKx|>U|MpY7t-2Ug0AgSHb_g5w_r>~{gTr57E+nmxj@oAc~QL#I{ zK9CQ#Gp#z%9#$9^cnTdTg>e3{?dHk!;ut$Gu$JmYl&=>W53+&S!cqmQ5YKaExWx`A zjUrWXs#UocTw_I-N7rY;-bu}cVVOQxNZo3sMEwsA1FE4hpmXQ6Aj*jC`x@epRZHnwrtt zPptG{uG+L8!${)(BiFPibONcx)CeS~>7C%N3Xut(cDNhCZ>DQ>=A7f7s`1JDo_P%y z5b-)=3Uxlu9o>K>sEYK6(oXc&MWlCS#RXqGFku`5NrM2>{UbtiJeEj!C97b$TA%_fj%}*UD_2y>QVH(fAP0crttQRc603If*BGMSS=v>{JA(qm~VT_@k5AEo1#9 zY4zf7>Yt87ia}mR2&ePq2(61{4JM0CpS2D)-)`HM^Fx^Bd|bP@3Sg81I}F1?>#UKS z_rLY-)&$>0utF{+9~hS?x-_c)kemoE9;ujo_U2gI$+rLa6Y%~UK7htI?<6cjqFG=c z=TuvQPb3kT}gZ=Uek6w^P=F1`WHQMIAI^;&zQtJ#$#EwNX><-1S6 zqdmD-$MBu_EvA#ZlNFTpVUo8B8A@tlyroILC~o*VwQqX)>zlBJPJ{S??2>X3m7EF& z#%cy?VpInfK*rd>b$E+N_!v<)6yJ<47Z3IUW?DfGcS3ihA#_eTysT-Vy*@0yb7RjX zNO8YrF5cPCq%Io~AsI|%nAr5cIPH6y^EXfDgD*bzvcgS2zxK_-JPq9bVh0#J3A1eM z{SQGNu2;gl3514E>i^GGVYr>mn?%wgmh zAT#vL$kVC!X@mG)9K=R82c-Ta0$K#iRx@Nj|$ zFza*dwT!(IpWqZ5j#c7ru_;E~{1+BJM&E|zykm4^g2Z@_IrsQ53UUXCO=gUtNV+Vq zxakZ_Qp4a8WKeS{Q}y!?VGpfT<&ybsBkR;+^@Y}W%t@AnYiOXVt` zP2bmE`t9?3F-*4MwVs_VEh3$v6pn$xd2@=526-cyE6FnikP4Im7(7yhqcZ3MR?rv>-hEFrw1>mAas@-y7y( z1c#xJ2ax9&k=Q$AU|JXizk9UqFbDi{a@t8PuE?JM7plBkRT&i0X-D^*Kj%d@ZKq2K z7eoFsf)eVivNt!Ds%d z&syKA{0hE6Dt&IC$XAwvSgROsK1aD0ngEe*t!rCEqomc``Y?=KMT zx5^)|$m=v4F{3<4NWMQ+k#OrJcejA~A=GO`IeRhquoXE}FYt~S;8wZ4xazjTsC=FX z;s4p|B8OHVJbRa!n-C?Nl*=0vcP88&gEoF_B5gN5{RQVWq)ecj%mvFyWiNyC?ec#< z%QWkr=_Wv}l_6 zhKNb?NQ*dt4&np5iued%vC291v$88GWIyKmn~+q)(;ZKyoQ!jN`m1Vj!T6-W)j>Xo z$ipv&XOc6IrSZ~qYsmc*oncHr8WlVfwA-4`=CY28tF32c8OQaCM|lC9AmNsOh_GOV&V6f$$PIOCS;pBFZ5_J#>MO(8wkv{R=GJBHqq>g%{cDN zc8hWui9t^!_12jTb~R{n*<~lXm4ePFaB|H1T~jmn#|q~Gept>+{R^ACl1(@6#>v@# z0wgRH;M;%YTq1dtAZClH#q{`t+^+l7l-nxT4nXPu9X~R8pH=&SV;XIA60)pprDeFR zw3`IRz$8F#W@vC>aixy6l!y0c1M>XTt9jgEiP+k+JjBpeD!$CZRB8bGJ*}$hoqx+k z9Ml5%C)Z=}zTjC(Ivu-I*h2bGcJEc*UBZiLCU&halMohU{GBhFO4q)DhG2x&q_g^n z&J?5TsC!^3dF(jRAomsbyaqp3^Y$h^CB&$&H!@A68mX9t$` z86aX41 z>FFfYO>H&*vH!O)qx%2jHUEgM58PQMuuP^r3!PyyC78^||686>U@}>fw&IAojs>u* z#J2w4`&X>0c&qxXZm>@@nYU#ph`KJqrj^bekvnP0ID&&T9ND^<5$q#?%?l+G#a{Th z9smxL@qRoc_{W7GVyEG2U}f98fo1wfnY6Y$x%_8#oY7^jJVv5`C>mgkO>%61*UeI; zOEY;15T(T9Qx+Q4OW=NmiE?27=dA+RHMq99$s6mQl32|DUz%br4f%=1c&q4%ncb`( z7C>-u>x@g~3NtFwu_ps0<|4ZGcD_r4IgV)9@b|3`>CEjT3r|NsnH$MjIm8yz_4?Wx zu3p}3jILd89z~xUEf9e3DAUaV-hV&hq%1g#0wuu#4M&_*FP^HHuTHQhwAKAxqA68< z$9)ft=J}|0v&)0cc@DBiCnJ#Z+jndG5@clFMtC~NRsRqy81AHylS*i^jJfCd&v|0@ zX8lf)M|H!sv!2hU_kGX)a!fK&7h$=$cyS_&;yMq)w;#;W5!M_J>0k8TC*gJ28iG957)>hre)4=4GMtQ zm0*LpuD~6o9oI?}-Kmw%*3aX9@>eMxlq;L|R#b-y4d`kx&?l32D0uaS-x0AK{pOUZZEh40K z*GS)HRR}A2)G!7p4hPlW_WSDdAD{eYnS*9Bz^;z3z4ei3fDsT>B3x;t#^0hS7ad_u zFL|g8(bl2|tvfRiwM%991nD9`feuQZ^`tZCRXh{$vD=?h9tJ)UdQU+xI=`3wgk{^& zu(D8i0oRk|8p$x6WKs;TkN+|G_K?;Bn6!u2WfkpjENx>YA3&SF%0HE3mb6uVche-` zA6x?{(snv&M`twNyyY}>OJOf0DHk_oTC2%U87>6d`@l+`j#>%Wa`iRI4bx?bzt0#o z|Aad4vxW{#r+%_|th4Agbm}m<*TvdX4Mx15kfuRYD@p#&MGeAC^Wv8F(^MUfZUtkm zr1sR8w7g3^+=Cg=oZxN}=CU(~c{fHP0`ugbo=E-R%7xk>8pago4_OAlQ{vO;{-=L&!pulg*0R_H%;A zqb_QVj2t&mL~-3X_sbFqDugJcC*_JeogeJyZs=GMoy=_h`p!RLy_ye1Ima2y8`r`! zWT~E2^h4aBfmVSE9%HRgV1d11aJ!RgVVDVe_NdV=I< zJDVcLNkAAUiE-RDbwwvycMWZqe#ch_{slau|NR^+*HRihSJO zYLg?|&27Ch>Fw1woMO_bggOdK%5$u`vuH}5n&UE(reBc>DI6r;>a)o;lH)5b8KV3e zIIw9H?E&+;GV{D*F_%^bnWdSK?r;g$xBIq?YLi)nwKIz8?oO$ z^Y+JAM{oR+ax|*s_EzP>AnIz+DoTAXTf`AL9N_xNYiBj@br_RU2CAZGDN4~@h{EYV zK}VI;?KSwc_bT3Hi^cA?(*gjDZGI|7HVaA7LJlHzYs;f=0hHg6)~??NR$Y0|{_3*w zdBCftgHt@`0T~*s?eYwXe+Q>_3;RCl=!1`!)OT%qyz@e0Z=wDs|XtqzUG_4pfusxO^MO zB^tZURH)EwY{*}RK@X}mZm*nk^L(q0729Z$#;lKu7w9W$x$k`C)n z8_+7fy*rKFz8gCf7-2TqiYBBJmYyhS&VCGZNG^f!Rz_y1Sl3ovFtYU{TRy;jNwO%y z4Nph(o=%u7?={yt2nSbp+5xKua5(=7_`;h2kxk$f|J!}V&0UDCDYMs!;xB-LBmFs4?ED!?7#0tHK_aCItj>Qol1qjZm)XBNyhAq zBw8lrg}oxEvtK{QvnaMKr|KP>I2GPL$*|v<4hv4;iCN;DI{3b1uka*7f3M!#HFjiG z5snpnUzy32ecImp`?&Cy!W$*($^FLN`dsW;k58NVEF;5i?puxRY!R?yn=D^p9>5CA z7xx6l2F?BG?7zelC9Gq=|27CSH|+o9k2p-jC)sOsjkvGic2_Gy%#o|872-0MnyL)) zb;*dbpZi(IB&Q+C=4yFI6U-k9-F7(hQSiru@Y>+9?{m{Vdo}N-=^OufGkau@c5MQRR`w3{P~Gn9 zM5t7^s#yu+R#|<(Q+N?ICbE#eM03l|<$x5=3=ndyD@gF-&*eLJEym|QLW`O+=i&C2 zYc0vyHn6jYmd)bLl(#L14Cxu>*;GIOnnE$dgUw!CX7}*o!N=KxaLcainWSMgEHJlm z`pjT1xfb^#5j9QAku@(p4Mc``ZMyIwAH+fn2RAmCPnrjMnU&FyJuY`=KF8}7{)nf{ z&XWmP;#V@%T0hnT82b@H_504A4G&Lw76CL{Ix&3iSvk1psbWXB!TV6Lj}xbWC|%pP zbOde4(f1PhC8?xJD6A2f#guHkZe=Mk7SX&ZS-!s~S@`bd&A}?L^lB3Gvhdben*NS5 zwD8wPu$A^j8+K2g&j7oxj_u;bZ&%{f01xVKNN(sSUtNV9hsnhfc>TT`GrvwP!QYKQ zE80QOX^s2Bi^nXY)bhf4&0yV;n&IENFkFLm1@t4Ut5WlcQfI@IxE*r}LCQjM8Dzw5 z!RiE*3r8Cp$FL63``5&W;-*Rswi}WZ&M-&kmZ|FFlJngCZPRk`fq?vosr%9FrvUDG zCAa>q@&QVZNB%wEGQ?l;k}R7gF}-Tmz0bgO0n)QQa>>~DlWe4x6tzp*#Ta`=H)`Xly{k|m1WEpwM{piu21 zTi}D?#I?zpl!|Yj1Q+wrm1O19lDbE=p+^vjvtF*DjcQBj4bNB>Op>0Tj!I1CzOFIN zfz1{6i?}tXH8hY`Ubl0wZ-;ay^biisd|7*4J)Pd!)5^1mMM!g%tS>b$lw4O4n@2py z^bhjET#Zpb=46Pv?&_g9$WI!Y<_b)l(v;g|oc}=_WQFcQPn0I)Rs}?Yx0{Jw>es!k zACKwb4)QB6vqLY5KM$Q<2uH{XL9d@M9{0+|FbGz2>0VZH9n-}-mF7(PcnyA@vlvA-ZOZL+UM z9YfTOwl95GqkJZ53#&;IGiV=F+IPB4uRb{7gm;Goz;#3s=-o(Lv6!Th-V+0w8c59N z-PE@_HH{15jrO|!l={Wqyo+GgWTm%(pu= z@8fU!w4)_DoBOiu&1e5xtT9%7+2kTV&CfNxYngIScgz$UWQhW7myWm={_QAfvh&4#ax_Duv#;tj1 z1pFhJaxN)#Zm<3|{w4B7vvHrDT^N72q{d&6KO9|w^3F+X0p%!^W>Rxt=XF%ov9CpQ zgCt7wpc+TeVVP4(jXj`XwU+sLeI2V7k!XHh( z!b!2_H!l*cFDzE<)p|n|@i}&o#aG@FG)M2mr2@AA8ztc1gGlg);D7+FoRHf)VXt0H zEIhQ~ZKV>wZR$x7VEqhDK4{{hv4GX@K<$S>l@bSTne8t{kmMmyYft>>q#xupDClh^0l=oZ{tPu8XlDxHP3QeeGpz#a?6`&zh1AM;!P!#0^O+>bcrbNV;iq}T?{=c;#k&NrK3px6s_p{i`PcEBoB z;unHm`vyHB|Dj(JJaobbEBOoFTW2&4(40RlxGG2wbGmqO=}_yATh@qxFkse>n|g3u zXlW+qK(zRxtz%4UUdme&6~Hh%&-wkvg*IogD63-8pZ`l6jn(C2Wn`Xd)$a)eqpTQZ zc=UzIyfrK{y59r~3?)6&M%;fT=U`nO2h#+PAIz5LwIEvWy-1w4{$Z6n#!mZ8- zRq5tvr>VRO4WO7I(-{*WX|e`Y?DV2~>_jvUR=ujF?_fM(Qc%ak|G3B;3c$}5B*$|} zSnT<+JVQq8mY28@B_jDiEoZD_LpbP`xRXF4qt{r@iVkLqdT}A#vL*r$qx8e1@$Vdd}$YkYbpd|P=+$^?p1Q+P`i!@Rm2zG^iIH(v1_3lr{ z!Wo?iOGc2|oLFsI4(~hf3X@R6M}?xDqiRrtXa^j5BnS680Tey5ARNHvjZb76qT-!RzFgo*9`^nskuO( z)&CKR)X$Q)Nb3t3@!VARDx<6hqE57}{68BZtN$N}`S(GCqs|>?0WmBT=Gy->dsz_7 zrT>wa#F@-1c3=JXh+hYPa!P8K@$pQ26E?#dj9Ma<&y;IzO&z`EY>cQh?rJ}EV5OfD zg~OLQDuHbs+fOd-47vt!j}BEAuWbz8_f-nLRG>VN06Z~_Ug#YM%;w?!xm4bjSQzcP z232af;Lp%Qlg85rMVV*CA8-q+KYKI}(A2gK`Z33&ZOb0?U%ZgEmJPTgo!3LE>m7~*q0?+W2SA%A69#VfALJ} zk7%(Wm2NITvBzl$kp`=B!HY+UninDE{n^+QVwbA>wpG*oD~kVMIDGXJW9Ux@&ai5I z*>F4Zi$`!b2Ht=r1{l!^>-9VN;5Fcu6^b-ys5FFrpP|uPD>axr(z&CLd6`WIO(I5j zV)<$34eLhU3v)mJpmrF(Y4wu`iD^SmR*|~J()bH61oOES^?3t*Y-+zm(|STHOM)TZ zk+`ZOWd(NJ-I|vbg?U^*QzktogUX6BI!}Mvp|O^b)k|GW%2(f~e@hPcb}Nz45SZs) zADs1ze4lP2?}Szdv2)X(tv{Z&2{t;S4`Cx)eiS`HoJ`2_{N``R10@Sqy}w8X+<=4Lo(O{ zw%&MgSWf<}af(bt(jvCBEff4c%AV-)d|_1bKPPt*-CtdEuruCP|V4*Yv1fh z%!#s%qsDv2YU>4gbLzofo3At{=3I8We;g{fBLW)6qFyy?&h5_X7SK9eN=!@Dd_RTG z-gX>Iihx7O)2l_UzAj^+baTXVxJo}EWdBQA4W=+E25V*XQclBtu0#n-`Ycu{wkd*7 zf3iqM{9Mm!ZGBKGmG3naf@Wlhzh#F=%^#ht>CY+F(s5ykqj-)VNQa{srP^zk10Q=f zgQzc<_ITM9c2bT&tAta&$X|b9)}X;@}vM&DkD9W_BZO z!)i~z#!<)|!>`-6&2BV^S(N+^=CqT~*LT{DojaU{a~}IxjG;Hr2jvxQK)}dQgRVR0?w#dxf>XVpt zZG8E*z#`)#tYJeW=TZ#lX`NP557EvlZ9AZ0%S)_4AbkpfHQ4OR;c3q+;U8OPL`t07 z*?yS6?+e;{dH-f81WC+%ttRyW?>QtoY`Z@C49@F-_fp~1o4QG4GGa~b2_waKf{N#E z#2lGj7qz2}K*c~|E@fJgg|aZjE`$CRF+y(T^P9BY7_yUb(KSaz#`)jF%;pG!7QOSr zFDT6A{^wAmcP--iRzCqSH?U%I*JK*>$@x#FXbb7(pkm2UsnG6iai?F-;G;2?!)Bp9 z&~dzEjn#rsmlqQQ7IxsZ_fWBQW(n&a}$O{vbL?Cd;{ zm7{GzWf;*de;VXPc>f_+8z-w=G5fYm3$Sv?2&+&Ez4k@@(6(gr+ofp;uT}f@gM~J| zP+5O;NzV_N$bh&7ugrTp3Ae?Ke~HdLXH@sz+c9^&x<+G<#UHfna>$G(wB(T6kwFu2cFvOlql{b6|f(f4_;kPq9VrR|#{=SR67o z-Frx}c6*?8NPr1?S;Ag_W5`&k`-@iG_6BhAdE&_9h+ZgPiC@Sj)EgzUei@18T4VWT zCuqrYhkCQ*A|i{HA{p^Rn++w7e28gCO>#D={r9LZ7pYR6S0I=Y^U5-40wwF>Zy_eD zblW#zzojxea2ln8{EA8J25v^|Aq4gAky0kOe^Hutjr&7Besl{PsT~b6{ew7M_0N@C z)`~izkxdBrbEe9_M?z9UmaBTd!}JUL+iM5EmLXI0`WrvxAErQ~b6=W$#>$?G3?NT{ zd+rH)`ph-852(4p)^BE6ovGA%MA(_t)8`9ja>*x)jctwM15doweVIR1Uy}yDHQTHHFR&o5eltd6}KXzW^{gFdBg-77rH)Hy{(_jtBk~1$T|M` zChwMig6G(da~qqvg|zc4cMQ$3&X# zM$$T-sMNc}!x_uu5mrH}R z{^N&DTxzAh7I_YDyX@C1pAyc(=(EyYnAS|~`lqvHXph`x ziRug1#cL9N!4u;l>zk53TX;r(+u)4Kf+3i_%}jH?L2@+f8s2+P0My1a-`DrQ@$~=4 z)LS?-*|zWF15`u_6=?*6P!W)Bun{Ry>6l1&H`@pWl@bw<9EgH+HyhnCdi3bg1I8F^ zZ2Rqb-uL}}e)oTH-Pd*2ah~UK^xXf80dJHiB*UU?)A`jrGH);+?EA$xa$cUs&*lt+{*RSEK?G8OTwlc&XQi79~i;6w3Np_#07%*~j z)Z8*ng=Y##mQ`B1eCu^u@XSKDz83{Ts!=WB0K zcYe)Z6+LyU<)?4o-MRdmi7UTv$@Q?SdPR4bBO9{o>$oc(shsp&xyf8EJXkSJS9iN} zDC2$OrE5YiZa+@2qq98Sx(+8B=FK?W*#}$j-KmA4&m;UUy?%GUsye{`#JHV&KnFHn zH`H$q46tCBbp!u$gR=a1j`ZT1!;>B=JpOfl?B2IGB)6?4*6EDPH>LxnMZQ8^1;u{S zUNT~Ullq(S#{Fs<7dyNwV^SU{FjzdcNwCdyS^HYN0(rU(Pbc2~Og_iEKR!~qoRCER1 zigE)S&b6|(gwPWO!>ZC?$5jTv>45IQSSZmX#+iF%UJgbx%AopDg3v>1nEY-v*Em)? zUj*inW@&NZjEEm}zpA=;?vh132y?|v`;IPveIyU;lVj=;cTXcB)JNy!eWv2S6T5&r z%hrPP<_hBQo>PL-Y61f)qOV?!g9qU5EkrtpwvH(bcN?&52jNWZWrnWaM;rM1~`n zDV+1SThrs;RVhiopmm)X%C1h5w2yUx(U(-ok>t9gJFL1z1@Nz>Fp3Jlg0Mb|$aL_F zNh3FZo1{j%U}#XopFNR{029tFT!pQ(`F$lQAz0)4fNZUcw+a4WN&s|~;B$0t%{6Ak zaIQ35OlN)dSM(P5Qz_Mal$u}tB(%8j^qDw+B-CiT{FWLE4}0r3b!|rKLf7U8rcsCQ zJzoY+lW|QQDEnJj{2tZ-@O1d`xq)Eic={s^^qU{r7P6Z;wETch@<$)r3q^qoHJARJ zS*bi01MAbMdSj>YVo%(y2WcXlh6iU6GC!6@xJ^FPk+XEgPoEN4yZBLxFG}2I$=4U0 z=}xT3aAQs-zp;a8(g)5vQPp_TWCM2(#Wn`^OYJG*>hfG|Ue^L0J>ia5LlIPaAJF5o}=+8)P)_DbTAkeLfI5GR4Y6uS8CnP!>#FNq#t$qHku{M%G0w+B~h4SXNQ&t&d(3aoZ=2KSL$v=iqAuXVT5CdrMX&HYpO~h!t^*=Dn3N%6I&xUO3dQM?@jp&Rp z2eTS0MlWa&CWzeP}AlPkhyr(Al;)m}i( zsno{#-pXsbeRkIxglQgzgY`uI(Jt7Gju||o9bikUZ(-PCn@8k1)b_2*2Q|Y=To_=Jx35Q1aJEO*QKHR0k zc`AW5gMR1E=voe>`k1NLZY2S$2iT!EL~s6zeflZF(AR9`;Y zm6mhonms9^JeI@dEH={Ab1_N@!})9F;nAL(PbxGns`f z7j-F;LZ9R1F~Bv$x)O+WNYar*lW}JwEO}9t)6?*I;AZBaAXD4-vxlX_5!a&(ztvzC za9jpz293HhW~0e(=R>D*2dh;ZeZWa-a)J<#W0PY-255@7X?))_Z>X?Gy0iW(7U_v1PIn?T$Cfu_uQC4nHv3JHBmBg%c!i`UKpw_+ppOj zAwl2ZmcvP~hxb0^x^4^0TRWYPyt?39=)kce!aL=>lx_y{ zfB#_i{gs^dJrl3Z=3=>Frs0`^yQNnPUd4)DmlM>tauB9rRuy2N=Aqa*C&ss%&0(Qs zPKZHcgcS4@B|Q7<_igG}3E93zu`LgyL^w(9MbBPmzlq#o{vdt1U&^P8Z?eZ>zuvbD z-@{utO>77d?J{gHx9ujJa{PrNT~Y~O3*lj$|LTm~HF7b9^lyZUUSOJ!&wjYs6g zJbW)gs@Arn!E9hKyyE1_eR{~>L%p@{O@NE-7S37a8;{mL{%L}n46G)G@tCu4y)t5}*{J9Y@2oaH`^#_8&PQl(UL6mb zokKdXuZ;16jU=DLL0tzY8yua*PG&Tv&9DtvFX-9jgL4{0w3NW>R^YIiApBM%x+he? zx?_0JC9owT_%K;_Yp){}`Mg$86Y|AJZ#a{!!Eb-ticxK6A5MpLc4~!xA+k=<%AB za7*6&``}$Yw4!f?9Vna*GH-hmVAz})eRFFX3hS22-VVtl#w6}bK{1vcfjSSX_0w&nigH1-J2sy79O8c#(Nt2Asy@KS ztZ;`n> zD{qo&o$JEXd#g7li@Gy?ZZ+Fzr-f~^blsY?>i_7^y;K`(9(=Y*UvBH_2fA#SvH=FT{QLC-O!3 z{py6~asTZD3oE>R38ODxaGk^JmBkAH;qj~#XuiV>Moz4>aqqtu9&+xTP2?v_j7sm> zZcX5B*So3=g2@@p5HT#b=V_@%jh?$`(Xs#(l%%PAP!cezX|?1iwH4hOU>fdeDPaIWo_F@qzq1Gd{^HglrZ=(o6bjQT|3 zQz$t~8G{T|d~fs#0w15BzcZ@u4sa5CugE^gFu@x+$U(kfrJPh&W+-bYyza#?nbdJHC4B zFEzQ+SM6Mzf!@2iBTjVESq;vP`Z#sfJ9zZa7#FHCTk6=n(9Y9Bm7Dzh`nAcWM?xN# z28^QU0CA&NC$!lBWUr_tsr+*gd&v*fB2pQ@P$^{QCjG^o6mr(K1?84_PbO?f_;unb zPH~W?5x`FSpYU^a!sSZ+piligZ*dC#x&f#9rE*IZ#6CDYjc=veF!qFoNjgtY1mcpuYL9Suz2 z-+D2mgJ#+ue6v=PKVw;uc_EqJKk9s&a({x8i-qHI*_%LIvuWD#pOAOkFQ;Gc=?B|j z^BZ-iKOF|71mD@Nd5kA}Dal$hsjqhSk(1o<#L3wS#F{e&(`QGz-{2&YEY{J?PaYp% zfnYafhNavxPCq}4q|B1Yn9LP5>UfdO zl;nAqq=(Lak7M}Hcqir^Zb55mUKhH-<4vTaMxV(3T77%~H?Q!v{-)5QR~Usa@g`@T zS}7JtCWKB*K7M(QoHQfYY*YOWouLyj#+A6YTPz?)nQL?av!J16-;Ort=oWSl$&O4E zz~$R1A1D5be=^~?l+esHWu$zAH<6{Mj=tv`)uJ_*u+ne;s(sI8YxmhO_<>G(vVpRH z<4$@kJ&o^V{%i;QY!^!p*@nU-Eh~4A?(O1B*CRQuv(Lt|VF9lQNubTeB z`{~L+Zz@6QO{2KkTgfRFDgiub$ZB#~^tcD$j-M^0+H zZ;ZwP6NS;xJ{-PfNyAw+U#8TxOSQpo1cKIaG)3?g``x|e;cULUBLt`*xI-3OO0M*L zcjiT(Yx(tozMAGT*-LZM3(-(^_Kllrtp$g59oI_k*>kqw=wATUShkstk)Z>phgE7r zp!krC(s}wEyhPjjCd2?}6cnYpJ}P9 zT%n1x-2^xVUG^c+O^b2Ah11G2+u@hoAa~kiC8U&X(2^d&3n;5&5N_j3{kg|2qcr#P ztM=`GU31nGnnXrJ1hyNQ(i|k{?zpYQ9p8IU@!B-H&GAclid^vK`ZW!=27Uw8rkv7J zMq#Nu<(1Atkb``)h)qfaMET4wY(M^(`TGuq^95KlJtwIg&0cRMDr(f{@lzCEax zGxJ0?c8$U@IE63a`ip@yk$+sI#G^0t4RZO^%4#k9Tigl=)GAihV&{*sg7O~tOnj)s zq2RTu)4pY{!hpLo69P6X{ zQAI#B{sY%s;o!=l>+-Cysxl|y``W_ky$9d|DhKd1Or`RNVWv>Fvj7JGFsH7n`cTrJ zH~CPPs!j>e31tjn;q&I1n3YXh%y;yyBhM8CqQ742*OO?cX!->H6K$`% zuU$md1;Gv};`VuBF);q}*g}Syc6LY=q!|-jvTqN& z=$gsj6dZW>=EO9X_oP2wapNb_A!udtG-4+}Qg@x-q3RmqIO!`!Vl(#5;JeqVs-#ji zp(e__+JZtMcsg%!HS8PP`2xw!lG)nnm)~^_Q3a$J$cxf2hho z)LwE{dH2~Vjg(qSIR#4jMoFXuQv4|(iUY+_)!S)H#q&~T!G#jFT3Zx!oEnR%+hr#M z0YxLNU_7%G_bt>mq}D#L?HB^S;9ufo+Kca=%qfN1Ns3CpI1={UnYY>@8y?MfS9^QL zWQatrKf{e&y_Zq!s$JAdLsPKmO>C(-{yfs18BjWH`?5Tt)OyNcSGY2bLj8Q8Q5X&9OT-LYvL%oZ*AOp zIM4qoGnn1`;d~#T3x0*)SMA!uMqE_$t?!<3G^*4@24uNqnBW7C{lP#Ik$4QB(s4sU zU5w*)nUN#kuNqJS8_ClLqDc4q9H+nXqf1ImFZq0D+$XSpF4b)LzUDGvOG&6cn!7U8 z*~ny^^z1Kc%3eS89K}k49`AWO>@NTF;4g+20c?QhWZ>;T0oIMn$p?auE>PtcXyIPi zB`Hsag^v+s+e5`4@rgHXp$xPoOVoN8QPSFNfflUG2g>^aLcR~|&z5}XxjsbpuCVar zsQR|Y#>SgS7#~yxnpbzGC_Iwhe~;;xG{B7Pq^Ithsr0Pz3d=x-eO`(YWbg|XcMK2` zRDq6g^>82m7y9o*pHe0C6#mk*&<;z)|Hn`t(QbTjih)POHTTEAN{IP9VaxllOf*tf zVfuTGhAAxgLG98$SLBiS;>=hhzY=)J7K40{aqL> z7m6Ol_O`a9d??ECT%GT|f>VtPILhWABV_Spr2)1JR361(H4Y~^_@zDsuqneg#`RJj z6d7KO^up($Wn$@C!i? zSKt-YPnSr+JNgviKVzq*)gCWWBh(R)JoOam)KZb_3>Ds5Y^?eL;J2^^;OJYBYqIkk zuko{|Sxo`2strnqq8=P&D_o?iZu&a)EjxpyQcp-oOfNd!VawVJII0W3W*eTNa6F+` zGjc(OE`;Um2hHohRGL?+pFN#b;I#~Bkk+W%n@jZ>96qNDqZ;3S8hjx$q@RrcWP4<` zjF(9LX-JDE2>;V!#TY(?2bEQ-zCa#X`hZH28hY#y@HMSIZL7or91ZO^^qqq@)M|B0 zTqdFl`5P)?I7PqIMa$?1$?Sag z>qZ5Ivt=*CzSF|$vV)B=0*lVvk9zRm+1^huGv{8Sw|7au-6WFL5<80y_!6qMG2YSI zaZ~NV);wbMb9H6u)i92Ro01EfKJ<)*)ta$O8`eX5ik>f8_dU6V-KIaW59X`AU`4EF zj4*yftq8VzzePr|Pu@LYP!ygwn2@e0?A-O4jvSQ%CSxJImA`it&dT3N*{(Hw>$gn# z;qRjQ7YON;LVM;j$h6-H7!Nl>MFk1k9o^xHO~I36GUcK=zzmn8xn z{_xBmfMB#Iz>B9TW>Gy{{?YVVZj0qUte&6O6~NrAMlsb9c6GR1(|(#%&@6OVI_&mj zg`2#R(cAl>+-TG2szk2Z57NE<0q5!p3b<|&Z*q~u>J2tX38J?p>75>=l) z#P@-p#cCp->Y#cHS&+aSUr7eenP>Uoy$7Ag@@B&x=Z_Rr-?$##f6d6puBor9HV?jh z7C>-lN4-6v`vQRBd z-mH*ngb>IW0{&ZX(9HgT5E(Lr#@$ZMwt(W_Ro3TFqVj#<$l1~=*{m;quezHCZ3&6B z&%M0V{UuYEHk?=7YNoXB{XuwocyW6iKX$MfHyiewWS_^J#a61`*8UUcCZKnR+x*$b zbu0L#){lHJ@wTN=kiOoWJUTP#Mnh6}>Yr96!wh~CP3+%0Xk826Rjpa23qS8F?GvsJ zhM#Um5@mz7eI#ff{QcQZL-s1%vO%~OZWZLSwfStwey;`nyj=>h|4ywdGSl~{21m6Fz0|cbgRZ(e6S{tPI z)ObT<9TCUsJw-<)c&%=W`m!j4$%eqgN2%|EM8`R9E?5K*3=_?Mm!pnvZs^HXtBHnQ zHe`3To+L=mne>;nH7XU5Z-vSj;SmEa@&v!*?F9O1q5(7^kBg5lQBPc*?rm!)F6P$f zCW_YclpXcx5mVhm)bI67`qP_EXS>D70KQIHYR^1R7{w$D_O{8pX5dMIDZHQ?y^+l~ zOV(4G!O7@(v195<25ug#7oxMgGn(7;1PC3n5rRo3fD zU0)c9CGt%KhgOAM=FPAUK`=5dmt&{pP`}a^w~>KelPr~XE~tXl2lrl5@!7Px?W7yo zkQ|LJnGIRf*?BRW(}IX-ol)xSnG8QdiYG>GFLY@x!0y4IG3{2b^nTsst7HG;=p7H6 zaF`}a>QFitlSPRKU#srr%qZl5z6@)F3E!?X5ZAz z&2!cwWs;WuVlKId2WDnSefy7_yLr83dD~ax>ii|(_|`5^LAdSZ+JTbt)#omfmruG; zVyz~BUQTS9H@YbO63>H)^|K%9$d4fW3)Xv@# z^fZ)y{uQ?31?bOmW8ro!yBzf_!z`u)-XpQv-N z!4?GsG&x4A16732>-)(ysAv--cwc>-UO0^*DbKikbE#R79+LR-Inu~FW=__)*|&qZ zI?^4w2JeF>!b`T+NM6)6)oIT!P{yx4{=d9VTbzuk>*VI$9)pbp!F17$dUTM5Wm zN3G?s=CaS3QtO$Vm#)m1iYDC?P-#W{c-YhP)PU3LWmDVR&++yW6+Mk_+FiMxB%Eq( zrgoDV6g->|ifcA}XiKv5O~wQ$+n+Ov^RQXaPk(Q?T|@61>4b&_>4H9!>(7aw*PAnf z5IRTsnRH9$_6_$KVEBZQ)+VFeUX=e3T^S6_Gji+G)c7J(6aZD zBC~%Kx1`Zj)OzYP(4y?Z^1T!ov39UjqW|Th-ymDag}sC3>1P`|{#^STO9~dNpswR< zm!nQ6_sb?-DvpFuprY~vWBf>R1UN;s2g}`(|AGa`W&RnAgD6CU{Q-c=ZifE`i@WDf z$b#fxV!jvY%>Bn>RH^U6=Irt0DBt@jMb_)n?K^=xp>)*``?Y3Xj(#;8UiPZndzI#I z-G$26aa0}W%9r?nv5W7XNPe4FNsB=*fnKWbEUkSXGgcf#*(n6~x+GI-uR6+@!#}?x zegXDgaW3s*Pqgia0Sm+oL}uS^jXAkY4)L{sJ|Vk5O9BzXmXDJeu%;p1Hi&N?aQ`R+{kd9o z7`8*UEO$Ks-Fta(4`e(NVlS`v=*fZwt5rbP2tYNtwQjc*(RuREG1LyU3-ixgh-Dm=@h*aZnt}nvme5>MdhR zQH>U}<;d<#57cReWX>N2RgXIq4^oEIjm}Vx>>jnMf?KEHDlqH0fS_qj?_Vi@G^3C% zm1VD>Wk^R0M>WjroGo3@3V(gN#1M(1avG_4Z>xB&X`FT5X;^Txb6TEn4&p?pPIH1h zj)+|Kvis$f;VjKA+Kc4{asr0*l_-@q4_^2n1LK>$5VhxjtgZzwMHXw2kBX26E~%%g zNpLgq+iP&Lk|7C+RWo<_Bq-10K~5TOvp*IM5=Z!gL0tEgAw zsNp!Rr#~fW@kPQ%ry-YjwX^b{2zMME-AS!=$nNk7TBV_>&G00WM1>^{+`-3r#e~i* z*N3U+^oV;R-(4Zl_b@GB1~UVX?#RJ=cr8gRpkG zeVUAq8vpV10Irh*zs~^@;!phaHSZZzpxMdR>Fy?Hlp3X^rqcIA`yAp|S$Ku%wjAAtZ9a35TKRAVj`b#j^ z;JdsOCyEh8m!d&=Op&4Ts|ZoTLD>zZJd{ZC{18$T^R~ zfujwY*gLI`b(GT+kJ_I3h^KTBmpl@)teTip+kI2l7vJ;AhprzH4EZe33{C65;I*9H4{tH_c|Q!AagWh8XFQ^`L@pI_qsq-s}e=JI!li z7)77{vtyO1w3}R0u_jH*rM0s)o=OBGG=EWSpcOyTq=fRpsHvx#KPAPUTPohe>FmTG zB1WB65=IK5dPUOvm2&nP#?_6R6W;=rHZnLOfqN>rx0S*?dJWqN-?VK~e>{Slz6 z4BHio>+qo{-E_GTo}0w;n!lO$stGTHFr)RI+k$g{RpNX5oMy1)q6A;&j(N68`hd`` zD>wbz3`W(PF?1oc%&)^knX=Mi&i%&>7HKv`@lbig4DGJh&*J;cqRtEVo0`D=<6qP( zEqDJ$C?{Vcw@}##Zf$?Y#DG-_KHcTp<(+LV`pxfl-)A$=_aS!xR%EtXU8#LucdiKi zQYUaBjQ01ZLaW4n6oxtXyZPy9^C4tNVYfD@Quqx4B?EnF8rKMnR@1HR`H|MxS^KkW zFhrP#)F7f*PtG3Lfw^w2a4V=yfA5PF@H=b(MYx3|56jNl^Qs8$uH%Gnhe)B`?@-`A zmG!!Fl^Cg@>E7>0rSyTHUkk8uLg|{K0VQKCb3EYc12*uJL^RJUK}i67J1nfyf8FpFAM+6lVS=%}OPF<=)(Gk<{M&F8UuWPbs(xfn@j3)?)#-{rcIJJ+T-!YK>l8Xx5nJA4qP`*QS{l%qt#o1lq#V%7w z!uf~qmF4al{T6=t)A?mY^$CyC)JugyZQg$0%ZnRz1`0%cAn`|oo ztk34Vg2)YI4cU#cUqoE-PGr0TLL*73*v^s8^hpTqQ&RPR9H`{@RlWJ(98#qO2TvG zmx^iL9FsMymL9(_0lcJVrjE+aCW3fUhnsP!fpy1o1~}zPp}G-j*Th4k7aT_Rcz?{R z3I0VtO|!j%56kpw*_{aSD3;)=OaqCae0FY-xJ~1#(~f#<0TJWMOi{U|i*uz?!)7Si zjas^pH}7dab<%r3|F5T}Y6-nuJ+T%m+#VMMA4)@+HUGG3SDQcIG1#0KYaac$%*;z= ze82BN#zq=i^Z?}{IV!sMy2p~;z+z4bkrTE34dmrR(!GzXqj#_3@&W_{ebc=QHT$_f zs*em2;}6z>!J1kyu_P~&$43XPe~>wI^D?^$#BT zA!rWC+9CBe0OGiQ0egr(L0>ZH2qtQ+r0@R2n-(eMK@=}-rx9ljsSXC^2?)r|>CzoT zknSYiEpF+RiG;)mr?la8Q$VhS<$s2SslW0O5PZW9p*FINSikq9Z1}0g*D{RJ$ckavoUYICdj614D|9p~EXPRj%A6=-D_79(pelNRBDS zdH8oM^{O0x6LCH$o`FMn<)V9i%qgFbCC6=X6*A3>M9uSGu3)MZ&z}(k&NWJO)2}*5 z_($aZw$w8rt>#Dj0aLV3X`A$2FaB<{n!qLW(^fF5dN+DugWhEm^{T%~#cU&7goheM zE$h!~+kV_;kz5{~rs*nd4L06a7LjuT(;cAj7l?=!0Ub9p6>6Soa3>YUj;Kr8+){bU zul*NYTOtv!Ux z+s>vgjcDcXgL0l+k-s3%Q(xhRrV!rb`}VBw_(j9|5VNp+UL-1e^Hcra)j+Q*B|~T3 znd+dlLh1oX6LtRZVsYJQk(jZ4o`qFpMA9g>Q+)6}7Y!(_8J^X}zt)ClG5;3@p7Oxin6{<%tb#g^_8Qr`*E+ zwsa2zcGF+}yU6{I-Np^%2uIB`uk!CoywCPC%wBjttF%XAGq>1L6Ay|uN3Yc_9eErC zDL0yj4Yub}8b&oEKr;`PTz2#3NSUMwQ?|5babJrEZ`~H1ZILU1#w4uw9^a2ipT_b2 zbF=Yzr0vu2YGsv}ph~x8o8Uh+EoA2HpcF`k+9^5fZ#6?+zmzl2=z?S#DPI>T#wETy z2-bZaJS;ev>Ii`4WZN8@qUkbLx}dsF>Vd;7%3ax6{izs`LI- z0EsCi<1STS+okp1P4Sjl#uPK7)~2Gp8$Ja^jS*}c7W-+Vbe>LFfMO+;EdQ!7qiyRCEx42m?9jJdM6$FG3w z;rw&3d&9>CICt48vObwoX-}a|T`1BFccs`d0Wrr|mEgao5|}mP=%3fCjNIP+s`6KlF19G`i|aBvft$3z8dSXjH+%pl*0L4cOke` zJR^QgdOmy0_%S|cuGWN7%*7C5@XdwcB+M%L@Tm0nH^4Ux_0AW(Oi!^@Z~s!eZ6@Bc zVJlXRWxQ3x8g&-g_?kOkAr$r>(<4m{tzJt0GUY?e<&$3Xk1}&;;$&J*WTnSW7FZL^ zK9{e&^Kv?wz+cRm4_coJ;s*pjNDZnx$jG5k}oOX(t>F{mMm+E zdN7j_KW7Tnc^&sH9wg`Pzrog+N zK)f>3*;5!VbKYwznAq5U%KfCr?fGTg8wax}SB^S}oZt~fP}KSBIF4Q-TD?~G8AR+G z$8lbY#TBM~m$~)#c@donBW6KzT@!|P2z(JQilX-dV(GM-3$A^M6MlgAG7WN?1dHB+ z&Oh-)ErlC){qI+`(A^h)lJx%7v9}!V63ik?Sc|wzzo|Mc`b?=-f1 z7!51WT@bwj-0jcp=4}fW)x=BVhCXZ0!Loz^D-NVC3;&iE2JRH+DXbx)Ef@V=5c59a zhP5>8^k@n15D}OZm-15f%kX_{gwKF z!dzh@r=G`dXN;QtjYIN!5qpXuUkt&*7@;{S;v1Z4IB~dVPV1$xZ}!7k6}b<2P>B@u z@lu(1Hb&sJ(|96!QOUDd5cSy5$yZu8YrvbK0ZN+|^#e%cSmmyb?W3pWUP`@d2~RedQ=iqX&-vOkR|u`DNjrFuLbJ&_E$x4-f{t22Nm!UC<1hvo z=a3k6Ir4q0$-7Vhu-{&DAnb=-NGrSS-F&W0^mPHZPE+)JC>hGzyCn$xe7`p@sUoxjKvxn%+j9*(=uIUT+Is4 z*cl%XFRm=9$)}7JIZ1CGc#L%><&9RKIKSfVvbkqslw<}J(e^=odhxlG@suB{sh1h6 zFO5HwuJ1aUwe6J`p7=mH`Le_Go(AqU+h&7`7$#+DwBpb;=ZR9%wX_Ib6Pd0*$Z zG39n}{ulqHcFyEQgo=0rCEDi!X}%{4ck<^dcEq%%do=c)f7*_xBz)HGOIlcw$>LO2 zv4zRnZ#}d?yA{2Q&HnW0DJqCq_Za&y6B0d%Q(X6ip1u7mgLAtcw7O1ZBzD~qCG-Dn zp5C3gxjEYqPefoJHuY`&po(tTKLjEm%>ALc2{k9uy2lZ>(GA#@O`)$_kaB*kPZaX$ zN{k|(iNYN6+kWxa3jZc@V6ww5+qRJW|9!*ZRAUb5HpPeyT zWqVzClkhdTSQ_@>N2uKmD(kjhi6I$18Hnw?)$dQU2zck39?xBu~hW4U{;=kpYUXAKh?C5sZ5UZ0&8PUP?(okQ{WW9SZ*vdq#{8t21mqqX{J$&` z@F<3CN9hmdZ~A%HGC%9nx@UH)cn&Yd%@>r z2Jyyk{g7w(S+!}+{9OG!&)lvw2&cZII+wht5?xs%&?SXZUH{T}X{np=$&hX@-B2j9 zA6mN|*!fJ_L1PYmrQwCL>7A1JE4+XZW4f~c*$$wI_B$!E?#J8j8*Ng_NqSuF`X;FR z4S^t~q{er_8X2;t=iFa1&f0;q!nL~wMXqg!vkoDENIlV`#S((W8D%1Fe#jf>hJzCh zop;UJ`*)+6{5S1?!WxX4ON1Rml>O}T1x*8!n$5SzM?mZ2F_V|}7Jx7BhJ}a!q&;TJ z|L~4%hw185OP1=%z9Q}v_(nBZi%vY`K3(ib+JA3ZPJN%BiF#n+@&)yeWHo9p3G!a? z_$IV^*MhBo6?EEYvfc z0Y{$&{)4UkVgnKM1*t+5e1n19M%@*8FIjb&~$_A6WcW54_J`+o;uwI3~ zO$RCZ$$=rI$Ywa1?K%b+H3;;tGhv;E7AL#pTkh^bHSedoh*@lJ4xyY$?>dI?8aZmt zPlP2s#Tre{;0sET-7u(51@`Ph2%%nI!oReIW~9fiIV>@J^9zFV%|A>xg4V*jacnIu za#4NciS|dQkzJi+gzU#N;7D68bf==3tAltOp=jkkZ(F}F9~ z!?dv;P0udvP$yp0#Ya|x(N{rP{aRu1rD%W=UB|P3j{2W33t?AKT{)0&S&|{2BJSwY zf9yqai!ve5e2nb{I*BOrcFkwBT~ek5DDFcW^1Pde2r4x^Th&%7DrK6vs{LF(Un$E@ zk%F}N&b#*(s;`Q-MN%U5ONz!4Nf?a$tju;)&L0-G;c-{}UGHK$1V>-X3yz_SEoT=x zsk-nQ%;mwu;8e8#-n<@LCK{LC7P@^OMSBKX6#mB-wi~zcTAoHyEf_jWr+tm}3HfnC z{vv@+1xcTa8z9ug_!;+E5^6{Q1Nx? zPcgI`5B}SjqMrKYmf#9#M9uKS;GKJ(=B_~A+O(Hn9=8bw-mjUpt1Ysjt+T=T>(g-| zP1&1ZFo^GT)JM1NRvZKQHBpH$?e*K`+437pw>QNZthP2Qh6_k=sE%&3Qm23JF0vqw z^Fn#x)8nAy^s@pVGwoKa@Y5@6;xx3IR^w}&`mQ_azN%*flgqS^)^F1Umr;|ZM$gJ; zQCG;>q1!{duZEx>ul(cu33SECVNScBdFPFW(v(sWi9QUC2l0hH$*1!B@2BX<6*sd>z;MQ=fYS;+fTJjzB+P8kDSq)z(pfz z_O;d36wlj6ECx*083WCgGh#)9h{xeu%O($O`~kdv7w;}wT1|_ekCZnqzZG(Bj^;H$ zfa;kN5(KUs@~3L?BGYG+eyTBK6Q3qf>wHf&!R-r50w0>Xmosjh8&(FmS~~q=<(ey@ z5u?k8Hp%tUXGLBA-vb2znmv7uxdsvqlRXkkYVM98-*u20mz-nfFOKFNM(iak0{SOQ zKl|N#%sO<8!N5YAIJf8(DV6e!3^{$pj}zq8x3MdgSG?DuzEOq@=ZA#HUb5F1B`~wROg$ zM$x^z*M^$xaNGf(Q7E<3*s?~N1cZGYUMCJ>*6n^Vql@b}l~M$CooKad1CNqmjo8QC zmX*O8rNk+vA;yhiJn+Tf&et~zwSU}WrIa>1@%%^{0Nt$Iy9Z)mFQt)S{`jxYsCRHtRG<0dr{Wd!_#;oR;23qeWIa3v@Md5vkn zgLB^qoq|xdI@f|tf28KKzrT~}5VPap)~Pfy#VOIroT?@Ce>W3?DzQsahN@(oUq~ok zJw^}R7Ujc zo&rLl&N@Tn)QG7Xw2v9Lm?u%5PeiXtEs^E@k!qA}*|OY2m)>24=&Fym<7uwFzD6C% z3mOrVP~W6H{Jog!)p&Kq?*D7*$^)TnyZ${hb}_cflBH}VdqUa0B4uwOTeb-iQ)8!Q zj0(wK$S{`j=t)Rq8Ouz1vSy1yj2VWIY}pOtyXWcs-dum(f6biz{H}AI>pF&UXy(-f z08VRXn<^g(dOR4h+TS|j;01Ng#zb=aRm2VsZPbZ&=&MFJmXDF%`50nzq5H5N5VxTv zJ9~Uw*zDKRn>^&qn_i(%g2ue+#yAGLM9u#GpIm~QyGk>zNUmTu5ROU=X1H1UFTDkP zu?z3Jtyi}E9<0CERH&+1DltL8wsJC*`=y&1llhrH3gk@cI5SE=>Un8=G&5k!y3aCl zUZ3-zGKrfDJou*HcX@km$uwPbFn@&maoQ=C>&z{nVL+w^o@cU#t#Glca{EiEvudM0 zMT>7+R4jo0?yxah#PPI#nKrd0kYpv8#qmcMKqY5ugy5C&j6ju@(vk+6u==$CVcKli zfb7Wde<0!Ar_3wmVy{_L2+US4s(Q1nqQ-1h0`Z}J_mvw@=k+WOQxun55!Vo(i6z`&P~Yn0nH!1a=@qNFk48OCp5|hu-k`D`oO_}4fE9#R zkplC$=bP_SL_mcl2tHuyTWw$85-ucdnTo?o?Vp-jym#9)^mFXuqlesqhD?9-Bs81 zy%jWzlo=Op<%O8*Xf<#{Hu!_=ys>NdgtN=Y4fO#v@9s4f54M^1heeJ*9@a&#B4(N- z>ix!)1SO4{A}{z)-0QEj{SlB>+hT>-^~@{4O`ynnCRQw*4c`UcfJ2Q?^_9yf`Nwbf zl1|U87e1dn0!m%R*}yF)Z#gksx^;Km@^S3$$@P_p#`zjZ#z`^^H z`U`XD51IozQjR|Tyfzz@;MZgPdQUKR?YNxc>nW%{WT`{ zbe(US$T^#PYcY$cx?NDadtEnh%97xJ{ipx5RY`W{QfXeW7eZQjo@w(E2rQf zV!u!@S#kc;v;|vp>I(c$YVPhYV3>`gnr)N9GHH%Ow_MYKbnL$m>T2x#)3FHxcy zIy*rThu&$H>D0*22wVVJQZIwgBzKNfOzp6*&;@rH^f_U0hKkzbU>M^(8*e@Xx*1~Q z9=9*SNm=qLPIQbvi9eN!nY(m!ZKUDn3sG^yrfbJs6nY73L#>5s1FdEZmua(U<#c=P zKrNz~`^$Q{9LqADKrJ0^0qe?JL!s%_0ecmHH$Xp~yODWciin4Gr}96mM5%{|oJ<7` zCGsu9i(|~kjz&O5#w};^ZEIxvZ}4+wmFKYIJ=bD$JRt0~brQ&z z&rbHSXnfoUmVlg<*my*_OO@VJ1w1*|>#}hVKKL_IB{af^pSCDdX zPI^H{NTJWw#UCFR7p4dZxrxN5V(3nnrr-yQIY-J%$)~+g^@K{JR^Yq2Ru_k#Rp0gv zd-D8UUdzeMXCK^hLPw%qB+efOv2ElWgJ`%EE2jkBc*qoyo#L1~%;StUe9fpb!s~d^ zDm3y|Xz`F4I?J7G4ER*DvZ82YEspwUO9}uloWrYin!5_Ub$U1E^2Lm+KIYB&DL*5I zcU~-e=UjBcFlq0A`NgOYV^`Btao2j>U2OL*Uv5ky*RDkQDaDtP6)hy%KijokKwrP) zH`IQu#TeUC-&b2Wv{!vrhA875hf7M5qeVnq1gkWW)MXv1O`~)y2vOtf?{mHvv*aqX z=iA7jSo?kWmdxhyx(g*qIr>9Po1#U^QmsI5ZU!!y{QHpSe*?)VR;0%dFk~lCtR3aV zL*#XaC>~*+8TY;hQHynJ%C5bn zn>`^!eX&ngN=eDY6^35&;bwSt1{3@Ou+gxAGer2J`d&~$b7*F;_l^3b z-EPF%4o|ll@A;BErPnuwTV~}OwC@Fw`%VcW0R}4)0Bla|%l*L8(;#B4(A|IfAK=yl zNO_JA6ZUBJHODBA3`%!d`6hpE*dV0n^lvCVmFBCt*|^l)4Kdnc`^cVEu}CgovL0Fb{MJ6J>>{Hbp6 zgW{4-yB;o7Sd{xDDf3ZsQhW?HJTwd$=zGfpk z$Z77M$@yZNtFz8sY42ExLnq%Q$oiSJ>X$Yo^*^t%AqPK{nWCp!Nzn=Mz1d|xBJLvHoTyZWHvsMAuh(u%? z;M=nVhr)S;A;_q(e6~+X`yvL(J@rggP!?|{UMQk@>w>ewmaCfN0^QQ|mJ(u}J-}Y* z$tTg|ql7va`*coRQpg&@$e*-C8O@HSe7Je>>It{u*WLr{oxd`+>d1O`KI|rFVqd?X z`1p2#ZhC{_4rYh5rwk%fnC9HU=;m+uZ6+NINj~Q1Hl%uG&Y0BuZF97^939$(((_fv zsL8vHZ5i%&x&{k6dC}u^t;6kuR5QFvft3uAdm(Cf{fQD5dLQ19Z%37VhO}_6^QEoB1pPBMx=J3oes_I4!_XwA##Oz2!Kbm1NKv0|H{H#k*#s&~ z!|BC$i#{TOe=W5F+jSlqR<`A;kCw<#neaj< zWQwJdJ9pV;5o45vx7B~u3%d#771JE}+8+K0@CidO!)ym*L@G@Mgg)dt^3Lio|2N6( zDzJ~JjT@tX$l+wSE_+n+m;uIsHtGf!%re^tAb>dD!AHfR^!hEckE+TAi-N*;V(d?r zi%Z867~Wk#%3Ce<%dAF=+PBM3yL1&b@75cCH|sn1uu5ZR6`OJ;D6Hr6=&a?@U0(st zBG+FAnCF+dKpSgkNHD$N5x8ejs=p62-YkqaO`L;!<*5K60W)Rq>9=6i*_On1)czok z�{(Zn&cUisXI+<*0|$cCX3Xkr{J0P5yF_1o2dv*xVKG`jPcMFSX$Dlv#?x*DZl? zhwqu4xcnSl+$^0)o7CGXL+JF|kHI~xuet&Jq%(^DyaYZ07U_BS&6uF2eYWP@5*$pF zIyEJEM5ljN;g+vJ0BCW|ulH51>=AC^+#KdM%-V1C6)WbpPg5*23-69FoG9mO zN;jvu-6N_Qdeg{UD4?wK?anh(2s$(l1% ziFAhXiv6WO(8kOy3Cixq=L0qVzP(%5_+wL&Uzcg%ux>nyDm&q?>1Q>yY6873EURAo z zlsV(vguVbJVa@SvgckQ_bB^dclH5e$Z2vS~C{@kTN7dzKH4?t+4>5`808{?iT%%#^3u-9J8g51@Nl&!q-yNO#1zFS z;_MF_L1j9+GUxp};AaG@`$Bzx z!7N0#8z&#QSU~jd{kc+Sl@BAB{3+rCm?Z0?LenvstvGC&tKHo@eH`nfWw)qs5`GAW zd(UT~sbJ&2z6g!ER2Q-u+4Svz+cU_DetLVn%(A+Lfu2;~AhZ%#Itl|lX$#CJU5Rq1 znIJ?=mY1Umgi;Z#`g1)I!zdqu$@jCkY44`NkU6o<%0M1~>agEnhWdr^H6urEM ztL!8sl00_8bjyzaTHqXLu3)4d|7jynKEeUL*L3acu)NsJLt#2fJKg(cN0RXaG~9t# zT|o#GLj9MmJn2pF#1K@*O&Zz|`5gS@+Ns-?JSIR(6OSyNrZ!HP13|1*;Xg(JNVOA} zH^M|yzTU0D4!k{=T9}zjL2)kxd*y3c0RNC55GgFZ`7UWZkbjWrYZg4iAFpHM06??) z-GKSIaAtG@rC+aHa1QyLS#&$G-E*wA&(02cm(*eJahN)8Pu(H};(K<_9m-c*=X}iT zbN2TOOTQ_=NPS?`S#r7cy{v|y*^tnv?!yd0QcZ9=q$TXi4Zv^%VmDR&z0QRQ0II#y z>Hy1SF>1*ZY>un~^KXl6n-9GIE%BN~0kC1*($Tq`Ca0c}sgCZNNk5B<#uTuug1J#(XXvLH9*SL#(YLi{^CVa`e0>k6@c5)eb2oK8>lB zkB-!vEf*U|{FKNk1^Lac2?sj}+YD-)a%3$)O$&?@9tlI}Y+>U&Yl0&JZU)4J|DCpi zoMI+k;c{OE&#jr)cHD{3F+Vu5s%C%;vHAO)!+T(|d&vnC&=lf>X*n-?HdK&8gFJ+i zz8ss@#QY5vVtUy&gU94jugo}zRJLu66R7cW{ADFePqLg!VzdL5;b{G5@IhcbS9zaS z0h6&h##dCtJNSzlrw>IecW!npmac6aJzZ@rMLOcyU`}wWEwfgK%(SzuQcxZlnb5uB zWAR*BEFgQC4ETL+@ZfNCtaQ)FfnBr~-@8&hv~jAB=zZNQXVHVoJG3XTKVzoA*$;0d zl^WdaJ~-4>QQYKR`RG3rQ}LWC&#kt@;TqlC-muqq&!W*~XnCZEh&f?>^u+(3{kxyK%~&xft%12W=0Y3ACdC$VWQcE zT^^_p^+Nl-y}hk}R>~;`YOa-0+e5dBv7BGRSYsL8Mjl> b?;5-d&U@1Az5q(w5Pjm?o(>#CzYO_5@T>9{ literal 0 HcmV?d00001 From 00d66c9b91c6703d7a17d243130c1f2f6bebf6ba Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Tue, 18 Feb 2020 22:19:58 -0500 Subject: [PATCH 027/175] Renamed CAT_FISH to CAT_EASTERN --- code/__DEFINES/construction.dm | 2 +- code/datums/components/crafting/craft.dm | 2 +- .../recipes/tablecraft/recipes_sushi.dm | 28 +++++++++---------- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index c4d87de495..a46e2ed7b7 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -92,7 +92,7 @@ #define CAT_BREAD "Breads" #define CAT_BURGER "Burgers" #define CAT_CAKE "Cakes" -#define CAT_FISH "Eastern" +#define CAT_EASTERN "Eastern" #define CAT_EGG "Egg-Based Food" #define CAT_MEAT "Meats" #define CAT_MEXICAN "Mexican" diff --git a/code/datums/components/crafting/craft.dm b/code/datums/components/crafting/craft.dm index 674746479d..1caf7d9489 100644 --- a/code/datums/components/crafting/craft.dm +++ b/code/datums/components/crafting/craft.dm @@ -28,7 +28,7 @@ CAT_BURGER, CAT_CAKE, CAT_EGG, - CAT_FISH, + CAT_EASTERN, CAT_ICE, CAT_MEAT, CAT_MEXICAN, diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm index 5a95ba9907..3a77181d8f 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm @@ -8,7 +8,7 @@ /datum/reagent/consumable/rice = 10 ) result = /obj/item/reagent_containers/food/snacks/sushi_rice - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/sea_weed name = "Sea Weed Sheet" @@ -18,7 +18,7 @@ /obj/item/reagent_containers/food/snacks/grown/kudzupod = 1, ) result = /obj/item/reagent_containers/food/snacks/sea_weed - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/tuna_can name = "Can of Tuna" @@ -28,7 +28,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1, ) result = /obj/item/reagent_containers/food/snacks/tuna - subcategory = CAT_FISH + subcategory = CAT_EASTERN //////////////////////////Sushi///////////////////////////////// @@ -40,7 +40,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/sashimi - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/riceball name = "Onigiri" @@ -50,7 +50,7 @@ /obj/item/reagent_containers/food/snacks/sushi_rice = 1 ) result = /obj/item/reagent_containers/food/snacks/riceball - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/sushie_egg name = "Tobiko" @@ -60,7 +60,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 2, ) result = /obj/item/reagent_containers/food/snacks/tobiko - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/sushie_basic name = "Funa Hosomaki" @@ -71,7 +71,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 3, ) result = /obj/item/reagent_containers/food/snacks/sushie_basic - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/sushie_adv name = "Funa Nigiri" @@ -81,7 +81,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/sushie_adv - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/sushie_pro name = "Well made Funa Nigiri" @@ -92,7 +92,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 1 ) result = /obj/item/reagent_containers/food/snacks/sushie_pro - subcategory = CAT_FISH + subcategory = CAT_EASTERN //////////////////Not-Fish////////////////////// @@ -105,7 +105,7 @@ /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 ) result = /obj/item/reagent_containers/food/snacks/chawanmushi - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/khachapuri name = "Khachapuri" @@ -115,7 +115,7 @@ /obj/item/reagent_containers/food/snacks/store/bread/plain = 1 ) result = /obj/item/reagent_containers/food/snacks/khachapuri - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/rawkhinkali name = "Raw Khinkali" @@ -124,7 +124,7 @@ /obj/item/reagent_containers/food/snacks/faggot = 1 ) result = /obj/item/reagent_containers/food/snacks/rawkhinkali - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/meatbun name = "Meat bun" @@ -135,7 +135,7 @@ /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 ) result = /obj/item/reagent_containers/food/snacks/meatbun - subcategory = CAT_FISH + subcategory = CAT_EASTERN /datum/crafting_recipe/food/fortunecookie time = 15 @@ -148,4 +148,4 @@ /obj/item/paper = 1 ) result = /obj/item/reagent_containers/food/snacks/fortunecookie - subcategory = CAT_FISH + subcategory = CAT_EASTERN From 6e013d7f8c4fed4c7f0e1a6a9fc3ac2fd3b67c52 Mon Sep 17 00:00:00 2001 From: raspyosu Date: Tue, 18 Feb 2020 23:18:52 -0500 Subject: [PATCH 028/175] zzzzzz the rest of the changes to be described in new pr --- .../bloodsucker/powers/bs_cloak.dm | 52 ++++++++++++------- .../bloodsucker/powers/bs_mesmerize.dm | 38 +++++++------- 2 files changed, 51 insertions(+), 39 deletions(-) diff --git a/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm b/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm index 9d83c95f05..2281a2cecd 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm @@ -2,40 +2,56 @@ /datum/action/bloodsucker/cloak name = "Cloak of Darkness" - desc = "Blend into the shadows and become invisible to the untrained eye." + desc = "Blend into the shadows and become invisible to the untrained eye. Movement is slowed in brightly lit areas." button_icon_state = "power_cloak" bloodcost = 5 cooldown = 50 bloodsucker_can_buy = TRUE amToggle = TRUE warn_constant_cost = TRUE - var/was_running - - var/light_min = 0.2 // If lum is above this, no good. + var/moveintent_was_run + var/walk_threshold = 0.4 // arbitrary number, to be changed. + var/lum /datum/action/bloodsucker/cloak/CheckCanUse(display_error) . = ..() if(!.) return - // Must be Dark - var/turf/T = owner.loc - if(istype(T) && T.get_lumcount() > light_min) - to_chat(owner, "This area is not dark enough to blend in") - return FALSE + + // must have nobody around to see the cloak + var/watchers = viewers(9,get_turf(owner)) + for(var/mob/living/M in watchers) + if(M != owner) + to_chat(owner, "You may only vanish into the shadows unseen.") + return FALSE + return TRUE /datum/action/bloodsucker/cloak/ActivatePower() var/datum/antagonist/bloodsucker/bloodsuckerdatum = owner.mind.has_antag_datum(ANTAG_DATUM_BLOODSUCKER) var/mob/living/user = owner - was_running = (user.m_intent == MOVE_INTENT_RUN) - if(was_running) - user.toggle_move_intent() - ADD_TRAIT(user, TRAIT_NORUNNING, "cloak of darkness") + while(bloodsuckerdatum && ContinueActive(user)) // Pay Blood Toll (if awake) - owner.alpha = max(20, owner.alpha - min(75, 10 + 5 * level_current)) + owner.alpha = max(35, owner.alpha - min(75, 10 + 5 * level_current)) bloodsuckerdatum.AddBloodVolume(-0.2) - sleep(5) // Check every few ticks that we haven't disabled this power + + moveintent_was_run = (user.m_intent == MOVE_INTENT_RUN) + var/turf/T = get_turf(user) + lum = T.get_lumcount() + + if(istype(owner.loc)) + if(lum > walk_threshold) + if(moveintent_was_run) + user.toggle_move_intent() + ADD_TRAIT(user, TRAIT_NORUNNING, "cloak of darkness") + + if(lum < walk_threshold) + if(!moveintent_was_run) + user.toggle_move_intent() + REMOVE_TRAIT(user, TRAIT_NORUNNING, "cloak of darkness") + + sleep(5) // Check every few ticks /datum/action/bloodsucker/cloak/ContinueActive(mob/living/user, mob/living/target) if (!..()) @@ -43,15 +59,11 @@ if(user.stat == !CONSCIOUS) // Must be CONSCIOUS to_chat(owner, "Your cloak failed due to you falling unconcious! ") return FALSE - var/turf/T = owner.loc // Must be DARK - if(istype(T) && T.get_lumcount() > light_min) - to_chat(owner, "Your cloak failed due to there being too much light!") - return FALSE return TRUE /datum/action/bloodsucker/cloak/DeactivatePower(mob/living/user = owner, mob/living/target) ..() REMOVE_TRAIT(user, TRAIT_NORUNNING, "cloak of darkness") user.alpha = 255 - if(was_running && user.m_intent != MOVE_INTENT_RUN) + if(!moveintent_was_run) user.toggle_move_intent() diff --git a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm index 0e1a9d44b0..796a3afedd 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm @@ -21,14 +21,14 @@ . = ..() if(!.) return - if (!owner.getorganslot(ORGAN_SLOT_EYES)) + if(!owner.getorganslot(ORGAN_SLOT_EYES)) if (display_error) to_chat(owner, "You have no eyes with which to mesmerize.") return FALSE // Check: Eyes covered? var/mob/living/L = owner - if (istype(L) && L.is_eyes_covered() || !isturf(owner.loc)) - if (display_error) + if(istype(L) && L.is_eyes_covered() || !isturf(owner.loc)) + if(display_error) to_chat(owner, "Your eyes are concealed from sight.") return FALSE return TRUE @@ -38,51 +38,51 @@ /datum/action/bloodsucker/targeted/mesmerize/CheckCanTarget(atom/A,display_error) // Check: Self - if (A == owner) + if(A == owner) return FALSE var/mob/living/carbon/target = A // We already know it's carbon due to CheckValidTarget() // Bloodsucker - if (target.mind && target.mind.has_antag_datum(ANTAG_DATUM_BLOODSUCKER)) + if(target.mind && target.mind.has_antag_datum(ANTAG_DATUM_BLOODSUCKER)) if (display_error) to_chat(owner, "Bloodsuckers are immune to [src].") return FALSE // Dead/Unconscious - if (target.stat > CONSCIOUS) + if(target.stat > CONSCIOUS) if (display_error) to_chat(owner, "Your victim is not [(target.stat == DEAD || HAS_TRAIT(target, TRAIT_FAKEDEATH))?"alive":"conscious"].") return FALSE // Check: Target has eyes? - if (!target.getorganslot(ORGAN_SLOT_EYES)) + if(!target.getorganslot(ORGAN_SLOT_EYES)) if (display_error) to_chat(owner, "They have no eyes!") return FALSE // Check: Target blind? - if (target.eye_blind > 0) + if(target.eye_blind > 0) if (display_error) to_chat(owner, "Your victim's eyes are glazed over. They cannot perceive you.") return FALSE // Check: Target See Me? (behind wall) - if (!(target in view(target_range, get_turf(owner)))) + if(!(target in view(target_range, get_turf(owner)))) // Sub-Check: GET CLOSER //if (!(owner in range(target_range, get_turf(target))) // if (display_error) // to_chat(owner, "You're too far from your victim.") - if (display_error) + if(display_error) to_chat(owner, "You're too far outside your victim's view.") return FALSE - if (target.has_status_effect(STATUS_EFFECT_MESMERIZE)) // ? + if(target.has_status_effect(STATUS_EFFECT_MESMERIZE)) // ? return TRUE // Check: Facing target? - if (!is_A_facing_B(owner,target)) // in unsorted.dm + if(!is_A_facing_B(owner,target)) // in unsorted.dm if (display_error) to_chat(owner, "You must be facing your victim.") return FALSE // Check: Target facing me? - if (!target.resting && !is_A_facing_B(target,owner)) - if (display_error) + if(!target.resting && !is_A_facing_B(target,owner)) + if(display_error) to_chat(owner, "Your victim must be facing you to see into your eyes.") return FALSE return TRUE @@ -93,12 +93,12 @@ var/mob/living/user = owner if(istype(target)) - PowerActivatedSuccessfully() // PAY COST! BEGIN COOLDOWN! var/power_time = 138 + level_current * 12 - target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) - user.apply_status_effect(STATUS_EFFECT_MESMERIZE, 50) - if(do_mob(user, target, 50, TRUE, TRUE)) - if (CheckCanTarget(target)) // target just has to be out of view when it is fully charged in order to avoid + target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 30) + user.apply_status_effect(STATUS_EFFECT_MESMERIZE, 30) + if(do_mob(user, target, 30, TRUE, TRUE)) // 3 seconds windup + if(CheckCanTarget(target)) // target just has to be out of view when it is fully charged in order to avoid + PowerActivatedSuccessfully() // blood & cooldown only altered if power activated successfully - less "fuck you"-y target.face_atom(user) target.apply_status_effect(STATUS_EFFECT_MESMERIZE, power_time) // pretty much purely cosmetic target.Stun(power_time) From a570a8fea86bf35c65008e685807890607dff994 Mon Sep 17 00:00:00 2001 From: raspyosu Date: Tue, 18 Feb 2020 23:24:01 -0500 Subject: [PATCH 029/175] this is fine it's fine --- code/modules/antagonists/bloodsucker/powers/bs_cloak.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm b/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm index 2281a2cecd..23b35d1eaa 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm @@ -10,7 +10,7 @@ amToggle = TRUE warn_constant_cost = TRUE var/moveintent_was_run - var/walk_threshold = 0.4 // arbitrary number, to be changed. + var/walk_threshold = 0.4 // arbitrary number, to be changed. edit in last commit: this is fine after testing on box station for a bit var/lum /datum/action/bloodsucker/cloak/CheckCanUse(display_error) From 0ad49f9004d9537b2b3a39e51f516665182bb504 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Wed, 19 Feb 2020 17:18:51 -0600 Subject: [PATCH 030/175] shit dude i hope this works lmao --- code/controllers/configuration/entries/general.dm | 6 ++++-- code/controllers/subsystem/autotransfer.dm | 14 +++++++++++--- code/controllers/subsystem/vote.dm | 3 +-- config/config.txt | 5 ++++- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index b5e7137374..2d9264adf5 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -84,12 +84,14 @@ /datum/config_entry/number/vote_autotransfer_initial //length of time before the first autotransfer vote is called (deciseconds, default 2 hours) config_entry_value = 72000 - integer = FALSE min_val = 0 /datum/config_entry/number/vote_autotransfer_interval //length of time to wait before subsequent autotransfer votes (deciseconds, default 30 minutes) config_entry_value = 18000 - integer = FALSE + min_val = 0 + +/datum/config_entry/number/vote_autotransfer_maximum // maximum extensions until the round autoends + config_entry_value = 4 min_val = 0 /datum/config_entry/flag/default_no_vote // vote does not default to nochange/norestart diff --git a/code/controllers/subsystem/autotransfer.dm b/code/controllers/subsystem/autotransfer.dm index 05ef3127c1..00c3f85543 100644 --- a/code/controllers/subsystem/autotransfer.dm +++ b/code/controllers/subsystem/autotransfer.dm @@ -5,13 +5,21 @@ SUBSYSTEM_DEF(autotransfer) var/starttime var/targettime + var/maxvotes + var/curvotes /datum/controller/subsystem/autotransfer/Initialize(timeofday) starttime = world.time targettime = starttime + CONFIG_GET(number/vote_autotransfer_initial) + maxvotes = CONFIG_GET(number/vote_autotransfer_maximum) + curvotes = 0 return ..() /datum/controller/subsystem/autotransfer/fire() - if (world.time > targettime) - SSvote.initiate_vote("transfer",null) //TODO figure out how to not use null as the user - targettime = targettime + CONFIG_GET(number/vote_autotransfer_interval) + if(maxvotes > votes) + if(world.time > targettime) + SSvote.initiate_vote("transfer",null) //TODO figure out how to not use null as the user + targettime = targettime + CONFIG_GET(number/vote_autotransfer_interval) + votes += 1 + else + SSshuttle.autoEnd() diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 9ddd8d9123..9f974595fd 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -381,8 +381,7 @@ SUBSYSTEM_DEF(vote) to_chat(world, "The map vote has chosen [VM.map_name] for next round!") if("transfer") // austation begin -- Crew autotransfer vote if(. == "Initiate Crew Transfer") - //TODO find a cleaner way to do this - SSshuttle.requestEvac(null,"Crew transfer requested.") + SSshuttle.autoEnd() var/obj/machinery/computer/communications/C = locate() in GLOB.machines if(C) C.post_status("shuttle") // austation end diff --git a/config/config.txt b/config/config.txt index cc9ede5ef2..1d987070dd 100644 --- a/config/config.txt +++ b/config/config.txt @@ -187,9 +187,12 @@ VOTE_PERIOD 600 ## autovote initial delay (deciseconds) before first automatic transfer vote call (default 120 minutes) VOTE_AUTOTRANSFER_INITIAL 72000 -##autovote delay (deciseconds) before sequential automatic transfer votes are called (default 30 minutes) +## autovote delay (deciseconds) before sequential automatic transfer votes are called (default 30 minutes) VOTE_AUTOTRANSFER_INTERVAL 18000 +## autovote maximum votes until automatic transfer call (default 4) +VOTE_AUTOTRANSFER_MAXIMUM 4 + ## prevents dead players from voting or starting votes # NO_DEAD_VOTE From 8610c7f6643e6868c7c4cc10dd415978ce6e083f Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 19 Feb 2020 19:10:19 -0700 Subject: [PATCH 031/175] better inhands --- code/game/objects/items/twohanded.dm | 2 +- icons/mob/inhands/weapons/estaff_lefthand.dmi | Bin 9301 -> 9294 bytes .../mob/inhands/weapons/estaff_righthand.dmi | Bin 9435 -> 9428 bytes 3 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 5a0dbf7981..788a72f4b6 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1123,7 +1123,7 @@ /obj/item/twohanded/electrostaff/update_icon() . = ..() - var/final = on? "electrostaff_1" : "electrostaff_3" + var/final = wielded? (on? "electrostaff_1" : "electrostaff_3") : "electrostaff" icon_state = final item_state = final set_light(7, on? 1 : 0, LIGHT_COLOR_CYAN) diff --git a/icons/mob/inhands/weapons/estaff_lefthand.dmi b/icons/mob/inhands/weapons/estaff_lefthand.dmi index 8b9ef642a40d3e1506089c8864f9ecac4327df53..47b8dc112fb27ec8ef4731d4c1d47dc4af3e7465 100644 GIT binary patch delta 187 zcmV;s07U=QNX|%*B!8xQR9JLGWpiV4X>fFDZ*Bkpc$}?}y$XXc6ou#9r#R?Z#J`SN zN~AdGD@bT=Y9OtUgi7DOLzfP^6o)e$`1m-S9GC9ek5EHTFAmWyPe`;yNn&*-&5&qn z5;ME|oW3O{ofr}sd%mTx#H6jwNEjC)Bw7+S=m$qgRNL@WZZP953Bz8$AyF0Q(@%Ch p)j^*6f6waJ8#a??n+{sj?46mT8x_>h(+9Ulc|ZMuO>eQfFDZ*Bkpc$}?}Jqv>{7=-8KR~)()@vCE& zqSy>NlO1tq%~WIWt~8C^tZ$SnrJadc5XLlT&X9 w6xs3cqYX~66Q}&2vsiMP^ytXMoz_%aXQpU}22C&d2Sc8FOvmCb0kPA2BjwdxB>(^b diff --git a/icons/mob/inhands/weapons/estaff_righthand.dmi b/icons/mob/inhands/weapons/estaff_righthand.dmi index ea20dd22463046b6890d9726069a13137c20489d..d6096c57c7afac7c9fa8ac05540f41ffdc3a6397 100644 GIT binary patch delta 187 zcmV;s07U=WNz_S@B!8!RR9JLGWpiV4X>fFDZ*Bkpc$}?}y9$Fq6h!O2UomJK#8=8~ zf)Xs^FUXR;x(g=4?j@4HPmv~tHo;Yte`pJ%` pILK4}?^!+1mhBMy*xbT7J0JfO$^kb+a!75T$%s? delta 194 zcmV;z06qWIN!v+~B!8}YR9JLGWpiV4X>fFDZ*Bkpc$}?}Jqv>{7=-8KR~)()@vCE& zqSy>NlSD|Vp{{Yi#d%vTde%YbaB+b}fN&o-= From c3f489dd48e11e2c1be92e5870ef8735b30737e3 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 19 Feb 2020 19:33:16 -0700 Subject: [PATCH 032/175] back/suit icons --- icons/mob/back.dmi | Bin 100372 -> 100520 bytes icons/mob/suit.dmi | Bin 414191 -> 414361 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 7a2882790336d8b3a09057cf678e82aad792afbf..1a2c0e189a8e2162448b7e8dac4f682dc8db4a22 100644 GIT binary patch delta 16492 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 delta 16348 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 aaWK))Pn+!6;vxumJXTg$DtP!h;Qs?P;FAvk diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 6b1b9591b7655f8beda11be7d9a781c2e920aecb..0bf0f928a38c4eb300f4efe1535e90313143f6a9 100644 GIT binary patch delta 14011 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 jM`xh_jrzat+{eOLcoIsUkue|v=3GX delta 13849 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 Date: Wed, 19 Feb 2020 20:59:02 -0600 Subject: [PATCH 033/175] so i forgot to change that over --- code/modules/research/designs/biogenerator_designs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/designs/biogenerator_designs.dm b/code/modules/research/designs/biogenerator_designs.dm index ab0460974c..8c0bef8581 100644 --- a/code/modules/research/designs/biogenerator_designs.dm +++ b/code/modules/research/designs/biogenerator_designs.dm @@ -56,7 +56,7 @@ id = "enzyme" build_type = BIOGENERATOR materials = list(MAT_BIOMASS = 30) - make_reagents = list("enzyme" = 10) + make_reagents = list(/datum/reagent/consumable/enzyme = 10) category = list("initial","Food") /datum/design/flour_sack From b5e369aaf12ba4404da5cd8218473de88fb078b7 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Wed, 19 Feb 2020 21:00:31 -0600 Subject: [PATCH 034/175] i forgot about that one --- .../designs/autolathe_desings/autolathe_designs_tools.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/designs/autolathe_desings/autolathe_designs_tools.dm b/code/modules/research/designs/autolathe_desings/autolathe_designs_tools.dm index 6affacf1b1..9e67849675 100644 --- a/code/modules/research/designs/autolathe_desings/autolathe_designs_tools.dm +++ b/code/modules/research/designs/autolathe_desings/autolathe_designs_tools.dm @@ -49,7 +49,7 @@ /datum/design/multitool name = "Multitool" id = "multitool" - build_type = AUTOLATHE + build_type = AUTOLATHE | PROTOLATHE materials = list(MAT_METAL = 50, MAT_GLASS = 20) build_path = /obj/item/multitool category = list("initial","Tools","Tool Designs") From 362ebbcf8fa89e4bf946e1c4595e7d59d7dd12e0 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Wed, 19 Feb 2020 21:14:13 -0600 Subject: [PATCH 035/175] shit --- code/controllers/subsystem/autotransfer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/autotransfer.dm b/code/controllers/subsystem/autotransfer.dm index 00c3f85543..b80211c354 100644 --- a/code/controllers/subsystem/autotransfer.dm +++ b/code/controllers/subsystem/autotransfer.dm @@ -16,10 +16,10 @@ SUBSYSTEM_DEF(autotransfer) return ..() /datum/controller/subsystem/autotransfer/fire() - if(maxvotes > votes) + if(maxvotes > curvotes) if(world.time > targettime) SSvote.initiate_vote("transfer",null) //TODO figure out how to not use null as the user targettime = targettime + CONFIG_GET(number/vote_autotransfer_interval) - votes += 1 + curvotes += 1 else SSshuttle.autoEnd() From 00f21ed685e58e72fd724613c5c836023bb3766d Mon Sep 17 00:00:00 2001 From: raspyosu Date: Wed, 19 Feb 2020 23:37:11 -0500 Subject: [PATCH 036/175] revert mesmerize spammability used to not begin cooldown upon windup fail, now does --- .../antagonists/bloodsucker/powers/bs_mesmerize.dm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm index 796a3afedd..b238c5ba36 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm @@ -16,6 +16,7 @@ message_Trigger = "Whom will you subvert to your will?" must_be_capacitated = TRUE bloodsucker_can_buy = TRUE + var/success /datum/action/bloodsucker/targeted/mesmerize/CheckCanUse(display_error) . = ..() @@ -97,7 +98,8 @@ target.apply_status_effect(STATUS_EFFECT_MESMERIZE, 30) user.apply_status_effect(STATUS_EFFECT_MESMERIZE, 30) if(do_mob(user, target, 30, TRUE, TRUE)) // 3 seconds windup - if(CheckCanTarget(target)) // target just has to be out of view when it is fully charged in order to avoid + success = CheckCanTarget(target) + if(success) // target just has to be out of view when it is fully charged in order to avoid PowerActivatedSuccessfully() // blood & cooldown only altered if power activated successfully - less "fuck you"-y target.face_atom(user) target.apply_status_effect(STATUS_EFFECT_MESMERIZE, power_time) // pretty much purely cosmetic @@ -105,8 +107,15 @@ to_chat(user, "[target] is fixed in place by your hypnotic gaze.") target.next_move = world.time + power_time // <--- Use direct change instead. We want an unmodified delay to their next move // target.changeNext_move(power_time) // check click.dm target.notransform = TRUE // <--- Fuck it. We tried using next_move, but they could STILL resist. We're just doing a hard freeze. + else + to_chat(user, "[target] has escaped your gaze!") + DeactivatePower() + DeactivateRangedAbility() + StartCooldown() + // oops! if they knew how they could just spam stun the victim and themselves. + spawn(power_time) - if(istype(target)) + if(istype(target) && success) target.notransform = FALSE // They Woke Up! (Notice if within view) if(istype(user) && target.stat == CONSCIOUS && (target in view(10, get_turf(user))) ) From 4373f116e0147318fd1e0339130a28ceec89bfc7 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 19 Feb 2020 22:07:03 -0700 Subject: [PATCH 037/175] Update teleportation.dm --- code/game/objects/items/teleportation.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/teleportation.dm b/code/game/objects/items/teleportation.dm index 347717dd63..e95668e1f3 100644 --- a/code/game/objects/items/teleportation.dm +++ b/code/game/objects/items/teleportation.dm @@ -141,8 +141,8 @@ return TRUE return ..() -/obj/item/hand_tele/proc/try_dispel_portal(atom/target, mob/user, delay = 30) - var/datum/beam/B = user.Beam(target) +/obj/item/hand_tele/proc/try_dispel_portal(atom/target, mob/user, delay = 20) + var/datum/beam/B = user.Beam(target, beam_icon_state = "rped_upgrade", maxdistance = 50) if(is_parent_of_portal(target) && (!delay || do_after(user, delay, target = target))) qdel(target) to_chat(user, "You dispel [target] with \the [src]!") From fd410963a90c5eab6ca23da52a0d890cc3e1a51d Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 19 Feb 2020 22:23:54 -0700 Subject: [PATCH 038/175] Update teleportation.dm --- code/game/objects/items/teleportation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/teleportation.dm b/code/game/objects/items/teleportation.dm index e95668e1f3..bb860101ac 100644 --- a/code/game/objects/items/teleportation.dm +++ b/code/game/objects/items/teleportation.dm @@ -142,7 +142,7 @@ return ..() /obj/item/hand_tele/proc/try_dispel_portal(atom/target, mob/user, delay = 20) - var/datum/beam/B = user.Beam(target, beam_icon_state = "rped_upgrade", maxdistance = 50) + var/datum/beam/B = user.Beam(target, icon_state = "rped_upgrade", maxdistance = 50) if(is_parent_of_portal(target) && (!delay || do_after(user, delay, target = target))) qdel(target) to_chat(user, "You dispel [target] with \the [src]!") From c4b4a90bd8546ec8e57d199ce1cb94903ff8cbca Mon Sep 17 00:00:00 2001 From: Persi Date: Tue, 18 Feb 2020 21:52:34 -0500 Subject: [PATCH 039/175] Oh hey it's KiloStation Trying to make Kilo open... Finally, the work begins! Kilo added! Kilo Station! --- _maps/kilostation.dm | 1 + _maps/kilostation.json | 11 + _maps/map_files/KiloStation/KiloStation.dmm | 154021 +++++++++++++++++ _maps/shuttles/arrival_kilo.dmm | 558 + _maps/shuttles/cargo_kilo.dmm | 391 + _maps/shuttles/emergency_kilo.dmm | 2095 + _maps/shuttles/ferry_kilo.dmm | 293 + _maps/shuttles/labour_kilo.dmm | 312 + _maps/shuttles/mining_kilo.dmm | 242 + code/datums/shuttles.dm | 33 +- code/game/area/Space_Station_13_areas.dm | 16 + config/maps.txt | 3 + icons/turf/areas.dmi | Bin 38605 -> 39472 bytes 13 files changed, 157975 insertions(+), 1 deletion(-) create mode 100644 _maps/kilostation.dm create mode 100644 _maps/kilostation.json create mode 100644 _maps/map_files/KiloStation/KiloStation.dmm create mode 100644 _maps/shuttles/arrival_kilo.dmm create mode 100644 _maps/shuttles/cargo_kilo.dmm create mode 100644 _maps/shuttles/emergency_kilo.dmm create mode 100644 _maps/shuttles/ferry_kilo.dmm create mode 100644 _maps/shuttles/labour_kilo.dmm create mode 100644 _maps/shuttles/mining_kilo.dmm diff --git a/_maps/kilostation.dm b/_maps/kilostation.dm new file mode 100644 index 0000000000..d784be6e8f --- /dev/null +++ b/_maps/kilostation.dm @@ -0,0 +1 @@ +#define FORCE_MAP "_maps/kilostation.json" \ No newline at end of file diff --git a/_maps/kilostation.json b/_maps/kilostation.json new file mode 100644 index 0000000000..388f07ef1a --- /dev/null +++ b/_maps/kilostation.json @@ -0,0 +1,11 @@ +{ + "map_name": "Kilo Station", + "map_path": "map_files/KiloStation", + "map_file": "KiloStation.dmm", + "shuttles": { + "emergency": "emergency_kilo", + "ferry": "ferry_kilo", + "cargo": "cargo_kilo", + "whiteship": "whiteship_delta" + } +} \ No newline at end of file diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm new file mode 100644 index 0000000000..7b50420132 --- /dev/null +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -0,0 +1,154021 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aac" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat/atmos"; + dir = 8; + name = "MiniSat Atmospherics APC"; + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"aad" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/mmi/posibrain{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aae" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aaf" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aah" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigcelldoor"; + name = "Cell Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"aai" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aaj" = ( +/turf/closed/wall, +/area/security/brig) +"aak" = ( +/obj/structure/table, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"aal" = ( +/obj/structure/table, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/assembly/flash/handheld, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"aam" = ( +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aan" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"aao" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aap" = ( +/turf/closed/mineral/random/low_chance, +/area/space/nearstation) +"aaq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aas" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aau" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"aav" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aaw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"aax" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"aay" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"aaz" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aaB" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"aaC" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aaD" = ( +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "AI Chamber SMES"; + name = "core camera"; + network = list("aicore") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aaF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaG" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/security/prison) +"aaH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aaJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aaK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaL" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/folder, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aaM" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central/secondary"; + dir = 8; + name = "Central Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aaN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/radio/intercom{ + pixel_x = -28; + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aaO" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"aaP" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaQ" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"aaR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aaS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aaT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"aaU" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaV" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 4"; + name = "Cell 4"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aaX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"aaY" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aaZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aba" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"abb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"abc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 3"; + name = "Cell 3"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"abd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"abe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abf" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Law office"; + name = "Lawyer RC"; + pixel_y = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"abg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"abi" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abj" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"abl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy"; + name = "Office Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"abm" = ( +/obj/structure/bed/dogbed/runtime, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"abn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"abo" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/white, +/obj/item/wrench/medical, +/obj/item/toy/figure/cmo, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"abp" = ( +/turf/closed/wall, +/area/security/prison) +"abq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/captain{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen/fountain/captain, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_y = -28 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"abr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 1"; + name = "Cell 1"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"abs" = ( +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/pickaxe, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/clothing/under/color/grey, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"abv" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abw" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abx" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"aby" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI RC"; + pixel_x = 30; + pixel_y = -30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "AI Chamber Core"; + dir = 1; + name = "core camera"; + network = list("aicore") + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abz" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/optable{ + name = "Forensics Operating Table" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"abB" = ( +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abC" = ( +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abD" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"abE" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge) +"abG" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"abH" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"abI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"abJ" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"abK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 30 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"abN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore) +"abO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/security/warden) +"abP" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/chapel/office) +"abQ" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/status_display/ai{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abS" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abT" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/detectives_office) +"abU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/filingcabinet/security, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"abV" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abW" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abX" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"abY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"abZ" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aca" = ( +/obj/machinery/light, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"acb" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber Door"; + dir = 1; + name = "core camera"; + network = list("aicore") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"acc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_one_access_txt = "4;63" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"acd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"ace" = ( +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"acg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"ach" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/storage/box/evidence{ + pixel_y = 5 + }, +/obj/item/restraints/handcuffs/cable/zipties, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"acj" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ai_monitored/storage/satellite) +"ack" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"acl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"acm" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"acn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"aco" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"acp" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acq" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 8; + name = "detective camera" + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"acr" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"act" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"acu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Storage"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"acv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/scientist{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"acw" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_x = -30; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"acx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"acy" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"acz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"acB" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"acC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/random, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"acD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/departments/holy{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"acE" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/shovel, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"acF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"acG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Genetics"; + req_access_txt = "5; 9; 68" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"acH" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/warden) +"acI" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera{ + c_tag = "Satellite Atmospherics"; + dir = 8; + name = "satellite camera"; + network = list("minisat") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"acJ" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/radio{ + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"acK" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"acL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore) +"acM" = ( +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"acO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"acP" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"acQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"acR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"acS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"acT" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/md{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"acU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"acV" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"acW" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Satellite Antechamber"; + dir = 1; + name = "satellite camera"; + network = list("minisat") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acZ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"ada" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 26 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"adb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/aicard{ + pixel_x = 4 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Bridge Control Pit"; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"adc" = ( +/obj/structure/filingcabinet/employment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/button/door{ + id = "lawyer_shutters"; + name = "Law Office Shutters Toggle"; + pixel_x = 24; + req_access_txt = "38" + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"add" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"ade" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"adf" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"adg" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"adh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"adi" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"adj" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"adk" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"adl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"adm" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"adn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"ado" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"adp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"adq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"adr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"ads" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"adt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"adu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/courtroom, +/obj/item/gavelhammer, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Courtroom Judge"; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"adv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"adw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"adx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ady" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Satellite Maintenance"; + dir = 4; + name = "satellite camera"; + network = list("minisat") + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"adz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"adA" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"adB" = ( +/obj/machinery/computer/telecomms/monitor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"adC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"adE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; + dir = 1; + name = "MiniSat Foyer APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adG" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + pixel_y = 28; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adH" = ( +/turf/closed/wall, +/area/maintenance/fore) +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adJ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"adK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"adL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"adM" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"adN" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"adO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"adP" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/hallway/primary/fore) +"adQ" = ( +/turf/closed/wall/rust, +/area/maintenance/fore) +"adR" = ( +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adS" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adT" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat_interior) +"adU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/machinery/button/door{ + id = "prisonblast"; + name = "Prison Lockdown"; + pixel_y = 24; + req_one_access_txt = "2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"adW" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"adX" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"adY" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adZ" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"aea" = ( +/obj/structure/bed, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aeb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aec" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/machinery/button/door{ + id = "prisonblast"; + name = "Prison Lockdown"; + pixel_y = -24; + req_one_access_txt = "2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aed" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"aee" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"aef" = ( +/turf/closed/wall, +/area/security/warden) +"aeh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"aei" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"aej" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aek" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Satellite Foyer"; + dir = 8; + name = "satellite camera"; + network = list("minisat") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"ael" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/rust, +/area/security/warden) +"aem" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aen" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aeo" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"aep" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/item/storage/backpack/satchel/tox, +/obj/item/analyzer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aeq" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/engine, +/area/science/xenobiology) +"aer" = ( +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"aes" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aet" = ( +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aeu" = ( +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"aev" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) +"aew" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Closet"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aex" = ( +/obj/structure/transit_tube/station{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) +"aey" = ( +/turf/closed/wall/rust, +/area/security/main) +"aez" = ( +/turf/closed/wall, +/area/security/execution/education) +"aeA" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) +"aeB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/execution/education) +"aeD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aeE" = ( +/obj/structure/flora/rock/pile, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"aeF" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"aeG" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"aeH" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aeI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aeJ" = ( +/obj/structure/rack, +/obj/item/wirecutters{ + pixel_y = 5 + }, +/obj/item/wirerod, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aeK" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/small, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/fore) +"aeL" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/fore) +"aeM" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aeN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aeO" = ( +/obj/structure/bonfire, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; + name = "Carton of Estus" + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/item/melee/baseball_bat{ + desc = "Don't tell anyone you put any points into dex, though."; + icon_state = "swordon"; + item_state = "swordon"; + name = "moonlight greatsword" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"aeP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aeQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"aeR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aeS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Lockdown Toggle"; + pixel_x = 6; + pixel_y = 8; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "transittube"; + name = "Transit Tube Lockdown Toggle"; + pixel_x = 6; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutter Toggle"; + pixel_x = -6; + pixel_y = 8; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Toggle"; + pixel_x = -6; + pixel_y = -2; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aeT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aeU" = ( +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"aeV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aeW" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aeX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"aeY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/security/warden) +"aeZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Containment Chamber Toggle"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"afa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"afb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"afc" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/security/brig) +"afd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/secure_closet/injection{ + name = "Justice Injections" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/button/door{ + id = "SecJusticeChamber"; + layer = 4; + name = "Justice Vent Toggle"; + pixel_x = -24; + pixel_y = 8; + req_access_txt = "3" + }, +/obj/machinery/light_switch{ + pixel_x = -40; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Justice Shutter Control"; + pixel_x = -24; + pixel_y = -8; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"afe" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"aff" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"afg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"afh" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"afi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"afj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"afk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"afl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"afm" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/port/aft) +"afn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"afo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Chamber" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"afq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afr" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"afs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/turf/open/floor/plating, +/area/security/warden) +"aft" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"afu" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"afw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afx" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"afy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/scientist, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afz" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/port/aft) +"afA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Chamber" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"afC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"afD" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"afE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"afF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afH" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/taperecorder, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"afI" = ( +/obj/structure/flora/rock/pile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"afJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"afK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/sheet/metal/ten, +/obj/item/stack/cable_coil, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/wirecutters, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"afL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Labs"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"afP" = ( +/obj/machinery/computer/message_monitor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"afQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/library) +"afR" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"afS" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"afT" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/door/window/northleft{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "Bridge Emergency Supplies"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"afU" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/science/xenobiology"; + dir = 4; + name = "Xenobiology APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afX" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"afY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/flashlight/lantern, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"afZ" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aga" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"agc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"agd" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"age" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Lockdown Shutter" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agf" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Euthanization Chamber"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"agg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"agi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"agj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"agk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"agl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"agm" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"agn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"ago" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"agp" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Recreation VR Sleepers"; + name = "recreation camera" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"agq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 6"; + name = "Cell 6"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"agr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ags" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 5"; + name = "Cell 5"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"agt" = ( +/turf/closed/wall/rust, +/area/space/nearstation) +"agu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"agv" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"agw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"agx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"agy" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"agz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"agA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/fore) +"agB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"agC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/cardboard_cutout{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cardboard_cutout, +/turf/open/floor/plating, +/area/maintenance/fore) +"agD" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"agE" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agF" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agG" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"agH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"agI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"agJ" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"agK" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"agL" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"agM" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"agN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 5 + }, +/turf/closed/wall, +/area/engine/break_room) +"agO" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/crew_quarters/heads/hos) +"agP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"agQ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"agR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/medical/virology"; + dir = 1; + name = "Virology APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"agS" = ( +/turf/closed/wall, +/area/security/main) +"agT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"agU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/main) +"agV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"agW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"agX" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"agY" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"agZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Upload Access"; + req_one_access_txt = "16" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aha" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"ahb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "justiceshutter"; + name = "Justice Shutter" + }, +/turf/open/floor/plating, +/area/security/execution/education) +"ahc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy"; + name = "Office Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/storage) +"ahd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/melee/baseball_bat{ + desc = "A staple of security force interrogations."; + icon_state = "baseball_bat_metal"; + name = "kneecapper" + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ahe" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ahf" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ahg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ahh" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ahi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ahj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ahk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ahl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"ahm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"ahn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"aho" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Closet"; + dir = 1; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"ahq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"ahr" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "brigcelldoor"; + name = "Cell Blast Door Toggle"; + pixel_x = -24; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "brigfrontdoor"; + name = "Front Blast Door Toggle"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_x = -30; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ahs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aht" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ahu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"ahv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ahw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"ahx" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/hallway/primary/fore) +"ahy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Transit Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ahz" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "construction zone"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"ahA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/stack/spacecash/c500{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/spacecash/c1000, +/obj/item/gun/ballistic/automatic/pistol/deagle/gold, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"ahD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahE" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"ahF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"ahG" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahI" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ahJ" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/fore) +"ahK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/window/southleft{ + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahL" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"ahM" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"ahN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"ahO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ahQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ahR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ahS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central) +"ahT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"ahV" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ahX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"ahY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aia" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aib" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aic" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/main) +"aid" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aie" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aif" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"aig" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"aih" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aii" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aij" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/grass, +/area/chapel/main) +"aik" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"ail" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aim" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ain" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Evidence Closet"; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aip" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aiq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"air" = ( +/obj/effect/turf_decal/loading_area, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/window/southleft{ + name = "cage door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ais" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Shower_2"; + name = "Shower 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/toilet/restrooms) +"ait" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aiu" = ( +/obj/item/trash/chips, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"aiv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aiw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Base Construction"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aix" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/main) +"aiy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/main) +"aiz" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aiB" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Shower_1"; + name = "Shower 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/toilet/restrooms) +"aiC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"aiD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) +"aiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"aiG" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/main) +"aiH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/crowbar/red, +/obj/item/radio/headset/headset_sec, +/turf/open/floor/plasteel, +/area/security/main) +"aiI" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/security/main) +"aiJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/head/helmet/justice/escape{ + name = "justice helmet" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiK" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/main) +"aiL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"aiM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "chapel locker" + }, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"aiP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"aiQ" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aiS" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiT" = ( +/obj/structure/table, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aiV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aiW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aiX" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"aiY" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too."; + health = 45; + maxHealth = 45; + name = "Officer Beepsky" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aja" = ( +/obj/machinery/door/airlock/maintenance{ + name = "morgue maintenance"; + req_access_txt = "6" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ajb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/toy/figure/borg{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"ajc" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"ajd" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"aje" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/chapel/office) +"ajf" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/main) +"ajg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ajh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aji" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"ajj" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"ajk" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ajl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ajm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "virology sorting disposal pipe"; + sortType = 27 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"ajn" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ajo" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel, +/area/security/main) +"ajp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ajr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ajs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ajt" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aju" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ajv" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"ajw" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/taperecorder{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ajx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"ajy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"ajz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/restraints/legcuffs/beartrap, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"ajA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"ajB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ajD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"ajE" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ajG" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"ajH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/security{ + name = "Council Chamber"; + req_one_access_txt = "38;63" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ajI" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"ajJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ajK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Council Chamber"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ajL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "Emergency Research Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/research) +"ajM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"ajN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ajO" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ajP" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"ajQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/evidence, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ajR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ajS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ajT" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port/aft) +"ajU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ajV" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ajW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ajX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ajY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "genetics maintenance"; + req_access_txt = "5; 9; 68" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ajZ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aka" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"akb" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/bridge) +"akc" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"akd" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"ake" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"akf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akg" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"akh" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/maintenance/port/aft) +"aki" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"akj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"akk" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Research Division" + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Research Division Delivery Access"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"akm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ako" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"akp" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Xenobiology Computers"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"akq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"akr" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/department/electrical"; + dir = 1; + name = "Electrical Maintenance APC"; + pixel_y = 23 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aks" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/engine/atmos) +"akt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Room" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"akv" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"akw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"akx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"aky" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"akz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"akA" = ( +/turf/closed/wall/mineral/plastitanium, +/area/maintenance/starboard) +"akB" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/machinery/door/window/eastleft{ + name = "Robotics Delivery Access"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"akC" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"akD" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"akE" = ( +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"akF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"akG" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"akH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"akI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"akJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"akK" = ( +/turf/closed/wall, +/area/security/processing) +"akL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "38" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"akM" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"akN" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"akO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"akP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"akQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/key/security, +/obj/item/key/security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"akR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akT" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"akU" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"akV" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"akW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"akX" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/science/xenobiology) +"akY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/chapel/office) +"akZ" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ala" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/button/door{ + id = "Abandoned Cell"; + name = "Abandoned Door Lock"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"alb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"alc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"ald" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/book/manual/wiki/detective{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/taperecorder, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"ale" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"alf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/fore"; + dir = 1; + name = "Starboard Bow Maintenance APC"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alg" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"alh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/computer/operating, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"ali" = ( +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Auxiliary Base Shutters Toggle"; + pixel_x = -24; + pixel_y = 6; + req_one_access_txt = "32;47;48" + }, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast door" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/bridge) +"alk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"all" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"alm" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/space/nearstation) +"aln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"alo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/hos"; + dir = 1; + name = "Head of Security's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"alp" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"alr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"als" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/stack/cable_coil{ + pixel_y = 8 + }, +/obj/item/stack/rods/ten{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"alt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"alu" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"alv" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"alw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"alx" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"aly" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"alz" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"alA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"alB" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"alC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"alD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/color/brown, +/obj/item/clothing/under/overalls, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"alE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"alF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"alG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"alH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"alI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"alJ" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"alK" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/hos, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alL" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alM" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp/hos, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"alO" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"alP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"alQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"alR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"alS" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"alT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"alU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"alV" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat_interior) +"alW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"alX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"alY" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"alZ" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Unit_3"; + name = "Unit 3" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/toilet/restrooms) +"ama" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"amb" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"amc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"amd" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ame" = ( +/obj/machinery/computer/prisoner{ + dir = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"amf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"amh" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/power/apc{ + areastring = "/area/tcommsat/computer"; + name = "Telecomms Monitoring APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"ami" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"amj" = ( +/obj/machinery/announcement_system, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"amk" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aml" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"amm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"amn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"amo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"amp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"amq" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk{ + environment_smash = 0 + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"amr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"ams" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"amt" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/window/northleft{ + name = "cage door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"amu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/fore) +"amv" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"amw" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"amx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"amz" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/port) +"amA" = ( +/turf/closed/wall, +/area/maintenance/port) +"amB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"amC" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amD" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"amE" = ( +/obj/machinery/computer/security/hos{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"amF" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"amG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"amH" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -26 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"amI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Security Secways"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"amJ" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/lockbox/loyalty, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"amK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"amL" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"amM" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pixel_y = 4 + }, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"amN" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"amO" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"amP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/aft) +"amQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"amR" = ( +/turf/closed/wall/rust, +/area/maintenance/port) +"amS" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"amT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"amU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/spacecash/c500{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/lazarus_injector, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"amV" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"amW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"amY" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"amZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/mob/living/simple_animal/hostile/russian, +/turf/open/floor/wood, +/area/maintenance/port) +"ana" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"anb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/belt/janitor, +/obj/item/storage/bag/trash, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"anc" = ( +/obj/structure/falsewall{ + name = "suspicious wall" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"and" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ane" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"anf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"ang" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"anh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/processing) +"ani" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anj" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ank" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"anl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"anm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ann" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"ano" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anp" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"anq" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"anr" = ( +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"ans" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"ant" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"anu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"anv" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anw" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/security/main) +"anx" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"any" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/stack/spacecash/c50{ + pixel_y = 8 + }, +/obj/item/stack/spacecash/c50, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"anz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"anA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "Space Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"anC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"anD" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"anE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"anF" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"anG" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"anH" = ( +/turf/closed/wall, +/area/space/nearstation) +"anI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "bible locker" + }, +/obj/item/storage/book/bible{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/book/bible, +/obj/item/storage/book/bible{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"anJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"anK" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"anL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/camera{ + c_tag = "Brig Prison Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anM" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anN" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/security/brig"; + dir = 1; + name = "Brig APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"anO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"anP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"anQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard"; + name = "Starboard Maintenance APC"; + pixel_y = -23 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"anR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"anS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"anT" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/camera, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"anU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"anV" = ( +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/security/armory"; + name = "Armoury APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"anW" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"anX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"anY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"anZ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/port/aft) +"aoa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"aob" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aoc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"aod" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"aoe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aof" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/space/nearstation) +"aog" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Office Lockers" + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"aoh" = ( +/turf/closed/wall, +/area/lawoffice) +"aoi" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aoj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aok" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aol" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/easel, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aom" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/toy/figure/hop{ + pixel_x = -8 + }, +/obj/item/toy/figure/ian{ + pixel_x = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -28 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aon" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Unit_2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/toilet/restrooms) +"aoo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aop" = ( +/obj/structure/displaycase/captain, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"aoq" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aor" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/item/cartridge/lawyer, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/power/apc{ + areastring = "/area/lawoffice"; + dir = 1; + name = "Law Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aos" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aot" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aou" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"aov" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"aow" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aox" = ( +/turf/closed/wall, +/area/maintenance/central) +"aoy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/law{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aoz" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aoA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "Law Office Shutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"aoB" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/lawyer, +/turf/open/floor/carpet, +/area/lawoffice) +"aoC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"aoD" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/tcommsat/computer) +"aoE" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aoF" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aoG" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Unit_1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/toilet/restrooms) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"aoJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fore) +"aoK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/departments/science{ + name = "ROBOTICS"; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aoL" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_4"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"aoM" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection"; + req_access_txt = "12" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aoN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/machinery/camera{ + c_tag = "Telecomms Monitoring"; + dir = 4; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"aoO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aoP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/lawoffice) +"aoQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"aoR" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/lawoffice) +"aoS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"aoT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aoU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aoV" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/virology) +"aoW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aoX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"aoY" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aoZ" = ( +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"apa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apb" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"apc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apd" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"apf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"apg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aph" = ( +/obj/structure/chair, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"api" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apk" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/courtroom"; + dir = 4; + name = "Courtroom APC"; + pixel_x = 26; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"apm" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses/big{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/big, +/turf/open/floor/carpet, +/area/lawoffice) +"apn" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"apo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "science locker" + }, +/obj/item/clothing/under/rank/scientist{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/toggle/labcoat/science, +/obj/item/clothing/shoes/sneakers/white, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"app" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/wallframe/camera, +/obj/item/screwdriver, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"apq" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"apr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aps" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/port/fore) +"apu" = ( +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/port/fore) +"apv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/engineering, +/obj/item/hand_tele, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"apw" = ( +/obj/item/twohanded/required/kirbyplants, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"apy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"apz" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/port/fore"; + dir = 4; + name = "Port Bow Solar APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Port Bow Solar"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/port/fore) +"apB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"apD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/gps{ + gpstag = "TP0" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"apE" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"apF" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/bowler{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"apG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"apH" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"apI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore) +"apJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"apK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"apL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/teleporter) +"apM" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/storage/lockbox/loyalty, +/obj/item/hand_labeler, +/obj/machinery/keycard_auth{ + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"apN" = ( +/obj/structure/bed/dogbed/ian, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/hop"; + dir = 1; + name = "Head of Personnel's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/mob/living/simple_animal/pet/dog/corgi/Ian{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"apO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"apP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"apR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"apS" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/starboard/fore) +"apT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"apU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apV" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_3"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"apW" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/item/circuitboard/machine/telecomms/bus{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/machinery/camera{ + c_tag = "Telecomms Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/storage/tcom) +"apX" = ( +/turf/closed/wall/rust, +/area/maintenance/central) +"apY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"apZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aqa" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"aqb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aqc" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqd" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"aqe" = ( +/obj/machinery/computer/prisoner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/item/wallframe/apc, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aqg" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aqh" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqi" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqj" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqk" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aql" = ( +/obj/structure/cable, +/obj/machinery/computer/monitor{ + dir = 1; + name = "backup power monitoring console" + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aqn" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aqo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"aqp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"aqq" = ( +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/explab) +"aqr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/port/fore) +"aqs" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aqt" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/flask/gold{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aqu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aqv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/librarian, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"aqw" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqx" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqy" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"aqB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqC" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqE" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/keycard_auth, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aqG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aqI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aqJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aqK" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"aqL" = ( +/obj/machinery/computer/monitor{ + dir = 4; + name = "Bridge Power Monitoring Console" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqN" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqO" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqP" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/obj/item/clothing/mask/fakemoustache, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aqQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aqR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/blue, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/window/southright{ + name = "Reception Desk" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"aqS" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aqT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aqU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"aqV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aqW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aqX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/ore_silo, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"aqY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"ara" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northright{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arb" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"arc" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"ard" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/fireaxecabinet{ + pixel_y = -30 + }, +/obj/machinery/door/window/northright{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"are" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/office) +"arf" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_2"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"arg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"arh" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ari" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"arj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Cryosleepers" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"ark" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"arl" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"arm" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/crayons, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + name = "chapel camera" + }, +/turf/open/floor/wood, +/area/chapel/office) +"arn" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom) +"aro" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/chapel/office) +"arp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"arq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Security Doors"; + dir = 4; + name = "aft camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"arr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"ars" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"art" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/starboard/fore) +"aru" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_y = -30 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = -8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"arv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/camera{ + c_tag = "Teleporter Access"; + dir = 4; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"arx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ary" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"arz" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"arA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"arB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"arC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"arE" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/power/apc{ + areastring = "/area/storage/tcom"; + dir = 8; + name = "Telecomms Storage APC"; + pixel_x = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tcom) +"arF" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/plaques/golden/captain{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"arG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/storage/tcom) +"arH" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tcom) +"arI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "xenobiology sorting disposal pipe"; + sortType = 28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"arJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"arK" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"arL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"arM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/camera{ + c_tag = "Xenobiology Entrance"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"arN" = ( +/obj/machinery/computer/shuttle/labor, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"arQ" = ( +/obj/machinery/light/small, +/obj/item/stack/cable_coil, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/port/fore) +"arR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"arS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/port/fore) +"arT" = ( +/obj/machinery/power/smes, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/port/fore) +"arU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"arV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 5 + }, +/obj/item/crowbar/red, +/obj/item/lighter{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/secure/safe{ + pixel_x = 34 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"arW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/bridge) +"arX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"arY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/bridge) +"arZ" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"asa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"asc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"asd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"ase" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asf" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"asg" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ash" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"asi" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) +"asj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"ask" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"asl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aso" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "CloningDoor"; + name = "Cloning Lab"; + req_access_txt = "5;68" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"asp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asq" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asr" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "chapelgun" + }, +/obj/item/gps, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/chapel/office) +"ass" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"ast" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asu" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"asv" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asx" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"asy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"asA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"asB" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"asC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"asD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate, +/obj/item/storage/crayons, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/maintenance/fore) +"asE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"asF" = ( +/turf/closed/wall, +/area/security/courtroom) +"asH" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"asI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/destTagger, +/obj/item/destTagger, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"asJ" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"asK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"asL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"asM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main) +"asN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asO" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/prison) +"asP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"asQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"asT" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/starboard/fore"; + dir = 1; + name = "Starboard Bow Solar APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/starboard/fore) +"asU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"asV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asZ" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"ata" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + name = "Crowd Pacifier"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"atb" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/fore) +"atc" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/courtroom) +"atd" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/hand_tele, +/obj/structure/mirror{ + pixel_x = -26 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"ate" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/fore) +"atf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/courtroom) +"atg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"ath" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"ati" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/oxygen/red, +/obj/item/stack/packageWrap, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/fore) +"atj" = ( +/turf/closed/wall, +/area/bridge) +"atk" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"atl" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atm" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks{ + pixel_y = 5 + }, +/obj/item/radio/headset/headset_medsci, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"ato" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/genetics"; + dir = 1; + name = "Genetics Lab APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"atp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"atr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/pen/fourcolor, +/obj/item/stamp/hop{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"ats" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"att" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atu" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "Queue Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"atv" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"atw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Chapel"; + dir = 4; + name = "chapel camera" + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main) +"atx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aty" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "robotics sorting disposal pipe"; + sortType = 14 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"atz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/effect/landmark/start/chaplain, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"atB" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"atC" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"atD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/healthanalyzer, +/obj/item/hand_labeler, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atE" = ( +/obj/effect/turf_decal/loading_area, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "Queue Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"atF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"atG" = ( +/obj/structure/sign/poster/official/pda_ad, +/turf/closed/wall/rust, +/area/crew_quarters/heads/hop) +"atH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"atI" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Toggle"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "57" + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Toggle"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "57" + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 36; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + pixel_x = 36; + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"atJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"atK" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/medical/virology) +"atL" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"atM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"atN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"atO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"atQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"atR" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"atS" = ( +/obj/machinery/telecomms/receiver/preset_right, +/obj/machinery/camera{ + c_tag = "Telecomms Server SMES"; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"atT" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"atU" = ( +/obj/machinery/telecomms/receiver/preset_left, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"atV" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"atW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/hostile/retaliate/ghost, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/starboard/fore) +"atX" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"atY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"atZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"aua" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aub" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"auc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aue" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"auf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc{ + areastring = "/area/science/explab"; + dir = 1; + name = "Experimentation Lab APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"aug" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_one_access_txt = "17;19" + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"auh" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aui" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"auj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "hydroponics maintenance"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"auk" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/lawoffice) +"aum" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aun" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"auo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"auq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aur" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aus" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"aut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"auu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Connector to Science" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"auv" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"auw" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/bridge) +"aux" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"auy" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/bridge) +"auz" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"auA" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/fore) +"auB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/fore) +"auC" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"auD" = ( +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Security Equipment Room"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auE" = ( +/turf/closed/wall, +/area/storage/primary) +"auG" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"auH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"auI" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/turf/open/floor/plasteel, +/area/security/courtroom) +"auJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/fore) +"auK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"auL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"auM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"auN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"auO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"auP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/courtroom) +"auQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"auR" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/light{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"auS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/break_room) +"auT" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"auU" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"auW" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"auX" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"auY" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + name = "command camera" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"ava" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard) +"avb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance"; + req_access_txt = "17;19" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"avc" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/courtroom) +"avd" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/blue, +/obj/item/melee/chainofcommand, +/obj/item/toy/figure/captain, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"ave" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"avf" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"avg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/radio/intercom{ + pixel_x = -28; + pixel_y = 22 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"avh" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"avi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 32 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"avj" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/item/card/id/captains_spare, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"avk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"avl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/clothing/suit/suspenders, +/obj/item/clothing/head/papersack/smiley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"avm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avn" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"avp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avq" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/aft) +"avr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"avt" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -7 + }, +/obj/machinery/recharger{ + pixel_x = 7 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_x = 32; + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "sidearmory"; + name = "Armoury Shutter Toggle"; + pixel_x = -8; + pixel_y = 24; + req_access_txt = "3" + }, +/obj/machinery/button/door{ + id = "prisonblast"; + name = "Prison Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_one_access_txt = "2" + }, +/obj/item/toy/figure/warden, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"avu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/morgue"; + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"avv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/briefcase, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"avw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/primary/fore"; + dir = 1; + name = "Fore Primary Hallway APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"avx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"avy" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avz" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/blue, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"avB" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"avD" = ( +/obj/structure/table/wood/fancy, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + name = "Chapel RC"; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/chapel/office) +"avE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/chapel/office) +"avF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"avG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/chapel/office"; + name = "Chapel Office APC"; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"avH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 5 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"avI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"avJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"avK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"avL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/caution, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Crematorium"; + dir = 1; + name = "chapel camera" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"avM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Security Office Computers"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"avN" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"avO" = ( +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avP" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"avQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"avR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/bridge) +"avS" = ( +/obj/machinery/computer/bounty{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"avT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"avU" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avV" = ( +/obj/machinery/pdapainter, +/obj/structure/sign/poster/official/ian{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"avW" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Crematorium"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"avZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/port/fore) +"awa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"awb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"awc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"awd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"awe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/stack/packageWrap, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/backpack/cultpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/color/black, +/obj/structure/closet{ + name = "chapel locker" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"awg" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"awi" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"awj" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"awk" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awl" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"awm" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"awn" = ( +/obj/machinery/vending/sustenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"awo" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awp" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/keycard_auth{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 24 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"awq" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/primary) +"awr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aws" = ( +/obj/machinery/status_display/ai{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awt" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"awu" = ( +/turf/closed/wall/r_wall, +/area/engine/atmos) +"awv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"aww" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awx" = ( +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32 + }, +/obj/machinery/button/door{ + id = "ceprivate"; + name = "Privacy Shutters Toggle"; + pixel_x = -6; + pixel_y = 24; + req_one_access_txt = "56" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Secure Storage Toggle"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "11" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"awy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"awz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/cartridge/engineering{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/cartridge/engineering{ + pixel_x = 8 + }, +/obj/item/cartridge/atmos{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/folder, +/obj/item/stamp/ce, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"awA" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/book/bible{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/book/bible{ + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"awB" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/sheet/plasteel/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/camera{ + c_tag = "Engineering Storage"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"awD" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"awE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"awF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Engineering Checkpoint RC"; + pixel_x = -30 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/computer/security/telescreen/engine, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"awG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"awH" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"awI" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awK" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"awN" = ( +/turf/closed/wall/r_wall, +/area/engine/break_room) +"awO" = ( +/obj/machinery/computer/card/minor/ce, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/ce{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"awP" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"awQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/backpack/satchel/med, +/obj/item/assembly/health, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awR" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"awS" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/security/processing) +"awT" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/pill/patch/silver_sulf, +/obj/item/reagent_containers/pill/patch/silver_sulf, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"awU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"awW" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engine/break_room) +"awX" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/chief) +"awY" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"axa" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"axb" = ( +/turf/closed/wall, +/area/engine/engineering) +"axc" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"axd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + desc = "A pump that moves gas by pressure. Shower not included."; + dir = 8; + name = "Gas to Chamber" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"axe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"axf" = ( +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"axg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"axh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/yellow, +/obj/item/lighter, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"axi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"axj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"axk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"axl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"axm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Teleport Access"; + req_access_txt = "17;19" + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"axn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"axo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Distro to Connector" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"axp" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"axq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"axr" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/obj/machinery/status_display/shuttle{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"axs" = ( +/obj/machinery/computer/rdconsole/production{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"axt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Starboard Bow Solar"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/fore) +"axu" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mech bay maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"axv" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"axw" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"axx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/starboard/fore) +"axy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "genetics sorting disposal pipe"; + sortType = 23 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"axz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axA" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"axB" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/air{ + pixel_x = 5 + }, +/obj/item/tank/internals/air{ + pixel_x = -5 + }, +/obj/item/wrench, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"axC" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"axD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "skirt closet" + }, +/obj/item/clothing/under/skirt/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/skirt/blue, +/obj/item/clothing/under/skirt/black{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axE" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/recharger, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/chief"; + dir = 4; + name = "Chief Engineer's Office APC"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"axF" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"axG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"axI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"axJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/hyper, +/obj/item/stack/cable_coil, +/obj/item/twohanded/rcl/pre_loaded, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"axK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"axL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"axM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"axN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"axO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"axP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -2 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"axQ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/cable_coil{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/cable_coil, +/obj/item/electronics/apc, +/obj/item/electronics/apc, +/obj/item/twohanded/rcl/pre_loaded, +/obj/item/twohanded/rcl/pre_loaded, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"axR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"axU" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"axW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"axX" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"axY" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"axZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aya" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ayd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aye" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ayf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"ayg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivate"; + name = "Chief Engineer's Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"ayh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ayi" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ayk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ayl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aym" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayn" = ( +/turf/open/floor/engine, +/area/engine/supermatter) +"ayo" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"ayp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"ayq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ays" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"ayu" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"ayv" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/science/xenobiology) +"ayw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"ayx" = ( +/obj/machinery/computer/rdconsole/experiment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"ayy" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ayz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayA" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"ayB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"ayC" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"ayD" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm/server{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"ayE" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"ayG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"ayH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"ayI" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"ayJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"ayK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"ayM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"ayN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"ayO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Docking Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 40 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"ayP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"ayQ" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ayS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/pickaxe, +/obj/item/shovel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"ayT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ayU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/packageWrap, +/obj/item/crowbar, +/obj/item/hand_labeler, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"ayV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ayW" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Engineering Lockers"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ayY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"ayZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aza" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"azb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sign/departments/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"azc" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"azd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate, +/obj/item/vending_refill/snack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/vending_refill/cola, +/obj/item/screwdriver, +/turf/open/floor/plating, +/area/maintenance/starboard) +"azf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 6 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 6 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 6 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"azg" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"azh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"azi" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"azj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"azk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"azl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"azm" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"azn" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"azo" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"azp" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azr" = ( +/obj/structure/chair/wood/normal, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azs" = ( +/obj/structure/table, +/obj/item/candle/infinite{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/kitchen/fork, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"azt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"azu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azv" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat_interior) +"azw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"azx" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "rd sorting disposal pipe"; + sortType = 13 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"azy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"azz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"azA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/packageWrap, +/obj/item/stack/sheet/glass/fifty, +/obj/item/hand_labeler, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"azB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"azC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"azD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"azE" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"azF" = ( +/obj/structure/flora/junglebush/c, +/mob/living/carbon/monkey{ + name = "curious george" + }, +/turf/open/floor/grass, +/area/medical/genetics) +"azG" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"azH" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer3{ + dir = 10 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/circuit/red, +/area/engine/engineering) +"azI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"azJ" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"azK" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"azL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"azM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer3{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/break_room) +"azN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer3{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/break_room) +"azO" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/geneticist{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"azP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"azQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"azR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "chapel sorting disposal pipe"; + sortType = 17 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"azU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer3, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/circuit/red, +/area/engine/engineering) +"azV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"azX" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"azY" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/chapel/main) +"azZ" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/potato, +/turf/open/floor/grass, +/area/chapel/main) +"aAa" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAb" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/window/reinforced, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"aAc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "Chemistry Hall Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"aAd" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAf" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aAg" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/ai) +"aAh" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aAi" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aAj" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aAk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aAl" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/server"; + dir = 4; + name = "Telecomms Server Room APC"; + pixel_x = 25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"aAp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aAr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aAs" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aAt" = ( +/obj/machinery/power/apc{ + areastring = "/area/chapel/main"; + dir = 8; + name = "Chapel APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main) +"aAu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main) +"aAv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/chapel/main) +"aAw" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aAx" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/beebox, +/turf/open/floor/grass, +/area/chapel/main) +"aAz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/status_display/ai{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aAB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aAC" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAD" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/chapel/main) +"aAE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Satellite" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aAF" = ( +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aAG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/storage/backpack/duffelbag{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aAH" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aAI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/gateway"; + dir = 1; + name = "Gateway APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/gateway) +"aAJ" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"aAK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAL" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAM" = ( +/turf/open/floor/engine, +/area/engine/engineering) +"aAN" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/pen/blue, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aAO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=N CPH"; + dir = 8; + location = "NW CPH"; + name = "Patrol navbeacon NW" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aAR" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aAS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aAT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Docking Hallway" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"aAV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aAW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Apiary"; + req_one_access_txt = "22;35" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aAX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAY" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"aBa" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aBb" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aBc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/icecream_vat, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aBd" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"aBe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aBf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aBg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aBh" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/gun/energy/e_gun/mini, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"aBi" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"aBj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aBk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/shard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aBl" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aBm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"aBn" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aBo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"aBp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aBq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/clipboard{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/machinery/camera{ + c_tag = "Cryogenics"; + dir = 8; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aBr" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aBs" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aBt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cloning, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aBu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "supermatter maintenance"; + req_one_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"aBv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aBw" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"aBx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aBy" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/grass, +/area/chapel/main) +"aBz" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/grass, +/area/chapel/main) +"aBA" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBB" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/beebox, +/turf/open/floor/grass, +/area/chapel/main) +"aBC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen maintenance"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aBD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aBE" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/head/welding{ + pixel_y = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/storage/primary"; + dir = 1; + name = "Tool Storage APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Tool Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aBF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aBH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aBI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aBJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Autopsy"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aBK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aBL" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aBM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aBN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aBO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aBP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aBQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aBR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aBS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmospherics RC"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aBT" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aBU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aBV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aBW" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aBX" = ( +/obj/structure/transit_tube/station/reverse{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube_pod{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aBZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/atmos{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aCa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aCb" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"aCc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/engine/break_room) +"aCd" = ( +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aCe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aCf" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aCg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"aCh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aCi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aCj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"aCk" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Telecomms Server Room"; + dir = 8; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"aCl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/gateway) +"aCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aCn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aCo" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aCp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aCq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aCr" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"aCs" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aCt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aCu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aCv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aCw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"aCx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aCy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aCz" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"aCA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aCB" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aCC" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway"; + req_access_txt = "62" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aCD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aCE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aCF" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aCG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "47" + }, +/obj/machinery/light_switch{ + pixel_x = 38; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "rdprivacy"; + name = "Director's Privacy Toggle"; + pixel_x = 24; + pixel_y = 38 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/button/door{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Lockdown"; + pixel_x = 38; + pixel_y = 38; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aCH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/shard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aCI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aCJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aCK" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aCL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aCM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aCN" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/grass, +/area/chapel/main) +"aCO" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aCP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aCQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aCR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aCS" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aCT" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aCU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/sign/plaques/atmos, +/turf/closed/wall, +/area/engine/break_room) +"aCV" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"aCW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aCX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aCY" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/clothing/head/welding{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aCZ" = ( +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = -4 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aDa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aDb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aDc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer1{ + dir = 1 + }, +/obj/machinery/power/apc{ + area = "/area/engine/break_room"; + name = "Engineering Foyer APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/break_room) +"aDd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aDe" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aDf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/power/apc/unlocked{ + areastring = "/area/medical/genetics/cloning"; + dir = 4; + name = "Cloning Lab APC"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Cloning Lab"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aDg" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aDh" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/grass, +/area/chapel/main) +"aDi" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aDj" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aDk" = ( +/turf/closed/wall, +/area/engine/atmos) +"aDm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aDn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aDo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aDp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"aDq" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_x = 32 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/red, +/area/engine/engineering) +"aDr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"aDs" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aDt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Pure to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aDu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "transittube_ai"; + name = "Transit Tube Lockdown Toggle"; + pixel_x = -24; + pixel_y = -8; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Satellite Transit Access"; + dir = 4; + name = "satellite camera"; + network = list("minisat") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDv" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aDw" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aDx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/gateway) +"aDy" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aDz" = ( +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aDA" = ( +/obj/machinery/atmospherics/miner/nitrogen{ + max_ext_kpa = 2500 + }, +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aDB" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"aDC" = ( +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aDD" = ( +/obj/machinery/atmospherics/miner/oxygen{ + max_ext_kpa = 2500 + }, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aDE" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Air"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aDF" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/auxbase{ + dir = 4; + pixel_x = -28 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/assault_pod/mining, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"aDG" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/processing) +"aDH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"aDI" = ( +/turf/closed/wall, +/area/science/lab) +"aDJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"aDK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"aDL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aDM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aDN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aDO" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aDP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aDQ" = ( +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"aDR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aDS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aDT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aDU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aDV" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aDW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"aDX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aDY" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aDZ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aEa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aEb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aEc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aEd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEe" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEg" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEh" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aEi" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aEj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"aEk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aEl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aEm" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aEp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"aEq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"aEr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aEs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aEt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aEu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aEv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aEw" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/port) +"aEx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aEy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"aEz" = ( +/obj/structure/table, +/obj/item/storage/box/deputy, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aEA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aEB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aEC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aED" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aEE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aEF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aEG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aEH" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + name = "vault camera"; + network = list("vault") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/security/nuke_storage) +"aEI" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aEJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aEK" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/hallway/secondary/entry) +"aEL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aEM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aEN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aEO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/gateway) +"aEP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/gateway) +"aER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/gateway) +"aES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aET" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aEU" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/aft) +"aEV" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"aEW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Evidence"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aEX" = ( +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/closet/secure_closet{ + name = "shotgun rubber rounds"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aEY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aEZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"aFa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aFb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aFc" = ( +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aFd" = ( +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aFe" = ( +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aFf" = ( +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"aFg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engine/engineering"; + name = "Engine Room APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aFh" = ( +/obj/machinery/recharger{ + pixel_x = -7 + }, +/obj/machinery/recharger{ + pixel_x = 7 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aFi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"aFj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aFk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aFl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"aFm" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide{ + max_ext_kpa = 2500 + }, +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aFn" = ( +/obj/machinery/atmospherics/miner/toxins{ + max_ext_kpa = 2500 + }, +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aFo" = ( +/obj/machinery/atmospherics/miner/n2o{ + max_ext_kpa = 2500 + }, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aFp" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aFq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aFr" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aFs" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"aFt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aFu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"aFv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aFw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aFx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aFy" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/security/processing"; + dir = 8; + name = "Labor Shuttle Dock APC"; + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/evidence, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aFz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aFA" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aFB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aFC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"aFD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aFE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aFF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aFG" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"aFH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"aFI" = ( +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aFK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = -37; + pixel_y = -6 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aFL" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aFM" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aFN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/space/basic, +/area/maintenance/disposal/incinerator) +"aFO" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aFP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Incinerator"; + req_access_txt = "24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aFQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aFR" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aFT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"aFU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/meter, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aFV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aFW" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aFX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aFY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/igniter{ + id = "Incinerator" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aFZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aGa" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aGb" = ( +/obj/machinery/power/turbine{ + luminosity = 2 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aGc" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aGe" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aGf" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Atmospherics Lockers"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aGh" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aGi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aGj" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Research and Development" + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Delivery Access"; + req_one_access_txt = "7;29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aGk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aGl" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aGn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aGo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aGq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aGr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aGs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aGt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/wrench/medical, +/obj/item/reagent_containers/pill/mannitol, +/obj/item/reagent_containers/pill/mannitol, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/cryo"; + dir = 4; + name = "Cryogenics APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aGu" = ( +/obj/structure/table, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer1{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/break_room) +"aGw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aGx" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/pipedispenser/disposal, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/pipedispenser/disposal/transit_tube, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aGD" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/supermatter) +"aGE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aGF" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aGG" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aGH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aGI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aGJ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aGK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aGL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aGM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aGN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"aGO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGP" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/hallway/primary/fore) +"aGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel, +/area/gateway) +"aGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/gateway) +"aGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + desc = "After his promotion, he was transferred to Kilo Station to serve as the gateway's protector."; + icon_state = "plant-21"; + name = "rodger" + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/gateway) +"aGT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aGU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aGV" = ( +/obj/machinery/air_sensor/atmos/nitrogen_tank, +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aGW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aGX" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aGY" = ( +/obj/machinery/air_sensor/atmos/oxygen_tank, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aGZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHa" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aHb" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aHc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aHd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ + dir = 1 + }, +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHe" = ( +/obj/machinery/air_sensor/atmos/carbon_tank, +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ + dir = 1 + }, +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHg" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ + dir = 1 + }, +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHh" = ( +/obj/machinery/air_sensor/atmos/toxin_tank, +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ + dir = 1 + }, +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHj" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ + dir = 1 + }, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHk" = ( +/obj/machinery/air_sensor/atmos/nitrous_tank, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ + dir = 1 + }, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aHm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"aHn" = ( +/obj/machinery/air_sensor/atmos/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"aHo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"aHp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aHq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/gateway) +"aHs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/tank/carbon_tank{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aHt" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aHu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "CO2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aHv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aHw" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"aHx" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/closed/wall, +/area/engine/atmos) +"aHy" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/flashlight, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aHz" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aHA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aHB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aHC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aHD" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/multitool, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool{ + pixel_x = 4 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aHE" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aHF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aHG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aHH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aHI" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/button/door{ + id = "robotics_shutters"; + name = "Robotics Shutter Toggle"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aHJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/analyzer, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aHK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6; + icon_state = "intact" + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aHL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aHM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aHN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aHO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aHP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aHQ" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aHS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/purple/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aHT" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aHU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHV" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"aHW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"aHX" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aHY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"aHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aIb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Foyer" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aIc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aId" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/secure_closet/CMO, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/gun/energy/e_gun/mini, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aIe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/security, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"aIf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aIg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/break_room) +"aIh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aIi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aIj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"aIk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aIl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIn" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/supermatter) +"aIo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIp" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aIq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/caution, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/item/beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aIu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Engine" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aIv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aIw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/service, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"aIx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aIy" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil{ + pixel_y = -2 + }, +/obj/item/analyzer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aIz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/button/door{ + id = "transittube_ai"; + name = "Transit Tube Lockdown Toggle"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aID" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aIE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aIF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aIH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aII" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aIJ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aIK" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/engine/atmos) +"aIL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aIM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aIN" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/maintenance/central) +"aIO" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/closed/wall, +/area/engine/atmos) +"aIP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aIQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIR" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aIS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aIT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aIU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aIV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"aIW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aIX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"aIY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aIZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"aJa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aJb" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"aJc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aJd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aJf" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aJg" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "External Waste Ports to Filter" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aJh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to External Air Ports" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aJi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aJj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"aJk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"aJl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aJm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aJn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"aJo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"aJp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/closed/wall, +/area/engine/atmos) +"aJq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aJr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aJs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aJt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"aJu" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Medbay Sleepers"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aJv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aJw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aJx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"aJy" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aJz" = ( +/obj/machinery/computer/atmos_control/tank/mix_tank{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aJA" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aJB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aJC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aJD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aJE" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJF" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aJG" = ( +/obj/machinery/status_display/evac, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/closed/wall, +/area/engine/atmos) +"aJH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJI" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall, +/area/engine/atmos) +"aJJ" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/science/lab) +"aJK" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "E.V.A. Storage"; + dir = 8; + name = "command camera" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"aJL" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/obj/machinery/meter/atmos/distro_loop, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aJN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aJO" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aJP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aJQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aJR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aJS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aJT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aJU" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aJV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aJW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aJX" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aJY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "applebush" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aKa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aKb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aKc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aKd" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aKe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aKf" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/item/screwdriver{ + pixel_y = 18 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aKg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/engineering{ + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"aKi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aKk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"aKl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aKm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"aKn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aKo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/belt/utility, +/obj/item/weldingtool/largetank, +/obj/item/clothing/head/welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aKp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aKq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24; + req_one_access_txt = "29" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKs" = ( +/obj/machinery/computer/security/telescreen/turbine{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aKt" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aKu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aKv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"aKx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKy" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Medbay Checkpoint RC"; + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aKz" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aKC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aKD" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"aKF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/meter/atmos/atmos_waste_loop, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aKH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aKI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aKJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aKK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aKL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aKM" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/photocopier, +/obj/item/newspaper{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/newspaper, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port) +"aKN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aKO" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port) +"aKP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/stool, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aKR" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/wood, +/area/maintenance/port) +"aKS" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port) +"aKT" = ( +/obj/structure/dresser, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aKU" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/autodrobe, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/theatre"; + dir = 1; + name = "Theatre APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aKV" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aKW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aKX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"aKY" = ( +/obj/structure/table/glass, +/obj/item/storage/box/rxglasses{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/item/gun/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aKZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aLa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aLb" = ( +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/storage/belt/medical, +/obj/item/crowbar, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aLc" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/packageWrap, +/obj/item/storage/secure/briefcase, +/obj/item/hand_labeler, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/cmo"; + dir = 1; + name = "CMO's Office APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aLd" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/medical"; + dir = 8; + name = "Medical Security Checkpoint APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aLe" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"aLf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aLg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -28 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aLi" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aLj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aLk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aLl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aLm" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aLn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLp" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aLq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aLr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Access"; + req_one_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"aLs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLu" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLv" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLy" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/supermatter) +"aLz" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/supermatter) +"aLA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLB" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/supermatter) +"aLC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aLD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/easel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"aLE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aLF" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLH" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLJ" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"aLK" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/engine/engineering) +"aLL" = ( +/obj/structure/sign/warning/enginesafety, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aLM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aLN" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "Test Chamber Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/research/glass{ + name = "Experimentor Lab"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/engine, +/area/science/explab) +"aLP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aLQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box/drinkingglasses{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aLS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aLT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/clothing/under/rank/bartender/purple{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/apron/purple_bartender, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"aLU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aLV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aLW" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aLX" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aLY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aLZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aMa" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aMb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMc" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aMd" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"aMe" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aMf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aMg" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aMh" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"aMi" = ( +/obj/structure/table, +/obj/item/extinguisher/mini, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aMj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Distro to Waste" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aMk" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/engine/atmos) +"aMl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aMm" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/crowbar, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aMn" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aMo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plating, +/area/engine/atmos) +"aMp" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/button/ignition/incinerator/toxmix{ + pixel_x = -6; + pixel_y = 30 + }, +/obj/machinery/button/door/incinerator_vent_toxmix{ + pixel_x = 8; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc{ + areastring = "/area/science/mixing/chamber"; + dir = 4; + name = "Toxins Chamber APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aMq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aMr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMt" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"aMu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port) +"aMw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aMx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port) +"aMy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aMz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aMA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aMB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/extinguisher/mini, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aMC" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aMD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aME" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/medical{ + name = "Cloning Lab"; + req_access_txt = "5;68" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aMF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/kink, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"aMG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Medbay Lobby"; + dir = 4; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aMI" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aMJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/mmi, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/bodypart/chest/robot{ + pixel_y = 4 + }, +/obj/item/bodypart/r_leg/robot{ + pixel_x = 6 + }, +/obj/item/bodypart/r_arm/robot{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/bodypart/l_leg/robot{ + pixel_x = -6 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/bodypart/head/robot, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"aMK" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac{ + pixel_y = 30 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"aML" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/n2{ + initial_gas_mix = "n2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aMM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "12;63" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"aMN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMO" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aMP" = ( +/obj/machinery/computer/turbine_computer{ + dir = 1; + id = "incineratorturbine" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aMQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMR" = ( +/obj/structure/sign/poster/official/wtf_is_co2, +/turf/closed/wall, +/area/engine/atmos) +"aMS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMT" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aMU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"aMV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aMW" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aMX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aMY" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"aMZ" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - CO2"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aNa" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Plasma"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aNb" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2O"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aNc" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Mix"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"aNd" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNe" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNf" = ( +/obj/structure/reflector/single/anchored{ + dir = 5 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aNg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9; + icon_state = "intact" + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aNh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aNi" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1; + luminosity = 2 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Turbine Chamber"; + dir = 4; + name = "turbine camera"; + network = list("turbine") + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aNj" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Centre"; + name = "fore camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=NE CPH"; + dir = 8; + location = "N CPH"; + name = "Patrol navbeacon N" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aNl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aNm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aNn" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"aNo" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aNp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Robotics Bay"; + dir = 1; + name = "fore camera" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aNq" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aNr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aNs" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aNu" = ( +/turf/closed/wall, +/area/medical/morgue) +"aNv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/clonepod, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aNw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics) +"aNy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aNA" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aNB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aND" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aNE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aNF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aNG" = ( +/turf/closed/wall, +/area/medical/genetics) +"aNH" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics/cloning) +"aNI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/medical_cloning{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/crowbar, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/paper/guides/jobs/medical/cloning, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aNJ" = ( +/obj/structure/table, +/obj/item/storage/box/monkeycubes{ + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe, +/obj/item/flashlight/pen, +/obj/machinery/requests_console{ + department = "Genetics"; + name = "Genetics Requests Console"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"aNK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aNL" = ( +/turf/closed/wall, +/area/medical/genetics/cloning) +"aNM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aNO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"aNQ" = ( +/turf/closed/wall, +/area/medical/cryo) +"aNR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aNS" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics) +"aNT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aNU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aNV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aNW" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/cryo) +"aNX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aNY" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aNZ" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aOa" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/medical/genetics) +"aOb" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/genetics) +"aOc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aOd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aOe" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aOf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aOg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aOh" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aOi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"aOj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aOk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"aOl" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Genetics"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"aOm" = ( +/obj/item/toy/beach_ball{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"aOn" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aOo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aOp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aOq" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"aOr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/healthanalyzer, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/turf/open/floor/wood, +/area/maintenance/port) +"aOs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aOt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aOu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/bot/cleanbot{ + name = "Scrubs, MD"; + on = 0 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aOv" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aOw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aOx" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"aOy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "bar maintenance"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aOz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/gloves{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aOA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aOB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aOC" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"aOD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOE" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"aOF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aOG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aOH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aOI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE"; + pixel_y = -32 + }, +/obj/machinery/light/small, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aOJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aOK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aOM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aON" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aOO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aOP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aOR" = ( +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 8; + network = list("medical"); + pixel_x = 28 + }, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Toggle"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/button/door{ + id = "emmd"; + name = "Medical Lockdown Toggle"; + pixel_x = 40; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aOS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "library sorting disposal pipe"; + sortType = 16 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOW" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/medical/storage) +"aOX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aOY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "bar sorting disposal pipe"; + sortType = 19 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOZ" = ( +/turf/closed/wall, +/area/medical/storage) +"aPb" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/cartridge/medical{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/cartridge/medical{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/cartridge/medical{ + pixel_x = 4 + }, +/obj/item/cartridge/chemistry{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aPc" = ( +/turf/closed/wall/r_wall, +/area/medical/storage) +"aPd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPe" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"aPf" = ( +/turf/closed/wall/rust, +/area/medical/virology) +"aPg" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aPi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/cryo) +"aPj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_x = -24; + pixel_y = 6; + req_access_txt = "47" + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aPk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "toxins sorting disposal pipe"; + sortType = 25 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aPm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"aPn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/genetics/cloning) +"aPo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aPp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aPq" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/item/clipboard, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/blue, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aPr" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aPs" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/engineer{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"aPt" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aPu" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"aPv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPw" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aPx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/storage) +"aPz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPA" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/cmo) +"aPB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aPC" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/storage) +"aPD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aPE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"aPF" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPG" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aPH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPJ" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aPK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aPL" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aPM" = ( +/turf/open/floor/wood, +/area/maintenance/port) +"aPN" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/matches{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/lighter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aPO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aPP" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 4; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"aPR" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPS" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aPT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aPU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aPV" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/stamp/cmo{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/keycard_auth{ + pixel_x = 6; + pixel_y = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/cmo) +"aPW" = ( +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPX" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + name = "Cloning Delivery Access"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aPY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aPZ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aQa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQb" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) +"aQc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aQd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQe" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aQg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aQh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQm" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aQn" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aQo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQp" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aQq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aQr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQu" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aQv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aQw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"aQx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atrium Vendors"; + dir = 8; + name = "diner camera" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aQy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQz" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aQA" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2 + }, +/obj/item/healthanalyzer, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aQB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aQF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aQG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aQH" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aQI" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"aQJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"aQK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc{ + areastring = "/area/medical/medbay/central"; + name = "Medbay Central APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQN" = ( +/turf/closed/wall, +/area/medical/surgery) +"aQO" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aQQ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aQR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aQU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"aQV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/chemistry) +"aQW" = ( +/turf/closed/wall, +/area/medical/chemistry) +"aQX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aQY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"aQZ" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aRa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aRb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"aRc" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"aRd" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aRe" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aRf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aRg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "medical sorting disposal pipe"; + sortType = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aRh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/theatre) +"aRj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRl" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 40 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRn" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/chemistry) +"aRo" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/item/clipboard, +/obj/item/toy/figure/mime{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/dummy{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aRp" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aRq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/crew_quarters/bar/atrium"; + dir = 1; + name = "Atrium APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aRr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aRs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Research Desk"; + name = "starboard camera" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"aRt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aRu" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRv" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 40 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "science sorting disposal pipe"; + sortType = 12 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aRy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRz" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/science/research"; + dir = 8; + name = "Research Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"aRA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"aRB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aRD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aRE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"aRG" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aRH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aRI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"aRJ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"aRK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aRL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"aRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRN" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aRO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aRP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "medical locker" + }, +/obj/structure/grille/broken, +/obj/item/clothing/under/skirt/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/rank/medical, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/port) +"aRQ" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"aRR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aRS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aRT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"aRU" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aRV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aRW" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aRX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "theatre sorting disposal pipe"; + sortType = 18 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aRY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aRZ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aSa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/white{ + pixel_x = -6 + }, +/obj/item/book/manual/wiki/medicine, +/obj/item/clothing/neck/stethoscope, +/obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aSc" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aSd" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSe" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aSf" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/port/fore) +"aSg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "Chemistry Hall Shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"aSh" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aSi" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/toy/figure/chemist, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aSj" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"aSk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aSl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aSm" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aSn" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -26 + }, +/obj/item/reagent_containers/food/snacks/pie/cream, +/obj/item/clothing/under/lobster, +/obj/item/clothing/head/lobsterhat, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aSo" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Medical Delivery Access"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aSp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/theatre) +"aSq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aSr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Nitrogen Outlet" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"aSs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/machinery/door/window/westright{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"aSt" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/obj/machinery/door/window/eastleft{ + name = "Engineering Desk"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"aSu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"aSv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aSw" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aSx" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/clipboard, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSy" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aSA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/cola/random, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aSB" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aSC" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aSD" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aSE" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aSF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aSG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/surgery) +"aSH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"aSI" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"aSJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aSK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aSM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aSN" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/pen, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aSP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"aSQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aSR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aST" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aSU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aSV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"aSW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/crowbar/red, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSX" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/medical/medbay/central) +"aSY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aSZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"aTa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aTb" = ( +/obj/machinery/door/airlock/grunge{ + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aTc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + name = "Medbay Monitor"; + network = list("medical") + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aTd" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"aTe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aTf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "crematorium maintenance"; + req_one_access_txt = "27" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aTg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aTh" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/medical/virology) +"aTi" = ( +/obj/structure/flora/junglebush/large, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/virology) +"aTj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aTk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"aTl" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aTm" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aTn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aTo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Medbay Central"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aTp" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/storage/pill_bottle/epinephrine, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aTq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/explab) +"aTr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"aTs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aTt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aTu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aTv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"aTw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aTx" = ( +/turf/closed/wall/r_wall, +/area/medical/surgery) +"aTz" = ( +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"aTA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aTB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/libraryconsole{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aTC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aTD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/virology, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aTE" = ( +/obj/machinery/light, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aTF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aTG" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aTH" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aTI" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aTJ" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aTK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aTL" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 8; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Bar Delivery Access"; + req_access_txt = "25" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aTM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aTN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"aTO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aTP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aTQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aTR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aTS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aTT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aTU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aTV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/chemist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aTW" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -6 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aTX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aTY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"aTZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"aUa" = ( +/turf/closed/wall, +/area/gateway) +"aUb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/under/syndicate/tacticool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aUc" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aUd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aUe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"aUf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aUg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aUh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"aUi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aUj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aUk" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aUl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aUm" = ( +/obj/machinery/rnd/production/protolathe/department/science, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Research Lab"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aUn" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aUo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aUp" = ( +/obj/structure/chair, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"aUq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Distro to Connector" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aUr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aUs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/port) +"aUt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/medical/storage"; + name = "Medbay Storage APC"; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aUu" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aUv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aUw" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aUx" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aUy" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aUz" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"aUA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/obj/machinery/camera{ + c_tag = "Recovery Room"; + dir = 1; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aUB" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aUC" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aUD" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aUE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aUF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aUG" = ( +/turf/closed/wall/mineral/plastitanium, +/area/maintenance/port) +"aUH" = ( +/obj/structure/displaycase/trophy, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/grimy, +/area/library) +"aUI" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 1"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"aUJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"aUK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aUL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aUM" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/gibber, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room"; + name = "diner camera" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aUN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aUO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aUP" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/medical/virology) +"aUQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aUR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aUS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aUT" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/curator, +/turf/open/floor/plasteel/grimy, +/area/library) +"aUU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aUV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aUW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"aUX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aUY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aUZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aVa" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Bar Counter"; + dir = 8; + name = "bar camera" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness/recreation"; + dir = 1; + name = "Recreation Area APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aVc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aVd" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"aVf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "research_shutters"; + name = "Research Shutter Toggle"; + pixel_x = -24; + pixel_y = 6; + req_access_txt = "7" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aVg" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"aVh" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVi" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aVj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "9" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aVk" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "47" + }, +/obj/machinery/camera{ + c_tag = "Science Security Post"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"aVl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aVm" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aVn" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_one_access_txt = "5;6;22" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aVo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"aVq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aVr" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/chapel/main) +"aVs" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"aVt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"aVu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aVv" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters"; + name = "Lobby Shutters Toggle"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aVw" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"aVx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aVy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "cmo sorting disposal pipe"; + sortType = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aVz" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aVA" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections{ + pixel_y = 6 + }, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology RC"; + pixel_x = 29; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Virology"; + dir = 8; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"aVC" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"aVD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/virology, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVE" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/toy/figure/virologist{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/restraints/handcuffs, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVF" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aVG" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"aVH" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/medical/genetics/cloning) +"aVI" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"aVJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "Director's Privacy Blast Door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"aVK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/dna_scannernew, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aVL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Medical Security Post"; + dir = 1; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall/rust, +/area/janitor) +"aVN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"aVO" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/small, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port) +"aVP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aVQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aVR" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVS" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aVT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics/cloning) +"aVU" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/genetics/cloning) +"aVV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aVW" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/beakers{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVX" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/rd{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"aVY" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aVZ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera{ + c_tag = "Morgue"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWa" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port) +"aWb" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWc" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWd" = ( +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port) +"aWe" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aWg" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWh" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWi" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Connector to Medical" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"aWj" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Office"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/cmo) +"aWk" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWl" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"aWm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"aWn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aWp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aWq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aWr" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/button/door{ + id = "emmd"; + name = "Medical Lockdown Toggle"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aWs" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aWt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aWu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aWv" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWw" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"aWy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aWz" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/paper/guides/jobs/medical/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/pen, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aWB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/bar) +"aWE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aWF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aWG" = ( +/turf/closed/wall, +/area/chapel/office) +"aWH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aWI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aWJ" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"aWK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/westright{ + name = "Armoury Desk"; + req_access_txt = "3" + }, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"aWL" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/barsign{ + pixel_y = 32; + req_access = null; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWM" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"aWN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/paper/guides/jobs/security/courtroom, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aWP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"aWQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"aWR" = ( +/turf/closed/wall, +/area/science/xenobiology) +"aWS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWT" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aWU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"aWV" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/engine, +/area/science/explab) +"aWW" = ( +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWX" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aWY" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"aWZ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aXa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"aXb" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/science/explab) +"aXc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/science/explab) +"aXd" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aXf" = ( +/obj/machinery/computer/rdservercontrol, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/science/server"; + dir = 1; + name = "Research Division Server Room APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aXg" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/stack/packageWrap, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aXh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"aXi" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aXm" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXn" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aXo" = ( +/obj/machinery/rnd/experimentor, +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/explab) +"aXp" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/toy/figure/bartender{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/taperecorder{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/aicard, +/obj/item/paicard{ + pixel_x = 6 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"aXr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXs" = ( +/obj/machinery/door/poddoor/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aXt" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aXu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"aXv" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aXw" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/folder, +/obj/item/nanite_scanner{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/nanite_remote, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aXx" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aXy" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aXA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aXB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/bombcloset, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aXC" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/mechbay"; + dir = 1; + name = "Mech Bay APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"aXD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/ai_slipper{ + uses = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aXE" = ( +/obj/machinery/nanite_chamber, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aXF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/nanite_chamber_control, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Nanite Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aXG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aXH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aXI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aXJ" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aXK" = ( +/obj/effect/decal/remains/human, +/obj/machinery/sparker/toxmix{ + name = "chamber igniter"; + pixel_x = -16 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aXL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aXM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"aXN" = ( +/obj/machinery/igniter/incinerator_toxmix, +/mob/living/simple_animal/chicken{ + atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 1, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0); + desc = "A timeless classic."; + name = "Kentucky" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aXO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"aXP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aXQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aXR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/science/server) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/explab) +"aXT" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"aXU" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Toggle"; + pixel_y = 25 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"aXV" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aXW" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"aXX" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aXY" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Atrium Booths"; + dir = 4; + name = "diner camera" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"aXZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aYa" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aYb" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aYc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aYd" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"aYe" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/lab) +"aYg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"aYh" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 3"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"aYi" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aYj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/science/explab) +"aYk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Access"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aYl" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aYm" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/lab"; + dir = 1; + name = "Robotics Lab APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aYn" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/mixing) +"aYo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aYp" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/science/mixing) +"aYq" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/science/mixing) +"aYs" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"aYt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"aYu" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"aYv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"aYw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"aYx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aYy" = ( +/obj/item/target/clown, +/obj/machinery/camera/preset/toxins{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"aYz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aYB" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aYC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aYD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aYE" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aYF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aYG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"aYH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"aYI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aYJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aYK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"aYL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aYM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aYN" = ( +/obj/machinery/nanite_program_hub, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aYO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aYP" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"aYQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aYR" = ( +/obj/machinery/computer/nanite_cloud_controller, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aYS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aYT" = ( +/obj/machinery/nanite_programmer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aYV" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/bar) +"aYX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aYY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aYZ" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aZa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/disk/tech_disk{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/disk/tech_disk{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stock_parts/capacitor{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZb" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aZc" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aZd" = ( +/turf/closed/wall, +/area/hydroponics) +"aZe" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "backstage maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aZg" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZh" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"aZi" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science/lab) +"aZj" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 6 + }, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/clothing/glasses/welding, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZl" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aZm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/theatre) +"aZn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Upload Access"; + pixel_x = 6; + req_access_txt = "16" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aZo" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload) +"aZp" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/cable_coil{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/packageWrap{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZq" = ( +/obj/machinery/door/poddoor/shutters{ + id = "coldroom"; + name = "Coldroom Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aZr" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"aZs" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"aZt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aZu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZv" = ( +/turf/closed/wall, +/area/science/explab) +"aZx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/mime, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/theatre) +"aZy" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/obj/machinery/door/window/northleft{ + name = "Robotics Desk"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"aZz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"aZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aZB" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/crowbar/red, +/obj/item/toy/figure/roboticist{ + pixel_x = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aZD" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZF" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"aZG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aZH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"aZI" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/goldcrate, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/item/crowbar/power, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"aZJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"aZK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aZL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/obj/machinery/door/window/eastright{ + name = "Research Lab Desk"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/plating, +/area/science/lab) +"aZM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"aZN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"aZO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aZP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"aZQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aZR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/security/glass{ + name = "Transferring Centre"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aZS" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"aZT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aZU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/surgical_drapes, +/obj/item/retractor, +/obj/item/cautery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aZV" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"aZW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZX" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aZY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/heads/hor) +"aZZ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"baa" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bab" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc{ + areastring = "/area/science/lab"; + name = "Research Lab APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bac" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/theatre) +"bad" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bae" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"baf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bag" = ( +/obj/machinery/door/window/northright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"bah" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"bai" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/robotics/lab) +"baj" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/hemostat, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bak" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bal" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"ban" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"bap" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"baq" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"bar" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bas" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bat" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/retractor, +/obj/item/hemostat, +/obj/machinery/vending/wallmed{ + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Operating Theatre"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bau" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/surgicaldrill{ + pixel_y = 5 + }, +/obj/item/healthanalyzer, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bav" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"baw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"bax" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"bay" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/item/scalpel{ + pixel_y = 5 + }, +/obj/item/cautery, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"baz" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"baA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/surgery, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"baB" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"baC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"baD" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/transfer_valve{ + pixel_x = -4 + }, +/obj/item/transfer_valve{ + pixel_x = -4 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 4 + }, +/obj/item/transfer_valve{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baE" = ( +/obj/structure/table/reinforced, +/obj/item/wirecutters{ + pixel_y = 5 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Transferring Centre"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"baG" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"baH" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"baI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"baJ" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"baK" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"baN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"baO" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"baP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"baQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"baR" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/chemistry"; + dir = 8; + name = "Chemistry APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"baS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baT" = ( +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"baU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"baW" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"baX" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input, +/obj/machinery/sparker/toxmix{ + name = "chamber igniter"; + pixel_x = -16 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"baY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/storage) +"baZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"bba" = ( +/turf/closed/wall, +/area/science/storage) +"bbb" = ( +/turf/closed/wall, +/area/security/checkpoint/science/research) +"bbc" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"bbe" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 7 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 1; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"bbf" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"bbg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bbi" = ( +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbj" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/disks_nanite{ + pixel_y = 4 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bbk" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/vending_refill/cigarette, +/obj/item/hand_labeler, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bbm" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Toxins Mixers"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bbp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "BrewMaster 2199" + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbt" = ( +/obj/machinery/air_sensor/atmos/toxins_mixing_tank, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"bbv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/mixing"; + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"bbx" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbB" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbC" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/airlock_sensor/incinerator_toxmix{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bbD" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ + dir = 8 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bbE" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbF" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bbG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bbH" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bbI" = ( +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bbK" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bbL" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/integrated_electronics/analyzer, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_y = 30 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bbM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/nanite_remote{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/nanite_scanner{ + pixel_x = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bbN" = ( +/turf/closed/wall, +/area/science/mixing) +"bbO" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bbP" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bbQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"bbS" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbT" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bbU" = ( +/obj/machinery/computer/upload/borg, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 1; + layer = 3.1; + name = "Cyborg Upload Console Window"; + req_access_txt = "16" + }, +/obj/structure/window/reinforced, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bbV" = ( +/obj/machinery/computer/upload/ai, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + layer = 3.1; + name = "Upload Console Window"; + req_access_txt = "16" + }, +/obj/structure/window/reinforced, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bbW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbX" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bbZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Upload Access"; + pixel_x = 6; + req_access_txt = "16" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bca" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bcb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("toxins"); + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bce" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcf" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/mixing/chamber) +"bcg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"bch" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Lab"; + req_one_access_txt = "7;29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bci" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Toxins Launch Site"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"bck" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcl" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcm" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload) +"bcn" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber{ + name = "scrubber ducky" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/science/storage"; + dir = 1; + name = "Toxins Storage APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bco" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"bcp" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "AI Upload Transit Exterior"; + dir = 8; + name = "upload camera"; + network = list("aiupload") + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bcr" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Toxins Pumps"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bct" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcu" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bcw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bcx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bcy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bcz" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"bcA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bcB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/grey_tide{ + pixel_y = 32 + }, +/obj/machinery/vending/kink, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bcC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "greylair"; + name = "Lair Privacy Toggle"; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bcD" = ( +/turf/closed/wall/rust, +/area/science/mixing) +"bcE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bcF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"bcG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bcH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"bcI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bcK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bcL" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/book/manual/wiki/toxins{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bcN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bcO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bcP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bcQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("toxins"); + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcR" = ( +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bcT" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bcU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bcV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Port Hallway Chemistry Desk"; + dir = 8; + name = "port camera" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bcW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcX" = ( +/obj/structure/table/glass, +/obj/machinery/smartfridge/disks{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/seeds/random{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/seeds/wheat{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/seeds/sugarcane{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/seeds/potato{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/toy/figure/botanist{ + pixel_x = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics"; + name = "hydroponics camera" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bcY" = ( +/obj/structure/grille/broken, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "coldroom"; + name = "Coldroom Shutter Toggle"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bcZ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/button/door{ + id = "coldroom"; + name = "Coldroom Shutter Toggle"; + pixel_x = -24; + pixel_y = 6; + req_access_txt = "28" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bda" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"bdb" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bdc" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Toggle"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bdd" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bde" = ( +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Experimenter Chamber"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/explab) +"bdf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"bdg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bdh" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bdi" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"bdj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "chemistry sorting disposal pipe"; + sortType = 11 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"bdk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"bdl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bdm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/cartridge/roboticist{ + pixel_x = -3 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = 6 + }, +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins, +/obj/item/circuitboard/aicore{ + pixel_y = 5 + }, +/obj/item/hand_labeler, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bdn" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = 6 + }, +/obj/item/pen, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 30 + }, +/obj/machinery/camera{ + c_tag = "Backstage"; + name = "diner camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"bdo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bdp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bdq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"bdr" = ( +/obj/machinery/chem_heater{ + pixel_x = 6 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + name = "Chemistry RC"; + pixel_x = 30; + pixel_y = 28; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"bds" = ( +/obj/machinery/computer/aifixer{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bdt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bdu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/computer/atmos_control/tank/oxygen_tank{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"bdv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/rd{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stamp/rd{ + pixel_x = 8 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bdw" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bdx" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bdy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bdz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/head/chefhat{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/kitchen/rollingpin{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdA" = ( +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/explab) +"bdB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/kitchen"; + dir = 1; + name = "Kitchen APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bdC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bdD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/engine, +/area/science/xenobiology) +"bdE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "kitchen closet" + }, +/obj/item/clothing/under/rank/chef{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/toggle/chef, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdF" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bdG" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bdH" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 1; + name = "Research Monitor"; + network = list("rd") + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"bdI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bdJ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_one_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bdK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bdL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bdM" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bdN" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bdP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bdR" = ( +/obj/structure/table, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/item/book/manual/wiki/experimentor, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bdS" = ( +/obj/effect/turf_decal/box/corners, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/engine, +/area/science/explab) +"bdT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bdU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/directions/security{ + pixel_x = 32 + }, +/obj/structure/sign/directions/command{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"bdV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bdX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bdY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/port) +"bea" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"beb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bec" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bed" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/chair/office, +/turf/open/floor/plating, +/area/maintenance/port) +"bee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"bef" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"beg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"beh" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bei" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bej" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bek" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bel" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bem" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"ben" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"beo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"bep" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"beq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"ber" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bes" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bet" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"beu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = -32; + pixel_y = 8 + }, +/obj/structure/sign/directions/supply{ + pixel_x = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"bev" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bew" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery Access"; + req_access_txt = "35" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bex" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bey" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bez" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"beA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"beC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"beD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/research) +"beE" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/debugger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/stack/sheet/metal/ten, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/research) +"beF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"beG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"beH" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/mixing) +"beI" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"beJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 4; + name = "diner camera" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"beK" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"beL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"beM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Transit Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"beN" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/crew_quarters/bar"; + name = "Bar APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"beP" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/structure/grille/broken, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/flashlight, +/obj/item/flashlight/flare, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"beQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard) +"beR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"beS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"beT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"beU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "O2 to Airmix" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"beV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"beW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"beX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/firstaid/o2, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/plating, +/area/maintenance/port) +"beY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"beZ" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfa" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Science Checkpoint RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"bfb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bfc" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bfd" = ( +/obj/machinery/processor/slime, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/engine/engineering) +"bff" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bfg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/soap/nanotrasen, +/obj/item/clothing/neck/stethoscope, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bfh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bfi" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bfj" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bfk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfm" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfn" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"bfo" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfp" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/science/xenobiology) +"bfq" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfr" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"bfs" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bft" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfu" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/hor"; + dir = 1; + name = "RD Office APC"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bfv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bfw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bfx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bfy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/flashlight/lantern, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Bar Storage"; + dir = 1; + name = "bar camera" + }, +/obj/structure/mirror{ + pixel_y = -32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bfz" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bfA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bfB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/displaycase/labcage, +/obj/effect/turf_decal/box, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bfC" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bfE" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "Departures Holding Area"; + name = "shuttle camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfF" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfG" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Kitchen Counter"; + dir = 4; + name = "starboard camera" + }, +/obj/structure/sign/directions/evac{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bfI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bfK" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfL" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bfM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell 5" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bfN" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bfO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Lab"; + req_one_access_txt = "7;29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bfP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bfQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell 6" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bfR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bfS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bfT" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bfU" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/bz, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "xeno5"; + name = "Creature Cell 5 Toggle"; + pixel_x = -24; + pixel_y = -24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfW" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bfX" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bfY" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + name = "euthanization chamber freezer" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bga" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bgb" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 4; + name = "Central Maintenance APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bgc" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bgd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bge" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bgf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bgg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bgh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/directions/command{ + pixel_x = 32 + }, +/obj/structure/sign/directions/security{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bgi" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bgj" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"bgk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Experimenter Lab"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bgl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bgm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell 2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Creature Cell"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Creature Cell"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bgp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bgq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Creature Cell"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen RC"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bgs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell 4" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Creature Cell"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgt" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bgu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/button/door{ + id = "xeno6"; + name = "Creature Cell 6 Toggle"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "55" + }, +/obj/item/extinguisher{ + pixel_y = 4 + }, +/obj/item/extinguisher{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"bgw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/scientist, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/extinguisher, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgy" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bgz" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port) +"bgB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/beakers{ + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "xeno2"; + name = "Creature Cell 2 Toggle"; + pixel_x = -24; + pixel_y = -24; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell 2" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bgD" = ( +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bgE" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"bgF" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/closed/wall, +/area/science/xenobiology) +"bgG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bgH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/box/masks{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bgI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell 4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bgJ" = ( +/obj/machinery/monkey_recycler, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "xeno4"; + name = "Creature Cell 4 Toggle"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "qm sorting disposal pipe"; + sortType = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bgL" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Virology Monkey Pen"; + dir = 4; + name = "medical camera"; + network = list("ss13","medical") + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bgM" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "xeno1"; + name = "Creature Cell 1 Toggle"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "55" + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/clothing/under/color/grey, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bgO" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light{ + dir = 4 + }, +/mob/living/carbon/monkey{ + name = "mankey" + }, +/turf/open/floor/grass, +/area/medical/virology) +"bgP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bgQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bgS" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bgT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bgU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bgW" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc{ + areastring = "/area/science/research"; + name = "Research Division APC"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Research Division"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"bgX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "xeno3"; + name = "Creature Cell 3 Toggle"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "55" + }, +/obj/structure/window/reinforced, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgY" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell 1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Creature Cell"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"bhb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bhc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell 1" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bhd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhe" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"bhf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell 3" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bhg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/scientist, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/item/extinguisher, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bhh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhk" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bhl" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bhm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhn" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"bho" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"bhp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhq" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/starboard) +"bhr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/flashlight, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bht" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bhu" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"bhv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bhw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell 3" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Creature Cell"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bhx" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"bhy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo RC"; + pixel_y = 30 + }, +/obj/item/radio/intercom{ + pixel_x = -28; + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bhz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhA" = ( +/turf/open/space/basic, +/area/space/nearstation) +"bhB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/stack/cable_coil, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bhC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bhD" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/multitool, +/obj/item/pen/red, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/toy/figure/cargotech{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/toy/figure/miner{ + pixel_x = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bhF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/qm{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bhH" = ( +/turf/closed/wall, +/area/quartermaster/miningoffice) +"bhI" = ( +/turf/closed/wall, +/area/quartermaster/office) +"bhK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Entertainment Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"bhL" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bhM" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/folder/yellow, +/obj/item/stack/packageWrap, +/obj/item/gps{ + gpstag = "QM0"; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bhN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bhO" = ( +/obj/machinery/computer/bounty, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bhP" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Quartermaster RC"; + pixel_y = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bhQ" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"bhS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bhT" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"bhU" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"bhV" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bhW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bhX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"bhY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bhZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset{ + name = "plasmaperson emergency closet" + }, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bib" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bic" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"bid" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Air to Room" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bie" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bif" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Connector to Room" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"big" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bih" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bii" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bij" = ( +/obj/structure/flora/junglebush/b, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bik" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bil" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bim" = ( +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/toy/figure/qm, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bio" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/the_griffin{ + pixel_y = 32 + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bip" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"biq" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/miningoffice"; + dir = 1; + name = "Mining Dock APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bir" = ( +/obj/structure/displaycase/trophy, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/poster/official/pda_ad{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"bis" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 8; + req_access = null + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bit" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"biu" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"biv" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"biw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bix" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"biz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"biA" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"biB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"biC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"biD" = ( +/obj/machinery/rnd/production/techfab/department/service, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"biE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"biF" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"biG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"biH" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"biI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/cartridge/quartermaster, +/obj/item/cartridge/quartermaster, +/obj/item/cartridge/quartermaster, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"biJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"biK" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters_2"; + name = "Hall Shutters Toggle"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "5; 33" + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -40 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"biL" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"biM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/storage/box/lights/mixed{ + pixel_y = 6 + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"biN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "kitchen_2"; + name = "Hallway Hatch Toggle"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"biO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"biP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"biQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biR" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Cargo Delivery Access"; + req_access_txt = "50" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"biS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"biT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"biU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"biV" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"biW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"biX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biY" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"biZ" = ( +/obj/machinery/computer/security/qm{ + dir = 8; + network = list("mine","auxbase","vault","qm") + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bja" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bjb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bjc" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bjd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bje" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bjf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bjg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bjh" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bji" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bjj" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bjk" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/detective, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bjl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bjm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bjn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hydroponics) +"bjo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bjp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bjr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/maintenance/port) +"bjs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/power/apc{ + areastring = "/area/medical/surgery"; + dir = 4; + name = "Surgery APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bjt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bju" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/oxygen/yellow, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bjv" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/oxygen/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bjw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"bjx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bjy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bjA" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bjB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bjC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/effect/landmark/start/virologist, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bjD" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bjE" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bjG" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bjH" = ( +/obj/machinery/door/airlock/grunge{ + name = "Art Cabinet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/library) +"bjI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/medical{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bjJ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/qm"; + dir = 1; + name = "Quartermaster's Office APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bjK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bjL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bjM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bjN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/cap_wardrobe, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bjP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bjQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bjR" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bjS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bjT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/bridge) +"bjU" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/transit_tube/horizontal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bridge) +"bjV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bjW" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"bjX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bjY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/transit_tube/station/reverse, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/bridge) +"bka" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/bridge) +"bkb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bkc" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/quartermaster/miningoffice) +"bkd" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"bke" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkf" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkh" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bki" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bkj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cola/red, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bkk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bkl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/labor, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Cargo Checkpoint RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bkn" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bko" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bkp" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"bkq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bks" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkt" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/silvercrate, +/obj/item/wrench/power, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/nuke_storage) +"bku" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bkv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bkw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bky" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/chapel/main) +"bkz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bkA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bkC" = ( +/obj/effect/turf_decal/arrows, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkD" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/arrows, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bkG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkH" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bkI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bkJ" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bkK" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/oxygen/yellow, +/obj/machinery/light, +/obj/machinery/requests_console{ + department = "Mining"; + name = "Mining RC"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bkL" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bkM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bkN" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad"; + name = "off ramp" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bkO" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad"; + name = "off ramp" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bkQ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bkR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bkS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bkT" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/vacant_room/commissary) +"bkU" = ( +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front."; + name = "Bottle of Tears"; + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 2 + }, +/obj/machinery/keycard_auth{ + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Blast door Toggle"; + pixel_x = 7; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"bkV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bkW" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleport Access Shutter" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bkX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port) +"bkY" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkZ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bla" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen maintenance"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bld" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"ble" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"blf" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"blg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"blh" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 1; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bli" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Off Ramp Toggle"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "31" + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "On Ramp Toggle"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bll" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/quartermaster/storage) +"blm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"blo" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-14" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"blp" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"blq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bls" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blu" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 10; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/kilo; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"blv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/port"; + dir = 8; + name = "Port Hallway APC"; + pixel_x = -26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"blw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blx" = ( +/obj/structure/easel, +/obj/effect/turf_decal/bot, +/obj/item/airlock_painter, +/turf/open/floor/plasteel/dark, +/area/library) +"bly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"blz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blA" = ( +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"blB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/library) +"blC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blE" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/quartermaster/storage) +"blF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blG" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Cargo Checkpoint Post"; + dir = 1; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"blH" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"blI" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"blJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"blK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"blR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -28 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"blV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/caution, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"blW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/button/door{ + id = "transittube"; + name = "Transit Tube Lockdown Toggle"; + pixel_x = 24; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "AI Upload Transit"; + dir = 8; + name = "command camera" + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -26 + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/bridge) +"blX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/sign/warning/deathsposal{ + layer = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"blY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blZ" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/storage/box/lights/mixed{ + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bma" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/machinery/camera{ + c_tag = "Delivery Office"; + dir = 1; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bmb" = ( +/turf/closed/wall/r_wall, +/area/storage/tech) +"bmc" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"bmd" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bme" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/plantgenes{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bmf" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bmg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmh" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmi" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bmk" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bml" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bmm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bmo" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bmp" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bmq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Cargo Ramps"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bmr" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera{ + c_tag = "Cargo Lockers"; + dir = 4; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bms" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bmt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption{ + dir = 8; + input_dir = 4; + output_dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bmu" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bmv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bmw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bmx" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/office"; + dir = 4; + name = "Cargo Office APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bmy" = ( +/turf/closed/wall, +/area/crew_quarters/bar/atrium) +"bmz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bmA" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bmB" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/primary/port) +"bmC" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bmD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/arrows, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bmE" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bmF" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hydroponics) +"bmG" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/plantgenes{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bmH" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bmI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/arrows, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bmJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmK" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bmL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"bmN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bmO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/dough, +/obj/item/reagent_containers/food/snacks/dough, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bmP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bmQ" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bmR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bmS" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_2"; + name = "Hallway Hatch" + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bmT" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/bag/tray, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bmU" = ( +/obj/structure/lattice, +/turf/closed/wall/r_wall/rust, +/area/security/prison) +"bmV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 8; + name = "Waste Release" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bmW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bmX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bmY" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bmZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bna" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/bar/atrium) +"bnb" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 4; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bnc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/snacks/grown/corn{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/snacks/grown/pumpkin{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plating, +/area/hydroponics) +"bnd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bne" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bnf" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bng" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bnh" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bni" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bnj" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/hydroponics) +"bnk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bnl" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"bnm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bnn" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bno" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/food/snacks/sausage, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"bnp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnq" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hydroponics) +"bnr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/backpack, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/under/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bns" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics) +"bnt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnv" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"bnw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/library) +"bny" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bnz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bnB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bnC" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Biogenerator"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bnD" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bnE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "kitchen sorting disposal pipe"; + sortType = 20 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bnG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bnH" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hydroponics) +"bnI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bnJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/hydroponics) +"bnK" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bnL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/item/toy/figure/chef, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bnM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnN" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics) +"bnO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bnP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bnQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bnR" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hydroponics) +"bnS" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bnT" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/mob/living/simple_animal/cow{ + desc = "Allegedly a bull."; + name = "Otis"; + real_name = "Betsy" + }, +/turf/open/floor/grass, +/area/hydroponics) +"bnU" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hydroponics) +"bnV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bnY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/autolathe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bnZ" = ( +/obj/item/twohanded/required/kirbyplants, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"boa" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hydroponics) +"bob" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hydroponics) +"boc" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bod" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"boe" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "An emerald flask, from the Keeper's soul. High in vitamins!"; + name = "estus flask"; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"bof" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bog" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"boh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hydroponics) +"boi" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/aiModule/core/freeformcore{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/core/full/custom, +/obj/item/aiModule/core/full/asimov{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"boj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bok" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bol" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Service Door"; + req_one_access_txt = "35;28" + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bom" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"bon" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/hydroponics) +"boo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "supply locker" + }, +/obj/item/clothing/under/rank/cargotech, +/obj/item/clothing/shoes/sneakers/brown, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bop" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"boq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/rnd/production/techfab/department/cargo, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bor" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bos" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/port) +"bot" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"bou" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bov" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bow" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/snacks/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"box" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"boy" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/candle/infinite{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"boz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"boA" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boC" = ( +/turf/closed/wall, +/area/hallway/primary/port) +"boD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/book/manual/chef_recipes{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/book/manual/chef_recipes{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/qm) +"boF" = ( +/obj/machinery/button/door{ + id = "bank"; + name = "Bank Vault Lock"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = -8; + specialfunctions = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/neck/tie/black{ + pixel_x = 6 + }, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/mask/rat/jackal{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/rat/jackal, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"boG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"boH" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Kitchen Cold Room"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boJ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"boK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"boL" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "bankshutter"; + name = "Bank Shutter Toggle"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"boM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/random, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 30 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"boN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"boO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"boP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/stool{ + name = "microbench"; + pixel_x = 16 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"boQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/backpack, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/under/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"boS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/hydroponics) +"boT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"boU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boV" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"boW" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"boX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"boY" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/camera_film{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/camera, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"boZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpa" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/disposalpipe/segment, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bpb" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bpc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port) +"bpd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bpe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bpf" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bpg" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/central) +"bph" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_2"; + name = "Hallway Hatch" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bpi" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/junglebush/b, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/grass, +/area/hydroponics) +"bpj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bpk" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hydroponics) +"bpl" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bpm" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 11; + id = "ferry_home"; + name = "port bay 2"; + width = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bpn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bpo" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hydroponics) +"bpp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/safety_internals, +/turf/closed/wall, +/area/medical/virology) +"bpq" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/central) +"bpr" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"bpt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bpu" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bpv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bpw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bpx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bpy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/destructible/cult/tome, +/obj/effect/decal/cleanable/cobweb, +/obj/item/book/codex_gigas{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight/lantern{ + pixel_x = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/library) +"bpz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bpA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bpB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/storage"; + dir = 1; + name = "Cargo Bay APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bpC" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bpE" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/status_display/supply{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bpF" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall/rust, +/area/hallway/primary/starboard) +"bpG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/library) +"bpH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/library) +"bpI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bpJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bpK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bpL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bpN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpO" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/central) +"bpP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bpQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bpS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bpT" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bpU" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bpV" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/hallway/primary/starboard) +"bpW" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast door" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bpY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/capacitor, +/turf/open/floor/plating, +/area/maintenance/port) +"bqa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/bridge"; + dir = 8; + name = "Bridge APC"; + pixel_x = -27 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bqb" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall/rust, +/area/maintenance/central) +"bqc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bqd" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bqe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bqf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bqg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bqh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bqj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bqk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bql" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = 40; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Serving Hatch Toggle"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bqm" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/bridge) +"bqn" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bqo" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bqp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bqs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bqt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bqu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bqv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bqw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "AI Upload Transit Access"; + dir = 1; + name = "command camera" + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/medical{ + name = "Kitchen Cold Room"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bqz" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Kitchen Delivery Access"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bqA" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/restraints/handcuffs, +/obj/item/wirerod, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"bqB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bqD" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Atmospherics"; + name = "navigation beacon (Atmospherics Delivery)" + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Atmospherics Delivery Access"; + req_one_access_txt = "24;10" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bqE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance"; + req_one_access_txt = "19;63" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/central) +"bqF" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bqG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqH" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqI" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bqK" = ( +/obj/structure/chair/sofa/corner{ + color = "#c45c57"; + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"bqL" = ( +/obj/structure/chair/sofa{ + color = "#c45c57" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"bqM" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=NW CPH"; + dir = 8; + location = "W CPH"; + name = "Patrol navbeacon W" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqO" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqP" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/processor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bqQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/hydroponics"; + name = "Hydroponics APC"; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Hydroponics Lockers"; + dir = 8; + name = "hydroponics camera" + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bqR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bqS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "hydroponics sorting disposal pipe"; + sortType = 21 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqU" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/rainbow/clown, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/bikehorn/rubberducky, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"bqV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/autodrobe, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"bqW" = ( +/obj/structure/dresser, +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"bqX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Hydroponics Counter"; + dir = 8; + name = "starboard camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"bra" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"brb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brc" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"brd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/theatre) +"bre" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"brf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"brg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"brh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "xenobiology maintenance"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"bri" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"brj" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/food/snacks/cheesiehonkers{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"brm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"brn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bro" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"brp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/office) +"brq" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brs" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"brt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"bru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"brv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"brw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"brz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"brA" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brB" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"brD" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"brE" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paicard{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brG" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brI" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brJ" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/clothing/head/hardhat/cakehat, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar/atrium) +"brK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"brL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"brM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brN" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"brO" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"brP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/paicard, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"brT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/camera, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/library) +"brU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"brV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"brY" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"brZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bsa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/vr_sleeper, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bsb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/bar/atrium) +"bsc" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/crew_quarters/bar/atrium) +"bsd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bse" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/light/small, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/library) +"bsf" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/maintenance/fore) +"bsg" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/rods/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"bsh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/library) +"bsj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bsk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"bsl" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bsm" = ( +/turf/closed/wall/rust, +/area/chapel/office) +"bsn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bso" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/mob/living/simple_animal/chicken{ + desc = "The arch-nemesis of Kentucky."; + name = "Popeye"; + real_name = "Featherbottom" + }, +/turf/open/floor/grass, +/area/hydroponics) +"bsp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bsq" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"bss" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Port Hallway Firelock"; + dir = 4; + name = "port camera" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bst" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bsv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "cargo sorting disposal pipe"; + sortType = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bsw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/status_display/supply{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bsx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Chapel"; + name = "fore camera" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"bsy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bsz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bsA" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bsB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bsC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bsD" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Hazard Closet"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bsE" = ( +/turf/open/floor/plasteel, +/area/bridge) +"bsF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bsG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bsH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bsI" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/aiModule/supplied/protectStation{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/zeroth/oneHuman, +/obj/item/aiModule/reset/purge{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bsJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/toolbox/drone, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"bsK" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bsL" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsM" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"bsN" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/crew_quarters/heads/hop) +"bsO" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/crew_quarters/heads/hop) +"bsP" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/crew_quarters/heads/hop) +"bsQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"bsR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bsT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bsU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/bar) +"bsV" = ( +/obj/structure/closet/secure_closet/security/cargo, +/obj/effect/turf_decal/delivery, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/supply"; + dir = 1; + name = "Cargo Security APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/firealarm{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bsW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bsX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bsY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/libraryscanner, +/obj/effect/turf_decal/bot_white, +/obj/machinery/power/apc{ + areastring = "/area/library"; + dir = 4; + name = "Library APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bsZ" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bta" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/granter/spell/smoke/lesser{ + pixel_y = 4 + }, +/obj/item/nullrod{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"btb" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad"; + name = "off ramp"; + pixel_y = 5 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"btc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"btd" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bte" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/red, +/obj/item/stack/cable_coil, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"btf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/chapel/office) +"btg" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/chapel/office) +"bth" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar{ + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bti" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Yard" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "PCell 1Lock"; + name = "Long-Term Cell 1 Shutter" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"btj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/wood, +/area/chapel/office) +"btk" = ( +/obj/structure/table/wood/fancy, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/toy/figure/chaplain{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter, +/turf/open/floor/wood, +/area/chapel/office) +"btl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"btm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"btn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bto" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/bodycontainer/crematorium{ + dir = 8; + id = "crematoriumChapel" + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"btp" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"btq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"btr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box/corners, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Fitness Ring" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bts" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"btt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"btu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"btv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"btw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"btx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bty" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"btz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/restroom{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"btA" = ( +/turf/closed/wall, +/area/chapel/main) +"btB" = ( +/turf/open/floor/grass, +/area/chapel/main) +"btC" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/chapel/office) +"btD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"btE" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"btF" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"btG" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_x = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"btH" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar_1"; + name = "Bar Shutter" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/crew_quarters/bar) +"btI" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar_1"; + name = "Bar Shutter" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/crew_quarters/bar) +"btJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"btK" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/crew_quarters/bar) +"btL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"btM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"btN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"btO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"btP" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"btQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/courtroom) +"btR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"btS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"btT" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btU" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"btW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"btX" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"btY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"btZ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bua" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-17"; + pixel_x = 8; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 40 + }, +/obj/machinery/button/door{ + id = "bar_1"; + name = "Bar Shutters Toggle"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bub" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bud" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Bridge Council Door"; + dir = 4; + name = "command camera" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bue" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buf" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Bar RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bug" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buh" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bui" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"buj" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bul" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bum" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paicard, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bun" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/item/clipboard, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bup" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buq" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bur" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bus" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"but" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/libraryconsole{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"buu" = ( +/obj/structure/bookcase/random/fiction, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buv" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buw" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bux" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"buy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/bar) +"buz" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/matches{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/lighter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buA" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/crew_quarters/bar) +"buB" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"buC" = ( +/turf/closed/wall, +/area/library) +"buD" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/landmark/start/botanist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"buE" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/library) +"buF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_y = 5 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buH" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"buJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buK" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"buL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/bookbinder, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/library) +"buM" = ( +/turf/open/floor/wood, +/area/library) +"buN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/games, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"buO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buP" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buS" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"buT" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Engineering"; + name = "navigation beacon (Engineering Delivery)" + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Engineering Delivery Access"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"buU" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/library) +"buV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"buW" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/barsign{ + pixel_y = 32; + req_access = null; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"buX" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/camera_film{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/camera_film, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/camera{ + c_tag = "Library"; + dir = 8; + name = "bar camera" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"buY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"buZ" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bva" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bvd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bve" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bvf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvg" = ( +/obj/structure/bookcase/random/religion, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvh" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bvi" = ( +/obj/structure/bookcase/random/reference, +/obj/machinery/camera{ + c_tag = "Bar Shelves"; + name = "bar camera" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bvk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvl" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/dark, +/area/library) +"bvm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/stool/bar{ + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bvn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvo" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bvp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bvq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bvs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/gun/ballistic/revolver/doublebarrel{ + pixel_y = 5 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/item/ammo_casing/shotgun/beanbag, +/obj/item/ammo_casing/shotgun/beanbag, +/obj/item/ammo_casing/shotgun/beanbag, +/obj/item/ammo_casing/shotgun/beanbag, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvv" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Council Chamber"; + dir = 8; + name = "command camera" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bvw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bvx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bvy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Cabinet" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bvA" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/library) +"bvB" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bvC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bvD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bvE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvG" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bvH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bvL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/library) +"bvM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bvO" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bvP" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bvQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bvR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/bar) +"bvT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_y = 24; + req_access_txt = "27" + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bvU" = ( +/obj/structure/bookcase/random/adult, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bvV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bvW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Shower_2Privacy"; + name = "Shower 2 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"bvX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/library) +"bvY" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/library) +"bwa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bwb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + name = "command camera" + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bwc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bwd" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-17"; + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bwf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bwg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/stack/rods/ten, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/maintenance/port) +"bwh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bwj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bwk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bwl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bwm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bwo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bwp" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"bwq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bwr" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/wheat, +/turf/open/floor/grass, +/area/chapel/main) +"bws" = ( +/turf/closed/wall/rust, +/area/security/detectives_office) +"bwt" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/chapel/main) +"bwu" = ( +/turf/closed/wall/rust, +/area/security/processing) +"bwv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bww" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bwx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bwy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bwA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bwB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bwC" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bwD" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bwE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/captain"; + dir = 4; + name = "Captain's Office APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/storage/lockbox/medal, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bwF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "lawyer sorting disposal pipe"; + sortType = 29 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bwG" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/book/manual/hydroponics_pod_people{ + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/reagent_containers/dropper, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Hydroponics Pen"; + dir = 4; + name = "hydroponics camera" + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bwH" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"bwI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"bwJ" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/chapel/main) +"bwK" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/grass, +/area/chapel/main) +"bwL" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/grass, +/area/chapel/main) +"bwM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bwN" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main) +"bwO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bwP" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bwQ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bwR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/seed_extractor, +/obj/machinery/camera{ + c_tag = "Apiary"; + dir = 4; + name = "chapel camera" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bwS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bwT" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/chapel/main) +"bwU" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/chapel/main) +"bwV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Vault"; + dir = 1; + name = "fore camera" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"bwW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/security/qm{ + dir = 1; + network = list("mine","auxbase","vault","qm") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bwY" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main) +"bwZ" = ( +/turf/open/floor/plasteel/chapel, +/area/chapel/main) +"bxa" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + name = "Monkey Pen"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"bxc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bxe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main) +"bxf" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/chapel/main) +"bxg" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/chapel/main) +"bxi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bxk" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bxl" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bxm" = ( +/obj/structure/sign/plaques/atmos, +/turf/closed/wall, +/area/engine/atmos) +"bxn" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/storage) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bxp" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/maintenance/port) +"bxq" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bxr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"bxs" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bxt" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/chapel/main) +"bxu" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"bxw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bxx" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"bxy" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bxz" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bxA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bxB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main) +"bxC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bxD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/grass, +/area/chapel/main) +"bxE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bxF" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bxH" = ( +/obj/structure/closet{ + name = "beekeeping supplies" + }, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxI" = ( +/obj/structure/closet{ + name = "beekeeping wardrobe" + }, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bxJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/chapel/main) +"bxK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"bxL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/engineering) +"bxM" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/grass, +/area/chapel/main) +"bxN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bxO" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bxP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main) +"bxQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bxR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bxS" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bxU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bxV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"bxW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bxX" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/chapel/main) +"bxY" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main) +"bxZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Secure Storage Toggle"; + pixel_y = -24; + req_access_txt = "11" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bya" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/crowbar/red, +/obj/item/gps/mining, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/miningoffice) +"byb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"byc" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"byd" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/chapel/main) +"bye" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/item/cultivator{ + pixel_x = 6 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"byf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"byg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"byh" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"byi" = ( +/turf/open/floor/plasteel, +/area/security/courtroom) +"byj" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"byk" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"byl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bym" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/bridge) +"byn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"byo" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/departments/cargo{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"byp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/bridge) +"byq" = ( +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Turrets"; + name = "upload camera"; + network = list("aiupload") + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/bridge) +"bys" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/bridge) +"byt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/bridge) +"byu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/evac{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"byv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"byx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/bridge) +"byy" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/central) +"byz" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Station Monitor"; + network = list("ss13"); + pixel_x = 24 + }, +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/hand_labeler, +/turf/open/floor/carpet, +/area/security/detectives_office) +"byA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast door" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"byB" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/ai_upload"; + dir = 1; + name = "Upload APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube_ai"; + name = "Transit Tube Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"byD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"byE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/captains, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"byF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/item/pickaxe/mini, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"byG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"byH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"byI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"byJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"byK" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"byL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"byM" = ( +/obj/structure/table, +/obj/item/aiModule/reset, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byN" = ( +/obj/machinery/porta_turret/ai{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/sign/plaques/kiddie{ + pixel_y = 30 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"byP" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/lootdrop/aimodule_harmful{ + fan_out_items = 1; + lootcount = 2; + lootdoubles = 0 + }, +/obj/item/aiModule/supplied/oxygen{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byQ" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"byR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"byS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Fitness Ring" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"byT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"byU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "dormitories sorting disposal pipe"; + sortType = 26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"byV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"byW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"byX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"byY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"byZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/wardrobe/black, +/obj/effect/turf_decal/bot, +/obj/item/clothing/under/trendy_fit, +/obj/item/clothing/under/trendy_fit, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bza" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/toilet/restrooms"; + name = "Restrooms APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Restrooms"; + dir = 1; + name = "recreation camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bzb" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/freeform, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bzc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"bzd" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"bzf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bzg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/bedsheetbin, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/toilet/restrooms) +"bzh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bzi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bzj" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/lootdrop/aimodule_harmless{ + fan_out_items = 1; + lootcount = 3; + lootdoubles = 0 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bzk" = ( +/obj/item/twohanded/required/kirbyplants/photosynthetic, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bzl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bzm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"bzn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/wardrobe/mixed, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bzo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"bzp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bzq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"bzr" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/quarantine, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bzs" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bzt" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "BrewMaster 2199" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bzu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = -32 + }, +/turf/closed/wall, +/area/crew_quarters/locker) +"bzv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bzw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"bzx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/locker) +"bzy" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/locker) +"bzz" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bzA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bzB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bzC" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bzD" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bzE" = ( +/obj/machinery/door/airlock/vault{ + id_tag = "bank"; + name = "Bank Vault" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bzF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast door" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bzG" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bzH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"bzI" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/oxygen{ + pixel_x = 5 + }, +/obj/item/tank/internals/oxygen{ + pixel_x = -5 + }, +/obj/item/wrench, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/machinery/door/window/northleft{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bzJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bzK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bzL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bzM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bzN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bzO" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bzP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/photo_album/Captain, +/obj/item/camera, +/obj/machinery/newscaster/security_unit{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bzQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bzR" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bzS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/turf/open/space/basic, +/area/space/nearstation) +"bzT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bzU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/cardboard/fifty, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bzV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "bankshutter"; + name = "Bank Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port) +"bzW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bzX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/wrapping_paper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/wrapping_paper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/cable_coil, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bzY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bzZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/grunge{ + name = "Restrooms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bAa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bAc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/spacecash/c500{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/storage/belt/bandolier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bAd" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet{ + name = "suit closet" + }, +/obj/item/clothing/under/lawyer/female{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/lawyer/bluesuit, +/obj/item/clothing/under/lawyer/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bAe" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bAf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bAg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bAh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bAi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bAj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bAk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/poster/random_official{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/maintenance/port) +"bAl" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bAm" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/central) +"bAn" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bAo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bAp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/port) +"bAr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bAs" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes{ + pixel_y = 2 + }, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bAt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/plant_analyzer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bAu" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hydroponics) +"bAv" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bAw" = ( +/obj/machinery/porta_turret/ai{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bAx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bAy" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bAz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/clothing/under/color/grey{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/color/grey, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bAA" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/backpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/backpack, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bAB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bAC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bAD" = ( +/obj/item/radio/intercom{ + pixel_x = 28; + pixel_y = 22 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/chapel/office) +"bAE" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bAF" = ( +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bAG" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bAH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAJ" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Detective's office"; + name = "Detective RC"; + pixel_y = 30 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "detective_shutters"; + name = "Detective's Privacy Toggle"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "4" + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"bAK" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bAM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bAN" = ( +/turf/closed/wall, +/area/medical/virology) +"bAO" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bAP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/locker"; + name = "Locker Room APC"; + pixel_x = -1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bAR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28; + pixel_y = -28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/library) +"bAS" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/library) +"bAT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bAU" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2"; + name = "on ramp"; + pixel_y = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/vacant_room/commissary) +"bAW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bAY" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bAZ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #3"; + suffix = "#3" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bBa" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bBb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bBc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bBd" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bBe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bBh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bBi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Mix to Filter" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bBj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bBk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detective_shutters"; + name = "Detective's Office Shutter" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"bBm" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Distro to Connector" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bBn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/random, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bBo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bBp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBs" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bBt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bBu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bBv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/grunge{ + id_tag = "commissarydoor"; + name = "Vacant Commissary"; + req_one_access_txt = "12;63;48;50" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bBw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bBx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Recreation Fitness Ring"; + dir = 1; + name = "recreation camera" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bBy" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/hallway/primary/aft) +"bBz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/landmark/start/detective, +/turf/open/floor/wood, +/area/security/detectives_office) +"bBA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBC" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bBD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/silver_ids{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/ids, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bBG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bBH" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Tactical Relocation"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bBI" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bBJ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bBK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bBL" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bBM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Cargo Disposal"; + req_access_txt = "50" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + name = "mail belt"; + pixel_y = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bBN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Cargo Disposal"; + req_access_txt = "50" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bBO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Shower_1Privacy"; + name = "Shower 1 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"bBP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/southright{ + dir = 4; + name = "Mail Chute"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bBQ" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bBR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/analyzer{ + pixel_y = 4 + }, +/obj/item/analyzer{ + pixel_x = 2 + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + name = "Tool Storage RC"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bBS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bBT" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/sorting"; + dir = 4; + name = "Delivery Office APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bBU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bBX" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"bBY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bCa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bCb" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bCc" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bCd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bCe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bCf" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bCg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bCh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bCi" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Connector to Security" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCj" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bCl" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stack/cable_coil{ + pixel_y = 4 + }, +/obj/item/stack/cable_coil, +/obj/item/storage/belt/utility, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bCm" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bCo" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bCp" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bCq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/lawoffice) +"bCr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bCs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bCt" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bCw" = ( +/obj/item/clothing/head/helmet/justice/escape{ + name = "justice helmet" + }, +/obj/structure/sign/poster/official/the_owl{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"bCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bCy" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bCA" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/storage/primary) +"bCB" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bCC" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bCE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"bCF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bCG" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bCH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutter Toggle"; + pixel_x = -8; + pixel_y = 24; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway Teleporter Access"; + name = "central camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bCJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"bCK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bCL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bCM" = ( +/turf/closed/wall, +/area/storage/tech) +"bCN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bCO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bCP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"bCR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bCS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bCT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 2 + }, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bCU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bCV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bCW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/teleporter"; + dir = 1; + name = "Teleporter APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bCX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bCY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bCZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bDb" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bDc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bDd" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bDe" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bDf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bDg" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"bDh" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bDi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bDk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/backpack/satchel/eng, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bDl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bDm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bDn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bDo" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bDp" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/tcomms, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/analyzer{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/analyzer, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bDs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bDt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bDu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Port Hallway Vendors"; + dir = 4; + name = "port camera" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bDv" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/rnd, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDw" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bDx" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bDy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bDz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bDA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bDB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"bDC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Bridge Access"; + dir = 8; + name = "command camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bDD" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/open/floor/engine, +/area/storage/tech) +"bDE" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/electronics/apc, +/obj/item/electronics/airlock{ + pixel_y = 6 + }, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/engine, +/area/storage/tech) +"bDF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bDG" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/teleporter) +"bDH" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"bDI" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bDJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/central) +"bDK" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/hydroponics) +"bDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bDM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bDN" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/medical, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/assist, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bDR" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/co2{ + initial_gas_mix = "co2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"bDS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bDT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bDU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bDV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bDW" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"bDX" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/command, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/storage/tech) +"bDY" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/RnD_secure, +/obj/machinery/light/small, +/obj/machinery/status_display/shuttle{ + pixel_y = -32 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/storage/tech) +"bDZ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/AI, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/storage/tech) +"bEa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bEb" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bEc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bEd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bEe" = ( +/obj/structure/bed/dogbed/renault, +/obj/machinery/button/door{ + id = "captain_escape"; + name = "Tactical Relocation Toggle"; + pixel_x = 6; + pixel_y = -24 + }, +/mob/living/simple_animal/pet/fox/Renault, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bEf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bEg" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"bEh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bEi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Courtroom Jury"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bEj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/secure_closet/hop, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bEk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bEl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bEm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bEn" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/central) +"bEo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bEq" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"bEr" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bEs" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bEt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bEu" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bEv" = ( +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bEw" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bEx" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bEy" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bEz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bEA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bED" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/aft) +"bEI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bEJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engine/atmos) +"bEK" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bEL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bEM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "captain_escape"; + name = "Tactical Relocation Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bEN" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bEP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/grunge{ + name = "Recreation Area" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bER" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bES" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"bEU" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bEV" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/aft) +"bEW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bEX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "bankshutter"; + name = "Bank Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bEY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/structure/grille/broken, +/obj/item/book/manual/wiki/engineering_hacking, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bEZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "e.v.a. maintenance"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bFa" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bFb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + name = "Restrooms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bFc" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/aft) +"bFd" = ( +/obj/machinery/door/airlock/atmos{ + name = "Filter Chamber" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bFe" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bFf" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bFg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + name = "disposal supplies" + }, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/shovel, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"bFh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bFi" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bFj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bFk" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bFl" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/poster/official/the_owl{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bFn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bFo" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/machinery/light/small, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"bFp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"bFq" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"bFr" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"bFt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bFu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bFv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bFw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bFx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bFy" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bFA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bFB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bFC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/grille/broken, +/obj/item/wallframe/apc, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bFE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/item/twohanded/required/kirbyplants, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bFG" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/plasma{ + initial_gas_mix = "plasma=1000;TEMP=293.15" + }, +/area/engine/atmos) +"bFH" = ( +/obj/machinery/gulag_teleporter, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bFI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bFJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bFK" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bFL" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bFM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bFN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bFO" = ( +/obj/machinery/bluespace_beacon, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/teleporter) +"bFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bFQ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/port) +"bFR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bFS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"bFT" = ( +/obj/machinery/door/airlock/atmos{ + name = "Filter Chamber" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bFU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bFW" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Lockers"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bFX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics RC"; + pixel_x = 30; + pixel_y = -30 + }, +/obj/machinery/door/window/northright{ + name = "Hydroponics Lockers"; + req_access_txt = "35" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bFY" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFZ" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/aft) +"bGa" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGb" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bGc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bGd" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"bGe" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bGf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bGi" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bGj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"bGk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/hydroponics, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/cultivator, +/obj/item/wirecutters, +/obj/item/reagent_containers/glass/bucket, +/obj/item/circuitboard/machine/biogenerator, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bGl" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bGm" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/girder, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bGn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bGo" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/atmos) +"bGp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bGq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway Courtroom"; + name = "central camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bGs" = ( +/obj/effect/turf_decal/caution{ + pixel_y = -12 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bGu" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/teleporter) +"bGw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/teleporter) +"bGx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bGy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Locker Room"; + name = "recreation camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bGB" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bGC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"bGD" = ( +/obj/machinery/computer/security/labor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 24 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bGE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bGF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bGG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bGI" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bGJ" = ( +/obj/machinery/power/apc{ + area = "/area/maintenance/aft"; + dir = 8; + name = "Aft Maintenance APC"; + pixel_x = -26 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"bGK" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"bGL" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bGM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "disposals sorting disposal pipe"; + sortType = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboad Hallway Custodial Bay"; + name = "starboard camera" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGQ" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"bGR" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bGS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/processing) +"bGT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bGU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bGW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bGY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bGZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bHb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bHc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bHd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bHe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bHh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bHi" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bHj" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bHk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bHn" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/storage/tech) +"bHo" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bHp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bHq" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bHr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher{ + id = "Cell 6"; + name = "Prisoner Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHs" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher{ + id = "Cell 5"; + name = "Prisoner Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHw" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher{ + id = "Cell 4"; + name = "Prisoner Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bHy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/flasher{ + id = "Cell 3"; + name = "Prisoner Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHB" = ( +/obj/structure/sign/poster/official/help_others, +/turf/closed/wall, +/area/bridge) +"bHC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher{ + id = "Cell 2"; + name = "Prisoner Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/flasher{ + id = "Cell 1"; + name = "Prisoner Pacifier"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bHE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bHF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bHG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bHH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bHI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bHJ" = ( +/obj/effect/turf_decal/caution{ + pixel_y = -12 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHK" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bHL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bHN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bHO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bHP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHR" = ( +/obj/structure/disposalpipe/junction, +/turf/closed/wall, +/area/quartermaster/sorting) +"bHS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bHT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bHU" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/primary/aft) +"bHW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bHY" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/security_unit{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bHZ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bIa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bIc" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bId" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/n2o{ + initial_gas_mix = "n2o=1000;TEMP=293.15" + }, +/area/engine/atmos) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bIf" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/radio{ + pixel_y = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "Departures Checkpoint"; + name = "shuttle camera" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bIg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bIh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Transfer Centre Doors"; + dir = 8; + name = "aft camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bIj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bIk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bIl" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/security{ + pixel_x = -4 + }, +/obj/item/toy/figure/dsquad{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bIm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bIn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bIo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/port/aft) +"bIp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/wallframe/airalarm, +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/port/aft) +"bIq" = ( +/obj/machinery/status_display/shuttle, +/turf/closed/wall, +/area/storage/tech) +"bIr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/port/aft) +"bIs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bIt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"bIu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Suit Closet"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bIw" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bIx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/hydroponics) +"bIy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bIC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bID" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bIG" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bIH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + name = "Recreation Area" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bII" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, +/turf/open/floor/plating, +/area/engine/break_room) +"bIJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"bIM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIN" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bIQ" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bIR" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIS" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera/motion{ + c_tag = "Armoury Internal"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bIT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIU" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - O2"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/o2{ + initial_gas_mix = "o2=1000;TEMP=293.15" + }, +/area/engine/atmos) +"bIV" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bIW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vr_sleeper, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bIY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vr_sleeper, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bIZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/autodrobe/all_access, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"bJb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJc" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "custodial sorting disposal pipe"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJe" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "custodialwagon"; + name = "Custodial Bay Toggle"; + pixel_x = 8; + pixel_y = -24; + req_one_access_txt = "26" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/bot/cleanbot{ + auto_patrol = 1; + icon_state = "cleanbot1"; + name = "Mopficcer Sweepsky" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJg" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bJk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bJl" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/storage/tech) +"bJm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bJn" = ( +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJo" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/briefcase, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/bowler{ + pixel_y = 8 + }, +/obj/item/cane, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bJt" = ( +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/soap/nanotrasen, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/button/door{ + id = "Shower_2"; + name = "Shower 2 Privacy Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = -8; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "Shower_2Privacy"; + name = "Shower 2 Privacy Toggle"; + pixel_x = 24; + pixel_y = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bJu" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bJv" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"bJw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bJx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJz" = ( +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Prison Yard Machines"; + name = "prison camera"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bJB" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bJC" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/security/warden) +"bJD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"bJE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/primary/central) +"bJF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bJG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJH" = ( +/obj/structure/table, +/obj/item/paper_bin/construction{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/cable_coil{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stack/cable_coil{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/cable_coil{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/cable_coil, +/obj/item/hand_labeler{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/library) +"bJI" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bJJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bJK" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bJM" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bJN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bJO" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bJP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bJQ" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/item/storage/secure/briefcase{ + pixel_y = 4 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/machinery/button/door{ + id = "Cabin_4"; + name = "Cabin 4 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bJR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bJS" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/button/door{ + id = "Cabin_3"; + name = "Cabin 3 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bJT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJU" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/locker) +"bJV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bJW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bJX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bJY" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/button/door{ + id = "Cabin_2"; + name = "Cabin 2 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/locker) +"bJZ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/locker) +"bKa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bKb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bKc" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/button/door{ + id = "Cabin_4Privacy"; + name = "Cabin 4 Privacy Toggle"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/crew_quarters/locker) +"bKd" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/button/door{ + id = "Cabin_3Privacy"; + name = "Cabin 3 Privacy Toggle"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/locker) +"bKe" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bKf" = ( +/obj/structure/sign/poster/contraband/revolver, +/turf/closed/wall, +/area/crew_quarters/locker) +"bKg" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bKh" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bKi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bKj" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/locker) +"bKk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Cabin_4Privacy"; + name = "Cabin 4 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bKl" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bKm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bKn" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/megaphone{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bKo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bKp" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivate"; + name = "Chief Engineer's Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bKq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/crew_quarters/locker) +"bKr" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bKs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bKt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bKu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bKv" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/flasher{ + id = "PCell 1"; + name = "Prisoner Pacifier"; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bKw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bKx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bKy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bKz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bKA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "detective closet" + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat"; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bKB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/machinery/computer/operating{ + name = "Forensics Operating Computer" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bKC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bKD" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bKE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bKF" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bKG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bKH" = ( +/obj/structure/closet/masks, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bKI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bKJ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bKK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bKL" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/wall, +/area/crew_quarters/locker) +"bKM" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bKN" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Recreation Lockers"; + name = "recreation camera" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bKO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bKP" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/directions/security{ + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKT" = ( +/obj/effect/turf_decal/box, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/button/door{ + id = "Unit_3"; + name = "Unit 3 Privacy Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30; + pixel_y = -30 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door{ + id = "Unit_3Privacy"; + name = "Unit 3 Privacy Toggle"; + pixel_x = 24; + pixel_y = -8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bKU" = ( +/obj/effect/turf_decal/box, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/button/door{ + id = "Unit_2"; + name = "Unit 2 Privacy Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30; + pixel_y = -30 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/button/door{ + id = "Unit_2Privacy"; + name = "Unit 2 Privacy Toggle"; + pixel_x = 24; + pixel_y = -8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bKV" = ( +/obj/effect/turf_decal/box, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/button/door{ + id = "Unit_1"; + name = "Unit 1 Privacy Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30; + pixel_y = -30 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door{ + id = "Unit_1Privacy"; + name = "Unit 1 Privacy Toggle"; + pixel_x = 24; + pixel_y = -8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bKW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bKX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bKY" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bLb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/radio/intercom{ + pixel_x = 28; + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLd" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"bLe" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bLf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/directions/engineering{ + pixel_y = -40 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLj" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/security/prison) +"bLk" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"bLl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLm" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLn" = ( +/turf/closed/wall/rust, +/area/crew_quarters/toilet/restrooms) +"bLo" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/ointment{ + pixel_y = 4 + }, +/obj/item/stack/medical/bruise_pack, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bLp" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bLq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/primary) +"bLs" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/power/apc{ + areastring = "/area/janitor"; + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bLt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bLu" = ( +/turf/closed/wall/rust, +/area/crew_quarters/locker) +"bLv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bLw" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "custodialwagon"; + name = "Custodial Bay Toggle"; + pixel_x = 8; + pixel_y = 24; + req_one_access_txt = "26" + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 24 + }, +/obj/item/clothing/gloves/color/orange, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/key/janitor, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bLx" = ( +/obj/vehicle/ridden/janicart, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bLy" = ( +/obj/structure/janitorialcart, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bLz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bLA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bLB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bLC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bLD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bLE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bLF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bLG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bLH" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/security/prison) +"bLI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bLJ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"bLK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bLL" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bLM" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bLN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 22; + prison_radio = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-17"; + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bLO" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bLR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bLU" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"bLV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bLW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bLX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Long-Term Cell 1"; + dir = 1; + name = "prison camera"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bLY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bLZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bMa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bMb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bMc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bMd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/ripped, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"bMe" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/grass, +/area/security/prison) +"bMf" = ( +/obj/structure/grille/broken, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bMg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bMh" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/crowbar/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bMi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bMj" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bMk" = ( +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bMl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bMm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bMo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bMp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bMq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/screwdriver{ + pixel_y = 18 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"bMr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/camera{ + c_tag = "Autopsy Room"; + dir = 1; + name = "detective camera" + }, +/obj/machinery/status_display/ai{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/start/detective, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bMs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMu" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/central) +"bMv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/vacant_room/commissary) +"bMw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bMx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"bMy" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bMz" = ( +/obj/machinery/computer/prisoner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bMA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bMB" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bMC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bMD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Rotunda"; + dir = 1; + name = "starboard camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bME" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bMF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bMG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bMH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/hallway/primary/aft) +"bMI" = ( +/obj/machinery/door/airlock/external{ + name = "Science Escape Pod" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"bMJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "custodial locker" + }, +/obj/item/clothing/gloves/color/orange, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/soft/purple, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bMK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Chamber"; + req_one_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bML" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/aft) +"bMM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bMN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bMO" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bMP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bMQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bMR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bMS" = ( +/obj/machinery/button/flasher{ + id = "PCell 1"; + name = "Long-Term Cell 1 Pacifier"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "PCell 1Lock"; + name = "Long-Term Cell 1 Toggle"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bMT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bMU" = ( +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bMV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "medbay maintenance"; + req_access_txt = "5" + }, +/obj/structure/sign/directions/evac{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bMW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bMX" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/maintenance/port/aft) +"bMY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bMZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"bNa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bNb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Brig Cells"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"bNc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bNd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"bNe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "sparemech"; + name = "Abandoned Mech Bay" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/sorting) +"bNh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNi" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/grass, +/area/security/prison) +"bNj" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bNk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/stack/sheet/metal/ten{ + amount = 5 + }, +/obj/item/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/stack/rods/ten, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNm" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/maintenance/port/aft) +"bNn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bNp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bNq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"bNr" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bNs" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNt" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/quartermaster/sorting) +"bNu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"bNw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/janitor) +"bNx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall, +/area/janitor) +"bNy" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bNz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bNA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Docking Hallway" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -40 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -24 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bNB" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bNC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bND" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/computer/atmos_control/tank/air_tank{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"bNE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bNF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bNG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bNH" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/grass, +/area/security/prison) +"bNI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/electropack, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc{ + areastring = "/area/security/execution/education"; + name = "Prisoner Education Chamber APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bNJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bNL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNM" = ( +/turf/closed/wall, +/area/janitor) +"bNN" = ( +/obj/structure/closet/secure_closet/personal{ + name = "Commissary Locker" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bNO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/vacant_room/commissary) +"bNQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bNR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/vacant_room/commissary) +"bNS" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/hallway/primary/aft) +"bNT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "commissaryshutter"; + name = "Commissary Shutter Toggle"; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = -8; + specialfunctions = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/assistant{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bNV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + id_tag = "commissarydoor"; + name = "Vacant Commissary"; + req_one_access_txt = "12;63;48;50" + }, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bNW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/vacant_room/commissary) +"bNX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bNY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Toggle"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "19" + }, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bNZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bOa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/vacant_room/commissary) +"bOb" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bOc" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bOd" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bOe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bOg" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/storage) +"bOh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bOi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/rods/fifty{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/requests_console{ + department = "EVA"; + name = "E.V.A. RC"; + pixel_x = 30 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bOj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bOk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel, +/area/storage/primary) +"bOl" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/aft"; + dir = 1; + name = "Starboard Quarter Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bOm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bOn" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bOo" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/janitor) +"bOp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/primary) +"bOq" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bOr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bOs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"bOt" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bOu" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/kilo; + width = 9 + }, +/turf/open/space, +/area/space) +"bOv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/sorting) +"bOw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo maintenance"; + req_one_access_txt = "31;48" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bOx" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + name = "Custodial RC"; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bOy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/janitor) +"bOz" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/janitor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bOA" = ( +/obj/structure/table, +/obj/item/storage/box/mousetraps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/figure/janitor{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 8 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bOB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bOC" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"bOD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bOE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bOH" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/janitor) +"bOI" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bOJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bOL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Diner"; + name = "fore camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bOM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bON" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bOO" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Security"; + name = "navigation beacon (Security Delivery)" + }, +/obj/machinery/door/window/northright{ + name = "Security Delivery Access"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bOP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bOR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bOS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOU" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"bOV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bOX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/secondary/exit/departure_lounge"; + dir = 1; + name = "Departure Lounge APC"; + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Departures Lounge"; + name = "shuttle camera" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bOY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bPa" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/security/prison) +"bPb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bPc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bPe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bPf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bPg" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bPh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/security/prison) +"bPi" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "disposal exit vent" + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"bPj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bPk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bPl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPm" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/flasher{ + id = "PCell 1"; + name = "Prisoner Pacifier"; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bPo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Central Hallway Personnel Queue"; + dir = 1; + name = "central camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPp" = ( +/obj/machinery/status_display/shuttle, +/turf/closed/wall/rust, +/area/security/courtroom) +"bPq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bPr" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bPs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"bPt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Prison Wing Cells"; + dir = 4; + name = "prison camera"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"bPA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/observer_start, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bPD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPE" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4; + icon_state = "manifold" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"bPG" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"bPH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bPI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bPJ" = ( +/turf/closed/mineral/random/labormineral, +/area/hallway/secondary/entry) +"bPK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bPL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "HoP sorting disposal pipe"; + sortType = 15 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Prison Wing Lockers"; + dir = 1; + name = "prison camera"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bPN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bPP" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bPQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bPR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bPS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bPU" = ( +/obj/structure/closet/secure_closet/detective, +/obj/machinery/power/apc{ + areastring = "/area/security/detectives_office"; + dir = 8; + name = "Detective APC"; + pixel_x = -26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"bPV" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/wood, +/area/security/detectives_office) +"bPX" = ( +/obj/machinery/computer/med_data, +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"bPY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPZ" = ( +/obj/machinery/power/apc{ + areastring = "/area/storage/tech"; + dir = 8; + name = "Tech Storage APC"; + pixel_x = -27 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bQa" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bQb" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bQc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bQd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQi" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bQk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Hallway" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bQl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "12;63" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bQm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bQn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/storage/tech) +"bQo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQq" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bQr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bQs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bQt" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bQv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bQz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bQA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bQB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bQC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bQD" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/vacant_room/commissary) +"bQE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/janitor"; + dir = 4; + name = "Vacant Commissary APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bQF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bQG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bQH" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/clipboard, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bQI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"bQJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/item/stack/packageWrap, +/obj/item/storage/secure/briefcase{ + pixel_y = 4 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bQK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + name = "Trash Chute"; + req_one_access_txt = "26" + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "garbage"; + name = "trash chute" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/janitor) +"bQM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bQN" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bQO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11; + pixel_y = 8 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/window/southright{ + name = "Trash Chute"; + req_one_access_txt = "26" + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/janitor) +"bQP" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bQQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"bQS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"bQT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal{ + name = "Command Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bQU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bQZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bRb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bRc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bRd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Long-Term Cell 2"; + dir = 1; + name = "prison camera"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bRf" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bRg" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stack/rods/twentyfive, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bRl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bRm" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Security Desk"; + req_one_access_txt = "63" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bRn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bRo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bRp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bRr" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bRs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bRv" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/hallway/secondary/entry) +"bRw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bRx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + req_one_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRy" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/space/nearstation) +"bRz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bRA" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bRB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bRC" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/vending/wallmed/pubby{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bRD" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bRE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRG" = ( +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/warden"; + dir = 8; + name = "Brig Control APC"; + pixel_x = -26 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24; + pixel_y = 28 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bRH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRI" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bRJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bRK" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bRL" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/vacant_room/commissary) +"bRM" = ( +/obj/machinery/computer/prisoner{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bRN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bRO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Brig Warden's Office"; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"bRP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bRQ" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_home"; + name = "KiloStation emergency evac bay"; + width = 30 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bRR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bRS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/blood/old, +/obj/item/weldingtool{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_y = 5 + }, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bRT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"bRU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRW" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/hallway/primary/aft) +"bRX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bRY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bSa" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bSb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bSc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bSd" = ( +/turf/closed/wall/rust, +/area/hallway/secondary/entry) +"bSe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/blue, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/pen, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Control Desk"; + req_one_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bSf" = ( +/turf/open/floor/engine, +/area/storage/tech) +"bSg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bSh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bSi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bSj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bSk" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/crate/rcd, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "RCD Storage"; + req_access_txt = "19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bSl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/storage/primary) +"bSm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel, +/area/storage/primary) +"bSn" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"bSo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"bSp" = ( +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"bSq" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSr" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"bSs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Incinerator to Output" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bSu" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSv" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bSw" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialwagon"; + name = "Custodial Bay" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSz" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Vacant Commissary"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/vacant_room/commissary) +"bSA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bSB" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bSC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay Toggle"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "19" + }, +/obj/machinery/computer/monitor{ + dir = 8; + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bSD" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/recycler, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bSF" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/machinery/camera{ + c_tag = "Trash Chute"; + dir = 1; + name = "service camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bSH" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bSI" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"bSJ" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bSK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bSL" = ( +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE" + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bSM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + req_one_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bSN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bSO" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bSP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bSQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bSR" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bSS" = ( +/obj/machinery/button/flasher{ + id = "PCell 2"; + name = "Long-Term Cell 2 Pacifier"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "PCell 2Lock"; + name = "Long-Term Cell 2 Toggle"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bST" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bSU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bSV" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bSX" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Hallway" + }, +/obj/structure/sign/departments/engineering{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bSZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bTa" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bTb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Tech Storage"; + dir = 8; + name = "aft camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bTc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bTd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bTe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bTg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bTi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bTj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"bTk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bTl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bTm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bTn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bTo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/structure/grille/broken, +/obj/item/analyzer, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bTq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bTr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/entry"; + dir = 0; + name = "Arrivals APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bTs" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bTt" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTu" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/security/prison) +"bTv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTx" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/rust, +/area/hallway/secondary/exit/departure_lounge) +"bTy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bTA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTB" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bTC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bTF" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bTG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bTI" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/flasher{ + id = "PCell 1"; + name = "Prisoner Pacifier"; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bTJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bTK" = ( +/obj/machinery/button/flasher{ + id = "PCell 3"; + name = "Long-Term Cell 3 Pacifier"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "PCell 3Lock"; + name = "Long-Term Cell 3 Toggle"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bTL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "security locker" + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/under/rank/security/skirt, +/obj/item/clothing/shoes/jackboots, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bTM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bTN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Dock"; + name = "shuttle camera" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTP" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bTQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/stool/bar{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bTR" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bTS" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/execution/education) +"bTU" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bTW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/security/execution/education) +"bTX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bTY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bTZ" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bUa" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/crew_quarters/locker) +"bUb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bUc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bUd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"bUe" = ( +/obj/structure/sign/departments/security{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bUf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bUg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/assistant{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bUi" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bUj" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bUk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bUl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bUm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bUn" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bUp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bUq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bUr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bUs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Traffic Control"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bUt" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/hallway/secondary/entry) +"bUu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bUv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bUx" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bUy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bUz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/hallway/primary/aft) +"bUA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/hallway/primary/aft) +"bUB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bUC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/storage/tech) +"bUD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 2 + }, +/obj/item/wrench, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/storage/eva"; + dir = 8; + name = "E.V.A. Storage APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bUE" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bUF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bUG" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/turf/open/space/basic, +/area/space/nearstation) +"bUH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bUI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bUK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bUL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bUM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/atmos) +"bUN" = ( +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"bUP" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bUQ" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/air, +/area/engine/atmos) +"bUR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/sheet/plasteel/fifty{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"bUS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/atmos) +"bUT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bUU" = ( +/turf/closed/wall, +/area/vacant_room/commissary) +"bUV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bUW" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bUY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bUZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bVf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bVg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "detective sorting disposal pipe"; + sortType = 30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bVj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bVk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bVl" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bVm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = -28; + prison_radio = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bVn" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/security/processing) +"bVo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bVp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bVq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Long-Term Cell 3"; + dir = 1; + name = "prison camera"; + network = list("ss13","prison") + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bVs" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bVt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVu" = ( +/obj/structure/sign/warning/securearea{ + name = "WARNING: Station Limits" + }, +/turf/closed/wall/rust, +/area/space/nearstation) +"bVv" = ( +/turf/closed/mineral/random/high_chance, +/area/space/nearstation) +"bVw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bVx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/execution/education) +"bVz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Justice Windoor"; + req_access_txt = "3" + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Justice Windoor"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "justiceshutter"; + name = "Justice Shutter" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bVA" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -24 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bVB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bVD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bVE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bVF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/crowbar/red, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bVH" = ( +/turf/closed/wall/r_wall/rust, +/area/science/test_area) +"bVI" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall/rust, +/area/science/test_area) +"bVJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bVK" = ( +/obj/structure/flora/grass/jungle/b, +/obj/machinery/camera{ + c_tag = "AI Upload Garden"; + dir = 4; + name = "upload camera"; + network = list("aiupload") + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"bVL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bVM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"bVN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"bVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bVQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bVR" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bVS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bVT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bVU" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Infirmary"; + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bVV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/stool/bar{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bVW" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bVX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"bVY" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bVZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"bWb" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bWc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bWd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bWe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bWf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bWg" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/primary/aft"; + dir = 8; + name = "Aft Hallway APC"; + pixel_x = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bWh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bWi" = ( +/obj/structure/grille/broken, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/hallway/primary/aft) +"bWj" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bWk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bWl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bWm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"bWn" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Dock" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bWo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bWp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Cell 6"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6"; + name = "Cell 6 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bWr" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bWs" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/security/warden) +"bWt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bWu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Cell 5"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5"; + name = "Cell 5 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bWx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/shuttle/mining/common{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bWy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westright{ + name = "Control Desk"; + req_one_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/execution/education) +"bWC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/execution/education) +"bWD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/door/window/northleft{ + name = "Justice Windoor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bWE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/door/window/northright{ + name = "Justice Windoor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bWF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bWG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/storage/tech) +"bWI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWJ" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/storage/tech) +"bWK" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bWL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"bWM" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall/rust, +/area/hallway/secondary/exit/departure_lounge) +"bWN" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWO" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bWP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bWR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"bWS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"bWU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bWV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bWX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bWY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bWZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bXa" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bXb" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bXc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bXd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bXe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "justiceshutter"; + name = "Justice Shutter" + }, +/turf/open/floor/plating, +/area/security/execution/education) +"bXi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXj" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"bXk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXl" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bXm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel, +/area/security/warden) +"bXn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bXq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bXr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/warden) +"bXs" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/machinery/computer/med_data{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXx" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bXy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bXA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXE" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Traffic Control"; + dir = 4; + name = "shuttle camera" + }, +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bXH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"bXI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4 + }, +/obj/item/wrench, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bXJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bXK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/space_heater, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bXN" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bXO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"bXP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"bXQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bXR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bXS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXU" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"bXV" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/window/southleft{ + name = "Security Desk"; + req_one_access_txt = "63" + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bXW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bXY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Brig Entrance" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bYa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"bYb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bYc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bYd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bYe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bYf" = ( +/turf/closed/mineral/random/labormineral, +/area/maintenance/starboard/aft) +"bYg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Dock" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bYh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bYi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Traffic Control"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bYj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bYk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bYm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"bYn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE"; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bYs" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"bYt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bYv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bYz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/ce{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 6; + req_access_txt = "24" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bYA" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bYB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bYC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/item/paper/monitorkey, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 8; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bYD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"bYE" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bYG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bYK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bYL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bYM" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/aft) +"bYN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bYO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"bYP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bYQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bYR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bYS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bYT" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/prison"; + dir = 1; + name = "Prison Wing APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bYU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bYV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/goonplaque, +/area/security/brig) +"bYW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYY" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZb" = ( +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Toggle"; + pixel_x = 8; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZd" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"bZe" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"bZf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bZg" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"bZh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/hug/medical{ + pixel_y = 4 + }, +/obj/item/crowbar, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bZi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bZj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bZk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bZl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/hallway/primary/central"; + dir = 1; + name = "Central Primary Hallway APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bZm" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bZn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bZo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bZp" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZq" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bZr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZt" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bZu" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bZv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bZw" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bZx" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Planters"; + dir = 4; + name = "starboard camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_x = -28; + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bZA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bZD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/backpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/backpack, +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/starboard"; + dir = 4; + name = "Starboard Hallway APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bZG" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bZH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bZI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bZJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Departures Cargo Dock"; + dir = 1; + name = "shuttle camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bZM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=S CPH"; + dir = 8; + location = "SE CPH"; + name = "Patrol navbeacon SE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZP" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bZQ" = ( +/obj/structure/closet/l3closet/janitor, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/item/grenade/clusterbuster/cleaner, +/turf/open/floor/plasteel/dark, +/area/janitor) +"bZR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZT" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"bZU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"bZV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"bZW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Departure Checkpoint"; + dir = 4; + name = "starboard camera" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel, +/area/security/brig) +"bZY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"bZZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"caa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"cab" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cac" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Security Firelock"; + dir = 1; + name = "aft camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cad" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cae" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"caf" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cag" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cah" = ( +/obj/structure/flora/rock/pile, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"caj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cak" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cal" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cam" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"can" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"cao" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"cap" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"caq" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"car" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cas" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/airlock_painter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/airlock_painter, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cat" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cau" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cav" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/hallway/secondary/entry) +"caw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cax" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cay" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"caz" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"caA" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"caB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"caC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"caD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"caE" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 4; + name = "service camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/janitor) +"caF" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"caG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/landmark/start/janitor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"caH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"caI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"caJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivate"; + name = "Chief Engineer's Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"caK" = ( +/obj/machinery/door/poddoor{ + id = "atmosventco2"; + name = "Emergency CO2 Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"caL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"caN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"caO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"caP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"caQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"caR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/primary) +"caS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"caT" = ( +/turf/closed/wall/r_wall, +/area/science/test_area) +"caV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"caW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"caX" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/grass, +/area/security/prison) +"caY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"caZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cba" = ( +/obj/machinery/door/airlock/grunge{ + name = "Service Production"; + req_one_access_txt = "25;26;35;28;22;37;46;38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"cbb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/plaques/golden{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cbc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbf" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"cbg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cbh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cbi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cbj" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cbk" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard) +"cbl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cbm" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/starboard) +"cbn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "research lab maintenance"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cbo" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/delivery, +/obj/item/gun/energy/e_gun/mini, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"cbr" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/locker) +"cbs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cbv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cbx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cbz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cbA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cbB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + pixel_x = 28; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cbC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"cbF" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -28; + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cbH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"cbJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cbM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cbN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cbO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cbP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cbQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cbR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"cbS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cbT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cbU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/science/test_area) +"cbV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"cbW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cbX" = ( +/obj/item/target/clown, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"cbY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/grunge{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/janitor) +"cbZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cca" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccc" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ccd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cce" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/beacon, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ccf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccg" = ( +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod_lavaland2"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cch" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cci" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ccj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"ccm" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ccn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cco" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall, +/area/science/test_area) +"ccp" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ccq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ccr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ccs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cct" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ccu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"ccv" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/security/main) +"ccw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ccx" = ( +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ccz" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"ccB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"ccC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ccE" = ( +/obj/item/beacon, +/obj/effect/turf_decal/box, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccF" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccG" = ( +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ccH" = ( +/turf/closed/indestructible/opshuttle, +/area/science/test_area) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ccJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"ccK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ccL" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ccM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"ccN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "security disposal pipe"; + sortType = 7 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ccO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccP" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ccQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ccS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccT" = ( +/obj/machinery/door/poddoor{ + id = "atmosventplasma"; + name = "Emergency Plasma Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"ccU" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"ccV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ccW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Locker Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"ccX" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ccY" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ccZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cda" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 30 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cdb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdc" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/ai_upload) +"cdd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cde" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/shuttle{ + pixel_x = 32 + }, +/obj/machinery/computer/security/telescreen/minisat{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"cdf" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cdg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cdh" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cdi" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/security/prison) +"cdj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cdl" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cdm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cdn" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdo" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cdq" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cds" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"cdt" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cdu" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cdv" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"cdw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"cdy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdB" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdC" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdD" = ( +/turf/closed/wall/r_wall, +/area/security/nuke_storage) +"cdE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdF" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdG" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/aft"; + dir = 1; + name = "Port Quarter Maintenance APC"; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cdJ" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdK" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdL" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdM" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdO" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "sparemech"; + name = "Abandoned Mech Bay Toggle"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cdR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cdS" = ( +/obj/structure/sign/warning/securearea, +/obj/item/multitool, +/turf/closed/wall/r_wall, +/area/security/nuke_storage) +"cdT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cdU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cdV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cdW" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = 28 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"cdX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cdY" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/ai) +"cdZ" = ( +/turf/closed/wall/rust, +/area/ai_monitored/turret_protected/ai) +"cea" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ceb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cec" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Locker Room" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"ced" = ( +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -28; + pixel_y = 6 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 28; + pixel_y = 6 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/button/door{ + id = "AI Core shutters"; + name = "AI Core Shutters Toggle"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "16" + }, +/obj/machinery/button/door{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Lockdown"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"cee" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cef" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + layer = 4.1; + name = "Secondary AI Core Access"; + obj_integrity = 300; + pixel_x = 4; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"ceg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ceh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cei" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/ai"; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 23 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cej" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cek" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cel" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cem" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"ceo" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + layer = 4.1; + name = "Tertiary AI Core Access"; + obj_integrity = 300; + pixel_x = -3; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"cep" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"ceq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"cer" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ces" = ( +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cet" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ceu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cev" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cew" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/circuit/red/telecomms, +/area/tcommsat/server) +"cex" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cey" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cez" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ceA" = ( +/obj/machinery/door/airlock/external{ + name = "Satellite External Airlock"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"ceB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ceC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ceD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ceE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ceF" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"ceG" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat/atmos) +"ceH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ceI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"ceJ" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"ceK" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + areastring = "/area/security/nuke_storage"; + dir = 1; + name = "Vault APC"; + pixel_y = 25 + }, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/documents, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/security/nuke_storage) +"ceL" = ( +/obj/machinery/computer/bank_machine, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/security/nuke_storage) +"ceM" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/geiger_counter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/ninja{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/security/nuke_storage) +"ceN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"ceO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ceP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ceQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ceR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceU" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"ceV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"ceX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"ceY" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ceZ" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/r_wall, +/area/security/nuke_storage) +"cfa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"cfb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/rnd/production/techfab/department/security, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cfc" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfd" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfe" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cff" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfg" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfh" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cfj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cfk" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/security/nuke_storage) +"cfl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cfm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cfn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cfo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cfs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cft" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cfu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cfv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cfw" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Atmospherics Desk"; + dir = 1; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cfx" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cfy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cfz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Airlock"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfA" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfB" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"cfD" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialwagon"; + name = "Custodial Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/janitor) +"cfE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/server) +"cfF" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfG" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cfI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cfJ" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cfK" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"cfL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cfM" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cfN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cfO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cfP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cfQ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cfR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cfS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cfT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cfW" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/space/nearstation) +"cfY" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/satellite) +"cga" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/storage/satellite) +"cgb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"cgd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"cge" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/tcommsat/computer) +"cgf" = ( +/obj/machinery/computer/telecomms/server, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cgg" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/hallway/secondary/entry) +"cgi" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"cgj" = ( +/obj/machinery/door/airlock/external{ + name = "Satellite External Airlock"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"cgl" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgm" = ( +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/maintenance/port) +"cgn" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgo" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"cgp" = ( +/obj/structure/closet/secure_closet/hos, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"cgq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"cgr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"cgs" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/storage/secure/safe/HoS{ + pixel_x = 36; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"cgt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cgu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cgv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cgw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cgx" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/hallway/secondary/entry) +"cgy" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cgz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cgA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cgB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cgC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cgD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"cgE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Engineering Venders"; + dir = 8; + name = "aft camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cgF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"cgG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cgH" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Airlock"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cgI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"cgJ" = ( +/obj/machinery/door/poddoor/preopen, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cgK" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cgL" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/xeno_mining{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Port Quarter Solar"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/port/aft) +"cgM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cgN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/bot/medbot{ + auto_patrol = 1; + desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed."; + name = "Inspector Johnson" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cgO" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/port/aft) +"cgP" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cgR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cgS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/computer/security/telescreen/prison{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cgT" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"cgU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cgV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cgW" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/item/pickaxe/mini, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cgX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"cgY" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cha" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"chb" = ( +/obj/structure/table/wood, +/obj/item/storage/box/deputy{ + pixel_y = 5 + }, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/flashlight/seclite, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"chc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"chd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"che" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"chf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"chg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"chh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"chi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"chj" = ( +/obj/structure/sign/warning/xeno_mining, +/turf/closed/wall, +/area/maintenance/fore) +"chk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"chl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"chm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"chn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"cho" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Transferring Centre"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"chp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chs" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cht" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/fireaxecabinet{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Scrubbers"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chy" = ( +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -5 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/geiger_counter, +/obj/item/geiger_counter, +/obj/structure/table, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"chz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engine/atmos"; + dir = 1; + name = "Atmospherics APC"; + pixel_y = 28 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"chC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chD" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"chE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chF" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"chG" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"chH" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"chI" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"chJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"chK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"chL" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"chM" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"chN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chO" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"chP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"chQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"chR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"chS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"chV" = ( +/turf/closed/wall/rust, +/area/ai_monitored/turret_protected/aisat_interior) +"chW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"chX" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"chY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/port/aft) +"chZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cia" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cib" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cic" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cid" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cif" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cig" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cih" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "sidearmory"; + name = "Side Armoury Shutter" + }, +/obj/machinery/button/door{ + id = "sidearmory"; + name = "Armoury Shutter Toggle"; + pixel_y = -24; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cii" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"cij" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hos) +"cik" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"cil" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cim" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Warden Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cin" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter) +"cio" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cip" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciq" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"cir" = ( +/obj/structure/transit_tube/junction, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"cis" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat/foyer) +"cit" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ciu" = ( +/obj/structure/table, +/obj/item/clothing/suit/justice, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"civ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"ciw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cix" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"ciy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8; + name = "scrubbers pipe" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciB" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/storage/satellite"; + name = "MiniSat Maint APC"; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"ciC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciD" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"ciE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciF" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/seeds/sugarcane, +/turf/open/floor/grass, +/area/security/prison) +"ciG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciH" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ciI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciM" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Storage"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciQ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/space/nearstation) +"ciR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ciS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"ciT" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engineaccess"; + name = "Engine Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ciU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ciV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ciW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ciX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = -24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Foyer"; + dir = 4; + name = "upload camera"; + network = list("aiupload") + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -28 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ciY" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"ciZ" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cja" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cjb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cjc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/book/manual/wiki/tcomms, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cjd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cje" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -28 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cjf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cjg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cjh" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cji" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cjj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cjk" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/port/aft) +"cjl" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"cjm" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cjn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cjp" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/port/aft"; + dir = 4; + name = "Port Quarter Solar APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/port/aft) +"cjq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"cjr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/security/main) +"cjs" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cjt" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/engine/engineering) +"cju" = ( +/turf/closed/wall, +/area/engine/gravity_generator) +"cjv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"cjw" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/gravity_generator) +"cjx" = ( +/obj/structure/table, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/item/clipboard, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/gravity_generator) +"cjy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutter Toggle"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"cjz" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"cjA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cjB" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engine/gravity_generator) +"cjC" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"cjD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cjF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"cjG" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"cjH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Access"; + req_one_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cjI" = ( +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cjJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "N2 to Pure" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "N2 to Airmix" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjN" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/supermatter) +"cjO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cjQ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"cjR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cjU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cjW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cjY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cka" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ckb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cke" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/space/nearstation) +"ckf" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ckg" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"ckh" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cki" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ckk" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"ckl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"ckm" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"ckn" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/space/nearstation) +"cko" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ckq" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"ckt" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Cooler"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cku" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"ckv" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/starboard/aft) +"ckw" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/engine/engineering) +"ckx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"ckz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"ckA" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/starboard/aft) +"ckB" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"ckC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"ckD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"ckE" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"ckF" = ( +/obj/structure/bed/dogbed/cayenne{ + name = "Lia's bed" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/mob/living/simple_animal/hostile/retaliate/bat{ + desc = "A failed experiment of Nanotrasen to create weaponised carp technology. This less than intimidating carp now serves as an authority figure's pet."; + emote_taunt = list("gnashes"); + faction = list("carp"); + harm_intent_damage = 3; + health = 200; + icon_dead = "magicarp_dead"; + icon_gib = "magicarp_gib"; + icon_living = "magicarp"; + icon_state = "magicarp"; + maxHealth = 200; + max_co2 = 5; + max_tox = 2; + melee_damage_lower = 15; + melee_damage_upper = 20; + min_oxy = 5; + name = "Lia"; + real_name = "Lia"; + response_help = "pets"; + turns_per_move = 10 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"ckG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ckH" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engine/engineering) +"ckI" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engine/engineering) +"ckJ" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"ckK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"ckL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckM" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckO" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckP" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckQ" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"ckR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper/crumpled{ + info = "The safes have been locked and scrambled. Three thousand space dollars, a bandolier, a custom shotgun, and a lazarus injector have been safely deposited."; + name = "bank statement" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ckS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ckU" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/aft) +"ckV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ckW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"ckX" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckY" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"ckZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cla" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"clb" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/aft) +"clc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"cld" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"cle" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"clf" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/engine/engineering) +"clg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/plasteel, +/area/security/processing) +"cli" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clj" = ( +/obj/structure/table, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"clk" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cll" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"clm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cln" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"clo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"clp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"clq" = ( +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"clr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cls" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"clt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"clu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"clv" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/tank/toxin_tank{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"clw" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"clx" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cly" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26; + pixel_y = -30 + }, +/obj/item/radio/intercom{ + pixel_y = -26 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/engineering"; + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"clz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -28 + }, +/obj/machinery/recharger, +/obj/machinery/camera{ + c_tag = "Engineering Security Post"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"clA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"clB" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"clC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"clD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clE" = ( +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/gravity_generator) +"clF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/port/aft) +"clI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Plasma to Pure" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"clJ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/belt/utility{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"clK" = ( +/obj/item/stack/cable_coil, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/port/aft) +"clL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"clM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"clN" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"clO" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/aft) +"clP" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clQ" = ( +/obj/machinery/gravity_generator/main/station, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clR" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clT" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"clV" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clW" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc{ + areastring = "/area/engine/gravity_generator"; + name = "Gravity Generator APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"clX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/processing) +"clY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"clZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cma" = ( +/obj/structure/closet/crate/solarpanel_small, +/obj/effect/turf_decal/delivery, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Atmospherics Entrance"; + dir = 8; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"cmd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cme" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/mixer/airmix, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmh" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"cmi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Dock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cmk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to West Ports" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cml" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmm" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"cmn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Aft Tanks"; + dir = 1; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cmr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cms" = ( +/obj/machinery/door/poddoor/preopen{ + id = "gravity"; + name = "Gravity Generator Blast Door" + }, +/obj/machinery/button/door{ + id = "gravity"; + name = "Gravity Generator Lockdown"; + pixel_y = 24; + req_one_access_txt = "19;23" + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"cmt" = ( +/turf/closed/wall/mineral/plastitanium, +/area/maintenance/port/aft) +"cmu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmw" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Laser Room Port"; + dir = 1; + name = "laser room camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/engine/engineering) +"cmx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Waste to Filter" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmA" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/emitter/anchored{ + dir = 4; + state = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/engineering) +"cmB" = ( +/obj/structure/closet/radiation, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cmC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cmD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cmE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "gravity"; + name = "Gravity Generator Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"cmF" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"cmG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cmH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cmJ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"cmK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cmL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cmM" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"cmN" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/emitter/anchored{ + dir = 8; + state = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engine/engineering) +"cmP" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hos) +"cmQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "gravity"; + name = "Gravity Generator Blast Door" + }, +/obj/machinery/light/small, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"cmR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cmS" = ( +/obj/machinery/camera{ + c_tag = "Satellite External Fore"; + dir = 1; + name = "exterior camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cmT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cmU" = ( +/obj/machinery/camera{ + c_tag = "Satellite External Port"; + dir = 8; + name = "exterior camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cmV" = ( +/obj/machinery/camera{ + c_tag = "Satellite External Starboard"; + dir = 4; + name = "exterior camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cmW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cmX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cmZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cna" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cnb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + name = "output gas connector port" + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Incinerator"; + dir = 8; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cnd" = ( +/turf/closed/wall/rust, +/area/maintenance/disposal) +"cne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cnh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"cni" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/port) +"cnj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cnl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cnm" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cnn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cno" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer3{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer3{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cnq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/clipboard, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/secofficer, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cnr" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port) +"cnt" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cnu" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"cnv" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Transferring Centre Dock"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/processing) +"cnw" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cnx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/processing) +"cny" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cnz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cnA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/processing) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cnC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gulag_item_reclaimer{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/security/processing) +"cnD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cnE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cnF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cnG" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cnH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cnI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cnJ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cnK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cnL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"cnM" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cnN" = ( +/turf/closed/wall, +/area/maintenance/solars/port/aft) +"cnP" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"cnQ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/port/aft) +"cnR" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cnS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cnT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cnU" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cnV" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cnW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cnX" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"cnY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/engine/engineering) +"cnZ" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"coa" = ( +/obj/machinery/power/tracker, +/obj/effect/turf_decal/box, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cob" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"coc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cod" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coe" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cof" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cog" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"coh" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/engine/engineering) +"coi" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"coj" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/obj/machinery/airalarm/engine{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cok" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"col" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"com" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Filter" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"con" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Toggle"; + pixel_y = -24; + req_access_txt = "10" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/engine/engineering) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/maintenance/port) +"coq" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engine/engineering) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cos" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cou" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"cov" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cow" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"cox" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coy" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"coA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coC" = ( +/obj/structure/sign/warning/deathsposal, +/turf/closed/wall, +/area/maintenance/disposal) +"coD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"coG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"coH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"coI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"coK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"coL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"coM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/tank/nitrous_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"coN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"coU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"coV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"coW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/dark/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"coX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Pure to Fuel Pipe" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"coZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpb" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/disposal) +"cpc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to East Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "atmosventco2"; + name = "Emergency CO2 Vent Toggle"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Pure to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cph" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2O to Pure" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"cpi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "atmosventplasma"; + name = "Emergency Plasma Vent Toggle"; + pixel_x = 6; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cps" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cpt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cpv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cpw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cpx" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space/basic, +/area/space/nearstation) +"cpy" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal/incinerator"; + dir = 1; + name = "Incinerator APC"; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cpz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/emitter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cpA" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"cpB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Secure Storage"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cpC" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cpD" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Gas" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cpE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible/layer3, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cpF" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"cpG" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"cpH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Fuel Pipe" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cpJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpM" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Distro" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cpP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/beacon, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"cpS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"cpT" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cpU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/fire{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpX" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"cpY" = ( +/obj/item/pickaxe, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cpZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cqa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cqb" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/port) +"cqc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cqe" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/gps, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cqf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"cqg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cqh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cqi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Filter" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/supermatter) +"cqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cqk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Chamber" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engine/supermatter) +"cql" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Bypass" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cqm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/obj/machinery/meter, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"cqo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cqp" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqq" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/port/aft) +"cqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqs" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/maintenance/port) +"cqt" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/maintenance/port/aft) +"cqu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cqv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqw" = ( +/obj/structure/sign/warning/deathsposal{ + layer = 4 + }, +/turf/closed/wall, +/area/science/xenobiology) +"cqx" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"cqy" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cqB" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"cqD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cqF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqI" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"cqJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqQ" = ( +/obj/machinery/door/window/westright{ + name = "Waste Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cqR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Distribution Loop"; + dir = 8; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cqS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cqT" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/rust, +/area/maintenance/port) +"cqU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"cqV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/meter, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"cqW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/camera{ + c_tag = "Supermatter Terminal"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cqX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cqY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"cqZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/disposal) +"cra" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"crb" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"crc" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"crd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Mix" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cre" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"crf" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"crg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"crh" = ( +/obj/structure/sign/poster/contraband/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"cri" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"crj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"crk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"crl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"crm" = ( +/obj/structure/rack, +/obj/structure/grille/broken, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cro" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"crp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"crq" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/rust, +/area/maintenance/port) +"crr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"crs" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "atmospherics sorting disposal pipe"; + sortType = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Unfiltered & Air to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cru" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"crv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"crw" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Pod" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"crx" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"cry" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"crz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"crA" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"crB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/coin/twoheaded{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"crC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"crD" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Pod" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"crE" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"crF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"crG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"crI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"crJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/engineering) +"crL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/warden, +/obj/structure/chair/office, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"crM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"crN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"crO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_z = 24 + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/engine/engineering) +"crP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"crQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"crR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"crS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/item/poster/random_contraband{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/poster/random_contraband, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"crT" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Atmos to Loop" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/engine/engineering) +"crU" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"crV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"crW" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/storage/toolbox/emergency, +/obj/item/wirerod, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"crX" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"crY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/security/warden) +"crZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"csa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"csb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"csc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csd" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"csf" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"csg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csh" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Storage" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engine/atmos) +"csj" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csl" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/stack/cable_coil, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"csn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cso" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"csp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"csq" = ( +/obj/machinery/door/window/westleft{ + name = "Waste Door" + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"csr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"css" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cst" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"csu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"csv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 8 + }, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"csx" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csy" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Waste Line"; + dir = 8; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/button/door{ + id = "engineaccess"; + name = "Engine Access Lockdown"; + pixel_x = 24; + req_one_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"csz" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"csA" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/button/door{ + id = "gravity"; + name = "Gravity Generator Lockdown"; + pixel_x = -24; + req_one_access_txt = "19;23" + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"csB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"csC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "ce sorting disposal pipe"; + sortType = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csE" = ( +/obj/structure/sign/departments/engineering{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Aft Hallway Engineering Doors"; + dir = 1; + name = "aft camera" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csG" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"csI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"csK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"csL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"csM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"csN" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"csO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"csP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"csQ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"csT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"csU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"csV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"csW" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"csX" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Cold Loop" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/engine/engineering) +"csY" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"csZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Supermatter Engine"; + dir = 1; + name = "supermatter camera"; + network = list("engine") + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cta" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ctb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/pods{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"ctc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctd" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"cte" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ctf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cth" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/maintenance/port"; + dir = 4; + name = "Port Maintenance APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"cti" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ctj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ctk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"ctm" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/fore) +"ctn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"cto" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Fuel Pipe to Incinerator" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ctp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ctq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Cooling Loop Bypass" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ctr" = ( +/obj/machinery/door/poddoor{ + id = "atmosventn2o"; + name = "Emergency N2O Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cts" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ctt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"ctv" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ctw" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/fore) +"ctx" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cty" = ( +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"ctz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"ctA" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/port/fore) +"ctB" = ( +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"ctC" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"ctD" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/port/fore) +"ctE" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/port/fore) +"ctF" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ctG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"ctH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ctI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ctJ" = ( +/obj/structure/sign/departments/xenobio, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"ctK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Gateway"; + name = "command camera" + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"ctL" = ( +/obj/machinery/power/tracker, +/obj/effect/turf_decal/box, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"ctM" = ( +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"ctO" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"ctP" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"ctQ" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"ctR" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"ctS" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ctU" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctV" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/port/fore) +"ctW" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctX" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"ctZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cua" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"cub" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cuc" = ( +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cud" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "engineering sorting disposal pipe"; + sortType = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cue" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cuf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cug" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cuh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cui" = ( +/mob/living/simple_animal/hostile/asteroid/goliath, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cuk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cul" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cum" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cun" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/port/fore) +"cuo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cup" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cuq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cur" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cus" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cut" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cuv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"cux" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"cuy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuz" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cuC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cuF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cuG" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cuH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"cuI" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"cuK" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Cold Loop to Gas" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/engine, +/area/engine/engineering) +"cuL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cuM" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engine/engineering) +"cuO" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuP" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8; + filter_type = "n2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"cuR" = ( +/obj/structure/sign/warning/xeno_mining, +/turf/closed/wall/rust, +/area/maintenance/port) +"cuS" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cuT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cuU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuV" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"cuY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cuZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cva" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cvb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cvc" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cvd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cve" = ( +/obj/structure/sign/poster/contraband/red_rum, +/turf/closed/wall/rust, +/area/maintenance/port) +"cvf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cvg" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cvh" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cvi" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cvj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvk" = ( +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cvl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cvn" = ( +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cvp" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cvr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/engineering) +"cvs" = ( +/obj/item/clothing/glasses/sunglasses, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port) +"cvt" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/engine/engineering) +"cvu" = ( +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cvv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/chair/stool/bar, +/mob/living/simple_animal/hostile/russian, +/turf/open/floor/wood, +/area/maintenance/port) +"cvw" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/engine/engineering) +"cvx" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/contraband/smoke{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/cabinet, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/item/stack/rods/ten, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cvz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/book/manual/wiki/detective{ + pixel_y = 4 + }, +/obj/item/camera, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvB" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/rust, +/area/maintenance/port) +"cvC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/engineering) +"cvD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cvE" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cvF" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/briefcase, +/obj/item/taperecorder, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cvG" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/oxygen, +/obj/item/pickaxe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvH" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cvI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Starboard Quarter Solar"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cvJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/aft) +"cvK" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cvL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cvM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cvN" = ( +/obj/machinery/gateway/centerstation, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/gateway) +"cvO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cvP" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cvQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cvR" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cvS" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/aft) +"cvT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/gateway, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cvU" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cvV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cvW" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/gateway) +"cvX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/dresser, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cvY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/under/geisha{ + pixel_y = 5 + }, +/obj/item/toy/katana, +/obj/item/clothing/shoes/sandal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cvZ" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/item/wallframe/apc, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cwb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cwc" = ( +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_x = 8; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cwd" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cwe" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cwf" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cwg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwi" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cwl" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cwm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwn" = ( +/obj/structure/sign/poster/official/twelve_gauge, +/turf/closed/wall, +/area/gateway) +"cwo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cwp" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"cwq" = ( +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cwr" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/machinery/button/door{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + pixel_x = -26; + req_access_txt = "19" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/gateway) +"cws" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/starboard/aft"; + name = "Starboard Quarter Solar APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/aft) +"cwt" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"cwu" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/solars/starboard/aft) +"cwv" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/solars/starboard/aft) +"cwx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"cwy" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"cwz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cwA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cwB" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/mob/living/simple_animal/hostile/russian, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port) +"cwC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cwD" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cwE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/bridge) +"cwF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"cwG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cwH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cwI" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cwJ" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/fore) +"cwK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cwL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cwM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cwN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal"; + dir = 1; + name = "Disposals APC"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"cwO" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cwQ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/stack/packageWrap, +/obj/item/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cwS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cwT" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/fore) +"cwU" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwV" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/port) +"cwW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cwX" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cwY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_y = 26 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/glasses/eyepatch{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"cxa" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/head/that{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxb" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/fore) +"cxc" = ( +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/autodrobe/all_access, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cxe" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/fore) +"cxf" = ( +/obj/structure/barricade/wooden, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cxh" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cxi" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"cxj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"cxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cxl" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cxm" = ( +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal) +"cxn" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/fore) +"cxo" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"cxp" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cxq" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cxr" = ( +/obj/structure/sign/poster/contraband/clown, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cxs" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cxt" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cxu" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cxv" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/locker) +"cxw" = ( +/obj/machinery/computer/cryopod{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/locker) +"cxy" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"cxz" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cxB" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cxD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"cxE" = ( +/obj/machinery/camera/motion{ + c_tag = "Armoury External" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cxH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cxI" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cxK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"cxL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "engineering locker" + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/under/rank/engineer, +/obj/item/clothing/shoes/workboots, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"cxP" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cxQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Lab Maintenance"; + req_access_txt = "8" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cxS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/atmos) +"cxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cxV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cxY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"cyb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/engine/break_room) +"cyc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cyd" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cye" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/fore"; + dir = 1; + name = "Port Bow Maintenance APC"; + pixel_y = 26 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"cyf" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cyg" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cyh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"cyj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cyl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"cym" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Foyer" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cyn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Foyer" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cyp" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cys" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/storage/belt/utility, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "Engineering Desk"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cyu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"cyv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/port) +"cyx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cyy" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/port/aft) +"cyz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = 32 + }, +/obj/structure/grille/broken, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cyA" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cyB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cyC" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyE" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/box/evidence{ + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/grenade/flashbang, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cyG" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cyI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"cyK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/secure/briefcase{ + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cyL" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyM" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyO" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyP" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyV" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cyX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cza" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/official/space_cops{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"czc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"czd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cze" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/engine/engineering) +"czf" = ( +/obj/machinery/power/emitter/anchored{ + dir = 4; + state = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"czg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/fore) +"czl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czo" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"czp" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"czq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czr" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"czs" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"czt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"czu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czv" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"czw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"czz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/bodybag{ + pixel_y = 5 + }, +/obj/item/shovel, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czB" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/extinguisher/mini, +/obj/item/tank/internals/oxygen/yellow, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"czC" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"czD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"czG" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"czK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fore) +"czR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"czS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"czU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"czV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"czW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"czY" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/engineering, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8; + icon_state = "intact" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"czZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cAf" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/medical/morgue) +"cAg" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/port) +"cAi" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cAj" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/chapel/office) +"cAk" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cAo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAp" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall/rust, +/area/chapel/office) +"cAq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAr" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/the_griffin{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAs" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/gauze, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + id_tag = "Abandoned Cell"; + name = "Abandoned Cell" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAy" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/neck/stethoscope, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAB" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cAC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel maintenance"; + req_one_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAF" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cAG" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAH" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/maintenance/fore) +"cAI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cAO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"cAP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cAU" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/fore) +"cAX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "Emergency Research Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/research) +"cAY" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_nw"; + name = "northwest of station"; + width = 23 + }, +/turf/open/space/basic, +/area/space) +"cBb" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cBc" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/fore) +"cBe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel maintenance"; + req_one_access_txt = "22" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cBf" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"cBg" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/hooded/chaplain_hoodie, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cBh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Apiary"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cBi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cBl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cBm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cBn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/prison{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"cBo" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/gun/energy/e_gun/advtaser, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"cBr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/grille/broken, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cBu" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/clothing/mask/gas/sechailer/swat, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/security/main) +"cBv" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBw" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBx" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBy" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBz" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cBA" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"cBB" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cBC" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cBF" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"cBH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/engine/atmos) +"cBI" = ( +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBJ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cBQ" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"cBR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cBU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cBV" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"cBW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Cabin_3Privacy"; + name = "Cabin 3 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"cBX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Unit_3Privacy"; + name = "Unit 3 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cBY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Unit_2Privacy"; + name = "Unit 2 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cBZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Unit_1Privacy"; + name = "Unit 1 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cCa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/structure/flora/grass/jungle/b, +/obj/machinery/light, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cCb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/port/aft) +"cCe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cCg" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cCh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cCi" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cCj" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cCk" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cCl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cCo" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cCp" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall/rust, +/area/security/prison) +"cCq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/engineering) +"cCr" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"cCy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel maintenance"; + req_one_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cCz" = ( +/obj/structure/closet{ + name = "maid locker" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/under/maid{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/janimaid, +/obj/item/clothing/accessory/maidapron{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/shoes/laceup, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCA" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cCB" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cCC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/clipboard, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plating, +/area/hydroponics) +"cCE" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/mousetraps{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCF" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Security Desk"; + req_one_access_txt = "63" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cCI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCM" = ( +/obj/structure/janitorialcart, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"cCP" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cCR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCS" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maidbay"; + name = "Maid Bay" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door{ + id = "maidbay"; + name = "Maid Bay Toggle"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCT" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maidbay"; + name = "Maid Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cCX" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space, +/area/engine/atmos) +"cCY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cDb" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/fore) +"cDc" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/fore"; + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cDd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cDh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cDj" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/solar/port/fore) +"cDk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDm" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cDn" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cDo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cDp" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"cDq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cDr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cDs" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cDt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cDx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDy" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cDz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/button/door{ + id = "medbay_front_door"; + name = "Medbay Doors Toggle"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cDA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cDB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cDD" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cDE" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cDF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cDG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cDH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cDI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cDJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cDK" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cDO" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/fore) +"cDP" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/fore) +"cDR" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cDS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Armoury"; + req_access_txt = "58" + }, +/obj/machinery/door/poddoor/shutters{ + id = "frontarmory"; + name = "Front Armoury Shutter" + }, +/obj/machinery/button/door{ + id = "frontarmory"; + name = "Armoury Shutter Toggle"; + pixel_y = 24; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cDT" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cDU" = ( +/obj/structure/sign/warning/fire, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cDW" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/starboard/fore) +"cDX" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/sofa{ + color = "#c45c57" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cDY" = ( +/obj/structure/chair/sofa/corner{ + color = "#c45c57" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/starboard/fore) +"cDZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"cEa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEe" = ( +/obj/structure/table/wood, +/obj/item/folder{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/dice{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/starboard/fore) +"cEg" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"cEh" = ( +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cEi" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"cEj" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEk" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEm" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped, +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cEn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"cEr" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cEv" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cEw" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEx" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cEA" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEB" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cED" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_x = -26; + pixel_y = 28 + }, +/obj/item/shard, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cEE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEG" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cEH" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/hemostat, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/reagent_containers/blood/random{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/restraints/handcuffs/cable/red, +/obj/item/clothing/suit/apron/surgical, +/obj/item/weldingtool/mini, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/tail/cat, +/obj/item/organ/tail/cat, +/obj/item/organ/ears/cat, +/obj/item/organ/ears/cat, +/obj/item/organ/heart, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEX" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/rust, +/area/maintenance/fore) +"cEY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/arcade, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/fitness/recreation) +"cFf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cFg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cFh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"cFj" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"cFk" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cFo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"cFp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cFr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cFs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"cFt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "atmosventn2o"; + name = "Emergency N2O Vent Toggle"; + pixel_x = 6; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cFv" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cFy" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"cFz" = ( +/obj/structure/sign/warning/vacuum, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cFA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/official/enlist{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFE" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Cargo Delivery Access"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cFF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cFH" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cFJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cFK" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"cFN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cFS" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/solar/port/fore) +"cFT" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"cFU" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"cFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"cFY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cFZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"cGd" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/starboard/fore) +"cGf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"cGi" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cGl" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGo" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGp" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGq" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cGs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/securearea{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGu" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/fore) +"cGy" = ( +/obj/item/target/clown, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"cGz" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"cGA" = ( +/obj/docking_port/stationary/random{ + dir = 2; + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cGB" = ( +/obj/machinery/door/airlock/external{ + name = "Medical Escape Pod" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cGC" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cGD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/grass, +/area/security/prison) +"cGL" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cGM" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cGN" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cGS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cGT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mining dock maintenance"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cGU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo maintenance"; + req_one_access_txt = "31;48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cGV" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"cGW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cGX" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"cGZ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cHa" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"cHb" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"cHc" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/fore) +"cHf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/maintenance/central/secondary) +"cHh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"cHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cHu" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cHv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"cHw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"cHx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cHA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"cHB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cHC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cHF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/box/monkeycubes{ + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cHH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cHI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cHJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cHK" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/chief) +"cHS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHT" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cHV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cHW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cHY" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cIa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cIc" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cIe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "xenobiology maintenance"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cIf" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/execution/education) +"cIi" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/plaques/kiddie/library{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cIj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "justicedoor_2"; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/machinery/button/door{ + id = "justicedoor_2"; + name = "Justice Door Lock"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"cIm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/obj/item/shovel/spade, +/obj/item/cultivator{ + pixel_x = 6 + }, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/seeds/watermelon, +/obj/item/seeds/apple, +/obj/item/seeds/wheat, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cIn" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tcom) +"cIq" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4 + }, +/obj/item/stack/cable_coil, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cIr" = ( +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/bikehorn/rubberducky, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/button/door{ + id = "Shower_1"; + name = "Shower 1 Privacy Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = -8; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "Shower_1Privacy"; + name = "Shower 1 Privacy Toggle"; + pixel_x = 24; + pixel_y = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/toilet/restrooms) +"cIt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tcom) +"cIw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cIA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cIB" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"cIG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "hos sorting disposal pipe"; + sortType = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cIH" = ( +/turf/closed/wall, +/area/storage/tcom) +"cIJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tcom) +"cIK" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/item/paper/crumpled{ + info = "This isn't funny, I'm trapped on the least fun room on the station."; + name = "poorly written complaint" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cIM" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/storage/tcom) +"cIN" = ( +/obj/structure/table/glass, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/item/cultivator{ + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cIO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/storage/tcom) +"cIP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cIQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cIS" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Yard" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "PCell 3Lock"; + name = "Long-Term Cell 3 Shutter" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cIV" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"cIX" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cIY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cIZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cJb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/pipe_dispenser, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJc" = ( +/turf/closed/wall/rust, +/area/library) +"cJe" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 3"; + req_access_txt = "2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cJi" = ( +/obj/machinery/door/airlock/mining{ + name = "Auxiliary Base"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/camera_advanced/base_construction{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJm" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"cJo" = ( +/obj/docking_port/stationary{ + area_type = /area/construction/mining/aux_base; + dheight = 4; + dir = 8; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "aux base zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cJp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cJq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cJs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cJu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/shuttle/mining{ + dir = 4; + req_access = null + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJw" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJx" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cJz" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/construction/mining/aux_base) +"cJC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cJD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cJE" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/packageWrap, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Auxiliary Base Shutters Toggle"; + pixel_x = 24; + pixel_y = 6; + req_one_access_txt = "32;47;48" + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJF" = ( +/obj/machinery/door/airlock/mining{ + name = "Auxiliary Base"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison Yard Garden"; + dir = 1; + name = "prison camera"; + network = list("ss13","prison") + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cJJ" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbay_front_door"; + name = "Medbay"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"cJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cJL" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/construction/mining/aux_base) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cJN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cJP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/construction/mining/aux_base"; + name = "Auxillary Base Construction APC"; + pixel_y = -23 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"cJR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cJW" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"cJY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cKa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cKb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cKd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"cKf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cKg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cKi" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cKj" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cKk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"cKm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/main"; + name = "Security Office APC"; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cKn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cKo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cKp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cKr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "atmospherics maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"cKu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Desk"; + req_one_access_txt = "10;24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"cKz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"cKF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"cKI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Port Tanks"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cKN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "O2 to Pure" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cKP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cKR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cKT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Air to Mix" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engine/atmos) +"cKW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cKX" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKY" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cKZ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cLa" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6; + icon_state = "intact" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cLd" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"cLe" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cLg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cLm" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cLr" = ( +/turf/closed/wall/rust, +/area/maintenance/department/electrical) +"cLs" = ( +/turf/closed/wall, +/area/maintenance/department/electrical) +"cLt" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"cLy" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/department/electrical) +"cLz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cLA" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLC" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLE" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"cLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cLH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cLM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"cLN" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/starboard/fore) +"cLO" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cLQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"cLR" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"cLU" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/fore) +"cLV" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"cLY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cMb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cMf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/utility, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMj" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cMk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cMl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"cMn" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMr" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/rust, +/area/maintenance/department/electrical) +"cMt" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMu" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cMz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cMC" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cME" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMG" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cMH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"cMI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cMK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cML" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cMP" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cMQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cMR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cMT" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cMU" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cMV" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cMW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"cNa" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cNe" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNg" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/starboard) +"cNh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cNi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cNj" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cNl" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"cNn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cNp" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/starboard/fore) +"cNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNs" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cNy" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cNz" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cNB" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/starboard/fore) +"cNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"cNF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNI" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"cNL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cNM" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cNN" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"cNO" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cNU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cNV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cNW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cNY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "Director's Privacy Blast Door" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cOb" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/maintenance/starboard) +"cOd" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cOg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"cOm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cOx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Toxins Burn Chamber"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm/mixingchamber{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"cOW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"cPa" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Yard" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "PCell 2Lock"; + name = "Long-Term Cell 2 Shutter" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cPb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"cPj" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Animal Pen"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hydroponics) +"cQP" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cRk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cRB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cSS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/item/wirecutters, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cST" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/prison) +"cSU" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/prison) +"cSV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "justicedoor"; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "justicedoor"; + name = "Justice Door Lock"; + normaldoorcontrol = 1; + pixel_x = -24; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"cSW" = ( +/turf/closed/wall/r_wall, +/area/security/execution/education) +"cSZ" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/security/prison) +"cTp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cTr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cTF" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cTG" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast door" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"cTI" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cUD" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cZm" = ( +/turf/closed/wall/rust, +/area/security/prison) +"dis" = ( +/turf/closed/wall/r_wall/rust, +/area/bridge) +"dww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engine/engineering) +"dxq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/mecha{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"dMc" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/obj/item/integrated_electronics/wirer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/research) +"dQe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dYu" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"elZ" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/rust, +/area/crew_quarters/bar) +"emD" = ( +/turf/closed/wall/rust, +/area/quartermaster/miningoffice) +"erN" = ( +/turf/closed/wall/rust, +/area/hallway/primary/starboard) +"esR" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"evx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"ewj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"ezp" = ( +/turf/closed/wall/rust, +/area/hydroponics) +"eBN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"eKa" = ( +/obj/structure/sign/poster/official/pda_ad, +/turf/closed/wall, +/area/medical/virology) +"eMp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"eOu" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/fore) +"eQS" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/rust, +/area/security/prison) +"eVT" = ( +/turf/closed/wall/rust, +/area/science/explab) +"fcv" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fyr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/engine/engineering) +"fAH" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plating, +/area/engine/engineering) +"fXq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"gnA" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Laser Room Starboard"; + dir = 1; + name = "laser room camera"; + network = list("ss13","engine") + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"grW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"gvR" = ( +/obj/structure/sign/warning, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"gwD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"gxY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vr_sleeper, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/locker) +"gIE" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"gJq" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall/rust, +/area/hallway/secondary/exit/departure_lounge) +"gMU" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/ai_upload) +"hgW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"hqv" = ( +/turf/closed/wall/rust, +/area/crew_quarters/kitchen) +"hvb" = ( +/turf/closed/wall/r_wall/rust, +/area/tcommsat/computer) +"hxn" = ( +/turf/open/space/basic, +/area/hallway/secondary/entry) +"hzY" = ( +/turf/closed/wall/rust, +/area/gateway) +"hAb" = ( +/turf/closed/wall/r_wall/rust, +/area/security/courtroom) +"hNk" = ( +/turf/closed/wall/r_wall/rust, +/area/security/prison) +"ice" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=SW CPH"; + dir = 8; + location = "S CPH"; + name = "Patrol navbeacon S" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ieA" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/cat_butcherer, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"iiA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"ikw" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 4"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ivg" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"iwR" = ( +/turf/closed/wall/r_wall/rust, +/area/science/server) +"iBL" = ( +/obj/machinery/camera{ + c_tag = "Laser Room Starboard"; + dir = 1; + name = "laser room camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/engine/engineering) +"iLn" = ( +/obj/machinery/vending/boozeomat/all_access, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"iMb" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/fore) +"iMq" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 5"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"iRL" = ( +/turf/closed/wall/rust, +/area/hallway/primary/aft) +"iSg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/retaliate/ghost, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"iYW" = ( +/turf/closed/wall/r_wall/rust, +/area/crew_quarters/heads/captain) +"iZo" = ( +/turf/closed/wall/r_wall/rust, +/area/medical/virology) +"jaZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"jhM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/grenadine, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"jiS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"juX" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 2"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"jxc" = ( +/turf/closed/wall/rust, +/area/hallway/primary/fore) +"jAT" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"jCp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) +"jDv" = ( +/turf/closed/wall/rust, +/area/quartermaster/storage) +"jHJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"jOz" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/ai_upload) +"jPE" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"jRw" = ( +/obj/structure/sign/poster/official/high_class_martini, +/turf/closed/wall/r_wall, +/area/medical/virology) +"jUj" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/food/drinks/bottle/applejack, +/obj/item/reagent_containers/food/drinks/bottle/champagne, +/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/food/drinks/bottle/gin, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/food/drinks/bottle/grappa, +/obj/item/reagent_containers/food/drinks/bottle/hcider, +/obj/item/reagent_containers/food/drinks/bottle/kahlua, +/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/food/drinks/bottle/sake, +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/item/reagent_containers/food/drinks/bottle/trappist, +/obj/item/reagent_containers/food/drinks/bottle/vermouth, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "A station exclusive. Consumpt may result in seizures, blindness, drunkenness, or even death."; + list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko = 10); + name = "Kilo-Kocktail"; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"jUZ" = ( +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/obj/item/instrument/eguitar, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/fore) +"khA" = ( +/turf/closed/wall/rust, +/area/construction/mining/aux_base) +"krJ" = ( +/turf/closed/wall/rust, +/area/hallway/secondary/exit/departure_lounge) +"ktv" = ( +/obj/machinery/air_sensor{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"kul" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kIJ" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"kSc" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/maintenance/port/fore) +"leX" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"llm" = ( +/obj/structure/sign/poster/ripped, +/turf/closed/wall/rust, +/area/crew_quarters/fitness/recreation) +"lKu" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/item/flashlight/lamp, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"lSJ" = ( +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"lVk" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/rust, +/area/security/warden) +"mbs" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/item/pickaxe, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mej" = ( +/turf/closed/wall/r_wall/rust, +/area/science/robotics/lab) +"mmZ" = ( +/obj/machinery/cryopod, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"mIt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=SE CPH"; + dir = 8; + location = "E CPH"; + name = "Patrol navbeacon E" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mIG" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_x = -28; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"mLN" = ( +/obj/machinery/camera{ + c_tag = "Laser Room Starboard"; + dir = 1; + name = "laser room camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plating, +/area/engine/engineering) +"mPm" = ( +/turf/closed/wall/rust, +/area/security/checkpoint/supply) +"nDw" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/rust, +/area/crew_quarters/heads/hor) +"nJw" = ( +/obj/machinery/smartfridge, +/turf/closed/wall/rust, +/area/crew_quarters/kitchen) +"nNA" = ( +/turf/closed/wall/rust, +/area/bridge) +"nNV" = ( +/turf/closed/wall/rust, +/area/science/lab) +"nSz" = ( +/turf/closed/wall/rust, +/area/medical/cryo) +"nVt" = ( +/turf/closed/wall/rust, +/area/storage/tech) +"nXu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"oPf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"oTy" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 14; + id = "arrivals_stationary"; + name = "kilo arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/kilo; + width = 7 + }, +/turf/open/space/basic, +/area/hallway/secondary/entry) +"pCe" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/engine/engineering) +"pFw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"pNP" = ( +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"pQf" = ( +/turf/closed/wall/r_wall/rust, +/area/science/xenobiology) +"qfZ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/vr_sleeper{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"qtv" = ( +/turf/closed/wall/r_wall/rust, +/area/tcommsat/server) +"qtS" = ( +/turf/closed/wall/rust, +/area/medical/genetics/cloning) +"qvS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=W CPH"; + dir = 8; + location = "SW CPH"; + name = "Patrol navbeacon SW" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"qyG" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"qIR" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 6"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"qLx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qPY" = ( +/obj/machinery/vr_sleeper{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"qWU" = ( +/turf/closed/wall/rust, +/area/chapel/main) +"rbM" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"ruL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/prison) +"rNm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/hallway/secondary/entry) +"swG" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"sDw" = ( +/obj/structure/sign/warning, +/turf/closed/wall/rust, +/area/space/nearstation) +"sPG" = ( +/turf/closed/wall/rust, +/area/crew_quarters/heads/hor) +"tgw" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/security/prison) +"tqw" = ( +/turf/closed/wall/rust, +/area/lawoffice) +"tyb" = ( +/turf/closed/wall/rust, +/area/hallway/primary/central) +"tCi" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/fore) +"tEC" = ( +/turf/closed/wall/rust, +/area/crew_quarters/bar) +"tGU" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/gateway) +"tYn" = ( +/turf/closed/wall/rust, +/area/janitor) +"uda" = ( +/turf/closed/wall/rust, +/area/security/warden) +"udQ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"umD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"unX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=E CPH"; + dir = 8; + location = "NE CPH"; + name = "Patrol navbeacon NE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"uxQ" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/engine/engineering) +"uzR" = ( +/turf/closed/wall/rust, +/area/storage/primary) +"uWo" = ( +/turf/closed/wall/rust, +/area/security/checkpoint/medical) +"vmu" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/instrument/guitar, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"whw" = ( +/turf/closed/wall/rust, +/area/medical/surgery) +"wmX" = ( +/turf/closed/wall/rust, +/area/quartermaster/qm) +"wvq" = ( +/turf/closed/wall/rust, +/area/security/courtroom) +"wCy" = ( +/turf/closed/wall/rust, +/area/hallway/primary/port) +"wDP" = ( +/turf/closed/wall/rust, +/area/crew_quarters/fitness/recreation) +"wQL" = ( +/turf/closed/wall/rust, +/area/security/execution/education) +"xei" = ( +/turf/closed/wall/r_wall/rust, +/area/teleporter) +"xqv" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"xqL" = ( +/turf/closed/wall/rust, +/area/quartermaster/office) +"xse" = ( +/obj/machinery/cryopod, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"xBI" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/rust, +/area/chapel/office) +"xJY" = ( +/obj/structure/rack, +/obj/item/storage/backpack, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/extinguisher, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xON" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"xTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"xTT" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/fore) +"ydo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/prison) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +bVu +aeu +aaa +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aaa +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bhA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeU +aeu +aeu +aeU +aeU +aeU +aeu +aaa +aaa +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cAY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aeU +aeU +aeU +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aUz +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +acm +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +cui +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeU +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +alm +aaQ +aeo +aeo +aeo +acm +acK +aaa +aaa +aaa +aaa +aaa +acK +acm +aeo +aeo +acm +alm +aeu +aeu +aeu +aeu +aap +aUz +aeU +aeu +aeu +acm +aeo +aeo +acm +aaa +acm +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeU +aaa +aaa +aeU +aeu +aeu +aeu +aeu +bou +cko +aeu +aeu +aeu +aeu +aaa +aaa +acm +aaa +aaa +acK +aaa +aaa +aaa +aaa +aaa +acK +aaa +aaa +acm +aaa +aaa +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aaa +aaa +acm +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aaQ +aeo +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aeU +aeu +aeu +aeu +aeu +cpY +aeu +aeu +aeu +aeu +alm +aaQ +aeo +aeo +acm +acK +aaa +aaa +aaa +aaa +aaa +acK +acm +aaQ +aeo +aeo +acm +alm +aeu +aeu +aeu +aeu +aap +aeu +aeu +acm +acm +aeo +aeo +aeo +aeo +acm +aeo +acm +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +aaa +aeu +alm +acm +aaQ +aeo +aeo +acm +acm +aeo +aeo +aeo +acm +aeo +acm +alm +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaQ +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaQ +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aeo +aaa +acm +aaa +acm +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +acm +aeo +aeo +aeo +aeo +aaQ +alm +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +alm +aeo +aeo +aeu +aeu +aeu +adk +adk +amz +amz +adk +aeu +aeu +aeu +aaa +acm +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +bUG +bhA +bhA +acm +acm +aeo +aeo +alm +aeu +aeu +aeu +aeu +aeu +aUz +aeU +coy +acm +acm +aaa +coa +aaa +aeo +aeo +aeo +aeo +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +acm +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +aeu +aeu +aaQ +aaa +aaa +aaa +alm +aeu +adk +amU +ckR +bAc +adk +aeu +aeu +aeu +aeu +alm +aeU +aaa +acm +aaa +aaa +bpm +aaa +aaa +acm +acK +bmU +ruL +ruL +ruL +hNk +aeu +aeu +aap +aeu +aeu +aeU +aeU +aeU +aeU +aeU +acm +acm +ckO +aaa +acm +aaa +acm +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aaQ +aeo +aeo +aeo +acm +aaQ +ctL +acm +acm +coy +aUz +aeU +aeU +aeu +aeu +aeu +aeu +alm +acm +aaQ +aeo +aeo +acm +acm +acm +aeU +aeU +alm +aeu +aeu +aeu +aeu +acm +aaa +aaa +aaa +acm +aeu +amz +box +bpJ +bre +amz +aeu +aeu +aeu +aeu +aeu +aeu +acK +acm +acm +cqG +cqN +cqG +cov +cpx +bLM +hNk +mmZ +ewj +qfZ +hNk +aeu +aeu +aeU +aap +aeu +coy +aeU +cnt +cnt +cnt +cnt +cnt +ckP +cnt +cnt +cnt +cnt +cnt +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +acm +aaa +acm +aaa +can +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aaa +aaa +aaa +acm +aaa +aaa +aeU +aeU +aeu +aeu +aeu +bKl +aeu +aeu +bUG +acK +acm +acK +bUG +aeu +adk +adk +bzE +bCb +amz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cqt +cqz +cqH +bGR +cIA +coD +cqt +aeu +hNk +xse +nXu +qPY +hNk +aeu +aeu +aUz +aeu +aeu +aeU +aeU +ckL +ckM +ckM +ckM +ckM +ckX +cnM +cnM +cnM +cnM +cog +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +acm +ctm +ctm +ctm +cmM +ctm +cao +ctm +ctm +ctm +ctm +ctm +aeU +aeU +aeu +aeu +aeu +aeU +aeU +aaa +aaa +acm +aaa +aaa +aeU +aeu +aeu +aeu +bQN +bRy +aeu +aeu +cko +cko +ccg +cko +cko +aeu +amA +boF +bpK +brf +amA +amA +amA +ajd +aeu +aeu +aeu +aeu +ajd +bRu +cqI +cqP +afm +bVx +hNk +hNk +hNk +cxV +ydo +eBN +tgw +hNk +aeu +aeu +aeu +aeu +aeU +aeU +cnw +cnw +cnw +cnw +cnw +ckY +cnw +cnw +cnw +cnw +cnw +acm +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aeo +aaa +aFT +aJb +aJb +aJb +aJb +cap +ckq +ckq +ckq +ckq +ckK +aeU +aeU +aof +aeu +agt +aeU +aeU +aeU +aaa +acm +aaa +aUz +aeU +aeu +aeu +bKl +aDQ +aeu +aeu +aeu +cko +aaa +aaa +aaa +cko +aeu +amR +anD +bzK +ctg +btc +ctF +bxy +ajd +ajd +ajd +aer +ajd +aer +bEz +bGl +bGV +bIi +cpv +hNk +awn +bTz +czR +cFN +cIm +cJC +aav +hNk +aeu +aeu +aeU +aeU +aeU +ccG +ckk +aaa +aaa +ckk +ckY +ckk +aaa +aaa +ckk +ccG +aaa +aaa +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +acm +ctw +ctw +ctw +ctw +ctw +cjl +ctw +ctw +ctw +ctw +ctw +aeU +aeU +aeU +aeU +aai +aeU +aUz +aeU +aeU +acm +aaa +aeU +aeu +aeu +aeu +aeu +bRy +aeu +aeu +aeu +aUG +aaa +aaa +aaa +aUG +aeu +amA +boL +bpP +bru +bte +cni +bxz +ajd +bAd +aer +bzO +bDi +adh +bEU +cuT +cod +crp +cvn +aav +bmQ +bTQ +bLH +bNi +bPa +caX +cJG +hNk +aeu +aeU +aUz +aeU +cnt +cnt +cnt +cnt +cnt +cnQ +ckY +cnQ +cnt +cnt +cnt +cnt +cnt +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +acm +acm +aaa +akE +ckk +aaa +aaa +ckk +cjl +ckk +aaa +aaa +ckk +akE +aeU +aeU +aeU +aeU +aai +aeU +aeu +aeu +aeU +aeU +aaa +aaa +aeu +aeu +aeu +bQc +aDQ +aeu +aeu +aeu +cqs +aaa +aaa +aaa +bFQ +aeu +amR +amA +bzV +bEX +amA +cnr +bxA +cte +bAg +cpZ +cvq +bDj +ajd +ajd +bGm +bHa +bIl +bVB +aav +bJz +bVT +bPh +cGD +cSZ +cdi +cIN +aau +aeU +aeU +aeU +aeU +ckL +ckM +ckM +ckM +ckM +ckN +cDn +cnR +cnM +cnM +cKi +cnM +cog +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +aeo +aaa +aeU +ctm +ctm +ctm +ctm +ctm +cFS +cjl +ctE +ctm +ctm +ctm +ctm +ctm +aeU +aeU +aeU +aai +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aDQ +aDQ +aeu +aeu +aeu +aeu +amA +agy +crx +agy +amR +aeu +amA +boM +bpR +brx +amA +csT +csV +aer +bAh +cqa +cqj +cxk +cqu +aer +ajd +cof +ajd +ajd +hNk +btd +bVV +bMe +bNH +bTu +ciF +cIQ +hNk +aeu +aUz +aeU +aeU +cnw +cnw +cnw +cnw +cnw +cnQ +ckY +cnQ +cnw +cnw +cnw +cnw +cnw +acm +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaQ +aaa +aeo +aaa +aeU +aFT +aJb +aJb +aJb +aJb +bJD +cDj +ckB +ckq +ckq +ckq +ckq +ckK +aeU +aeU +aeU +alm +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aDQ +aDQ +aeu +aeu +aeu +amR +beT +cnL +bfb +amA +amR +amA +boN +bpS +bry +amR +cnL +cuB +ajd +akh +cqc +aer +ajd +bOt +bzO +ajd +bHc +bIo +ajd +hNk +bLN +bMQ +bPk +bRa +bSR +bTF +bVm +hNk +aeu +aeu +coy +aeU +aeU +ccG +ckk +aaa +aaa +ckk +ckY +ckk +aaa +aaa +ckk +ccG +aeU +aaa +aeo +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +aeU +aeU +ctw +ctw +ctw +ctw +ctw +ctE +cjl +ctE +ctw +ctw +ctw +ctw +ctw +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aDQ +bKl +bQq +bQb +aDQ +aeu +aeu +amA +csr +cGB +csr +amR +bkX +amA +aEw +cum +amA +amA +ctb +csU +aer +cry +bBm +bCh +cqq +bDL +bEW +cnI +bHd +bIp +aav +aav +bti +cZm +cCp +cPa +abp +cCp +cIS +aav +aeu +aeu +aeU +aeU +aeU +cnt +cnt +cnt +cnt +cnt +ckP +cnt +cnt +cnt +cnt +cnt +aeU +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +alm +aeU +aeU +aeU +akE +ckk +aaa +aaa +ckk +cjl +ckk +aaa +aaa +ckk +akE +aeU +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +bKl +aDQ +aDQ +aDQ +aDQ +aDQ +aeu +aeu +amR +beX +crP +bhS +csp +bla +cte +crg +bpY +brC +bot +ctt +cqn +ajd +cpO +bBs +bCi +cqr +bDM +czW +aer +bHh +bIr +aav +bKu +bLQ +cZm +bPl +bRb +cZm +bTH +bVp +aav +aeu +aeu +aeU +aUz +aeU +ckL +ckM +ckM +ckM +ckM +ckX +cnM +cnM +cnM +cnM +cog +aeU +aaa +acm +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeu +aeU +aeU +aeU +ctm +ctm +ctm +ctm +ctm +cao +ctm +ctm +ctm +ctm +ctm +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aDQ +aDQ +aTd +bKl +aDQ +aDQ +aeu +aeu +amA +bos +crP +cuB +bjq +cpX +amR +amA +amA +bzY +amR +cpX +cqo +ajd +aer +ajd +ajd +aer +bPr +ajd +ajd +ajd +ajd +hNk +bKv +bLX +eQS +bPm +bRe +eQS +bTI +bVr +aav +aeu +aeu +aeu +aeU +aeU +cnw +cnw +cnw +cnw +cnw +ckY +cnw +cnw +cnw +cnw +cnw +aeU +aUz +acm +acm +aeo +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +aeu +aeu +aof +aUz +aeU +aFT +aJb +aJb +aJb +aJb +cap +ckq +ckq +ckq +ckq +ckK +aeU +aeU +kSc +cwp +cwp +cwp +cwp +cwp +aeu +aeu +aeu +aeu +aeu +aDQ +bQb +aDQ +aDQ +amA +amR +amA +amA +amA +cqT +cGL +amA +amA +cpX +amA +bpZ +brK +amA +amA +cqo +bAq +bAk +aer +bCj +bDk +bDQ +bEY +ajd +aeu +aeu +aav +hNk +bJB +abp +abp +cQP +abp +abp +cJe +aav +abp +abp +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +ckY +aeU +aeU +aeU +aeU +aeU +aeU +aeU +acm +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeU +ctw +ctw +ctw +ctw +ctw +cjl +ctw +ctw +ctw +ctw +ctw +aeU +cwq +cxt +iLn +pNP +qyG +jUj +cwp +aeu +aeu +aeu +aeu +aeu +aeu +aDQ +aDQ +aVO +amA +baf +cuR +bdZ +amA +bgA +cux +bjr +bpc +crQ +amA +bwg +ctj +ctl +amA +cqC +cra +bAr +adh +bCm +coK +bRB +cjd +coA +bHi +aeu +aeu +aav +bMb +bMS +bPu +bRl +bSS +bTK +bVs +hNk +bXG +cZm +bZG +aeU +aeU +aeU +aeU +aeU +aeU +aeU +ckY +aeU +aeU +coy +aeU +aeU +aeU +aeU +aeU +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +cjl +aeU +aeU +aeU +aeU +aeU +cwq +cwq +esR +kIJ +cxc +tCi +grW +cwq +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aDQ +aWa +cif +bar +crA +beb +cst +cth +cuh +crV +cuu +cuw +amA +awD +awD +awD +awD +awD +awD +awD +awD +bCt +cou +bzO +clC +coA +bHj +adf +aeu +hNk +bJF +bJN +cuS +cRk +bST +bTM +bVw +cTF +bXH +cUD +bZP +aeU +coy +aeU +aeU +aeU +aeU +aeU +ckP +aeU +aeU +aeU +aeU +aeu +aeu +aeU +aeU +aeU +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +coy +aeU +aeU +cjl +aeU +aeU +aeU +aeU +aeu +cwq +udQ +xTT +swG +xqv +jUZ +jhM +cwq +amA +amA +amR +amA +amA +aeu +aeu +aeu +aWd +amR +amA +amA +cnL +cpX +amA +bhU +aEw +bxq +cux +cnL +awD +agp +bHg +bHg +cEZ +bHg +bMq +awD +bCu +bJW +bJX +cnn +coA +bHo +aeE +agK +hNk +bLj +bYc +cDG +aaG +aez +cIj +aeB +wQL +aez +aez +cko +cko +cko +aeU +aeU +aeU +aeU +aeU +chU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +ckn +aeu +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +bVv +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +coy +aeU +cao +aeU +aeU +aeu +aeu +aeu +cwq +kul +eOu +cxe +xTw +aAJ +xTw +cwp +cAB +cvj +cwW +cyF +amR +aeu +aeu +aeu +aeu +aeu +aeu +amA +crN +bfb +cyv +cnL +bjw +bld +bmL +crP +cnJ +brL +bth +bvm +bvm +bvm +bAx +atk +bCy +bDl +bDT +bFe +aer +aeu +aeF +bJm +aau +bMz +bYl +cDI +cRB +aez +bTT +bVy +bWB +cTG +cTI +acm +acK +cko +aeU +aUz +aeU +aeU +cnS +clx +cnS +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aqp +aeU +aeu +aeu +aeu +aeu +cwq +cwp +iMb +cxc +cxc +cwG +cdx +cwq +cgm +amZ +cvs +cvz +amA +amR +amA +amA +amR +amA +amA +amA +aPS +aEw +amA +cnL +amA +cGM +awD +awD +awD +aQU +btm +aQU +aQU +btm +aQU +awD +awD +awD +bYR +aer +ajd +aeu +aeu +bJm +aau +bNj +bYr +cDJ +cSS +aez +bTW +cIf +bWC +cTG +cnU +aaQ +acK +cko +aeU +aeU +aeu +aeu +cnS +chY +cnS +aeu +aeu +aeu +aeu +aeu +aeu +ckn +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +ctH +ctS +ctH +aeu +aeu +aeu +aeu +aeu +cwq +hgW +lKu +leX +aFG +aHR +cwp +aKM +aMv +aOr +cvA +amA +aRK +aHt +aUq +aWf +crv +cAg +crS +cnL +csj +amA +cfL +amR +crj +awD +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +awD +caB +bFf +ajd +aeu +add +afI +aav +abp +bYT +cDK +abp +aez +ahb +bVz +bXh +aez +aez +cJx +ajd +bNe +bNe +bNe +ajd +cnN +cnN +clH +cnN +cnN +aeu +aeu +aeu +aeu +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aUz +aap +aeu +aeu +aeu +aeu +aeu +aeU +ctH +aqr +ctH +aeu +aeu +aeu +aeu +aeu +cwp +cwp +cwq +cwq +cwy +cwJ +cwp +cve +cvl +amA +cvB +amA +aRL +bxp +aUr +aWi +cpI +amA +bcB +bec +csk +cso +aaO +csr +csU +aQU +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +aQU +caB +bSv +coA +bHi +aDQ +amb +asO +bRD +coH +bPA +abp +afd +bTX +bVC +bWo +bXM +cSW +ajd +ajd +cbF +bMX +cdO +bNk +cnN +cgL +cia +cjk +cnN +aeu +aeU +aeU +aeU +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +bVv +aeU +aeU +cui +aeU +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +ctA +ctB +ctV +ctB +ctB +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +aFX +aHW +amR +aKO +aMx +aOs +aPL +amA +aRR +amR +amA +cre +cqb +amR +bcC +bed +csk +cso +abJ +csr +csV +aQU +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +aQU +caB +azs +coA +bHp +afh +bJu +aau +bRI +coI +bPD +cSV +bSU +bTY +bVD +bWD +bXI +cSW +bZS +ccL +cbO +ccI +cdP +bNl +cnN +cgM +clK +cjn +cnP +aeU +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aap +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +ctB +aps +aqs +arQ +ctA +aeu +aeu +cwp +cwq +cwp +cwq +cwp +cwp +aFZ +aKb +amA +aKR +cop +cwB +aPM +cuZ +cnh +cnr +aUs +aWn +aYz +crE +bcE +bee +csk +cso +bKl +csr +crj +aQU +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +aQU +caV +bSB +coA +bHq +afI +aeu +aav +bRK +cig +bPE +cST +afg +bUb +bVM +bWE +bXK +cSW +bZT +ajd +ajd +col +cdQ +ajd +cnN +cgO +cib +cjp +cnP +aUz +acm +acm +acm +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aap +aeU +aeU +aeu +aeu +aeu +aeu +aeu +ctA +apu +avZ +arS +ctB +aeu +aeu +cwp +aOg +aZA +aBk +azi +cwf +aGd +aqJ +adL +aKS +cvv +cwV +aPN +amA +aRT +cqU +cuX +cqV +aYA +amA +crW +csg +csl +amR +cfL +amA +csV +awD +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +awD +caB +bFi +ajd +aeu +afO +aeu +aav +bMh +bMT +bPM +cSU +afK +ahd +bNI +cSW +cSW +cSW +bMR +bWK +ajd +bNB +ajT +ajd +cnP +cnX +clO +cnP +cnP +aeU +coy +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aUz +aeu +aeu +cwp +cwq +cwp +ctC +apz +aqF +arT +ctD +cwp +cwp +cwp +aPJ +bbR +aBl +aCH +cwh +aGg +cwy +amR +aKV +cvp +cvx +cvF +amR +crr +bxq +crq +aVz +cnr +amR +amR +amA +amR +amA +bhZ +amA +cGN +awD +awD +aQU +aQU +btn +aQU +aQU +btn +aQU +aQU +awD +awD +ccc +ajd +ajd +aeu +agJ +amv +aav +aav +adl +aec +aav +cSW +cSW +cSW +cSW +bTL +bBG +czZ +bBG +cbQ +ccJ +cdR +bNp +cgl +cgP +cic +ajd +aeu +aeu +aeU +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aaa +aaa +aeU +aeU +aeU +aeu +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +cvY +cxd +ctD +ctC +cua +cun +ctC +apU +asR +cwq +aQz +beo +aBn +cvZ +aSf +aGi +aHX +amA +amA +amR +amA +amA +amA +cnh +aRP +aTk +crr +crN +crP +cnL +csh +crN +crH +bia +csx +ble +cnL +awD +bLd +brS +btq +bvw +bxC +btq +bAz +bLU +awD +bDn +caB +bFk +aer +aeu +aeu +amb +add +aav +auW +beV +aav +bBG +cTp +bVN +bSO +bUd +cyc +cyD +caZ +cbS +ccK +bBG +bNm +cgn +clq +bzO +ajd +ajd +ajd +anZ +cmt +cko +cko +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwq +cwY +cxe +cyd +cxt +aqI +arU +cyu +cxS +aKb +cwq +cwy +cwp +cti +cwq +cxy +cwt +aHZ +aNB +aKX +aMz +aOt +aPO +cuJ +cqf +cuJ +aUv +aWo +aYD +crg +bcF +bxp +bfc +bgH +bib +bxp +csU +llm +awD +aVb +aYX +bxo +bxU +bzQ +bzR +bER +bFN +awD +ajd +cdG +cus +ajd +ajd +aer +cCe +ajd +ajd +bMU +bPP +bSO +bSW +bUd +bVO +agS +agS +agS +aey +agS +byu +agS +agS +agS +agS +clr +cid +akj +ckC +agy +aaa +aaa +aaa +cko +acK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +cvX +bGQ +cwF +cwQ +aqJ +cxK +cwp +cye +aNk +anP +aut +auO +aBo +aCI +aET +aHY +aIc +aPc +aPc +aPc +aSo +aPc +aPc +aPc +aOZ +aOZ +bMV +aOZ +aOZ +crj +amR +amA +amA +amR +amA +cFW +wDP +bKD +bLg +bLm +btr +bvx +bvx +byL +bLR +bBu +bMd +bDo +cej +bJw +bSV +bKK +bzO +cpT +bKx +bSO +cyc +bPQ +ajd +aWI +bsD +aWI +agS +ahe +bYJ +ahY +cbb +cbT +ccM +cDr +ajR +agS +cgQ +bBG +crD +ckD +agG +aaa +aaa +aaa +cGA +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +cwp +cwq +cwp +cwg +cwp +cwp +aqK +ahE +cwp +cxt +cxy +aot +awe +cyl +aPA +aPA +aPA +aPA +aPA +aPc +aON +aMC +aOu +aPP +aQn +aRU +aPC +aUw +aWq +aYE +aOZ +crk +crg +bot +crF +cnr +crQ +cuB +awD +bKH +bLb +bLm +btu +bLW +bLC +byO +bGB +bBw +bHG +bDs +bDU +bFm +ajT +bKM +bMf +bOn +bFm +agX +aUQ +bZi +agX +bSX +bUe +bVP +agS +aMK +bYK +ahZ +aiL +aiL +aiL +cDB +ajS +bOO +bBG +cie +akj +bBG +agy +aaa +aaa +aaa +cko +acK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +cui +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +cwp +aol +ade +cwo +cxr +apC +cxD +aha +aiE +auO +axy +ayF +awQ +aPA +aPA +aBs +aEb +aPB +aId +aOZ +aKY +aOO +aQv +aUU +aRD +aRV +bwI +aUE +aSQ +aPW +aOZ +crP +cpX +amR +crM +bot +aYD +bln +cnJ +bLa +bLh +bLO +btv +bLV +bMa +byR +bGI +bBx +awD +afm +adW +akh +agX +agX +agX +agX +agX +agX +adV +bZo +agX +agX +agX +agX +agS +aog +bYL +aia +cBu +aiG +cyK +cDB +cfb +agS +ajd +ajx +ajx +ajx +ajx +anZ +cmt +cko +cko +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +avl +cxa +cxc +cxf +apE +aar +ahl +aNG +aNG +ajY +aNG +aNG +aPA +aLc +aaN +aEc +aGm +aIi +aND +aLa +aOQ +aSU +aVy +aYb +aRW +aPC +aUF +aTa +aOZ +aOZ +csc +aQN +aQN +amA +amA +cnJ +cni +awD +bKN +bLg +bLm +bty +bvz +bxE +byS +bGI +bMg +wDP +bDt +bDV +bFn +aah +bHr +aeI +aaT +bWp +bMk +bMY +bPR +bRn +agc +anL +bVQ +agP +ahf +bYN +aix +ajc +aiH +amS +cDB +ajV +avM +cgS +ccv +cjq +amd +aif +aUz +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwq +aUb +cxb +cxn +cxf +apE +cxN +aht +aNG +auR +axA +ayH +azF +afD +aWj +adK +aOX +aPp +aIk +ahc +aLb +aQq +aQT +aRg +aYo +aQH +aPC +aPI +aSA +aOZ +bas +bcG +bef +aQN +csG +bid +bjx +csQ +wDP +bKn +bLc +bMi +bLP +bHx +bLT +bEK +bGT +bMx +wDP +afz +adZ +ajd +aef +bHs +aaA +agq +bWs +abO +adn +aej +aeY +afn +aeY +aeY +ahg +bXO +bYO +aic +aiY +aiI +amS +cDD +cHw +cgo +cgT +bIv +cjr +amd +aif +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +cvX +cwT +cxo +cwp +apF +aqP +asb +aNG +aOa +akd +aOC +aOm +abl +abm +agj +aPb +aPq +aPV +aOZ +aPF +aPR +aOv +aSO +aUt +aQI +aQI +aQI +aQI +aQI +bat +bcK +beg +aQN +aqu +bif +bjz +csR +wDP +wDP +bLo +bLp +btz +bvC +bxN +byU +bAA +bMj +awD +csN +bDW +bFo +uda +aef +lVk +aef +aef +bXm +ado +afC +afE +ahn +ahu +afE +aFl +bXP +cwx +aib +ajc +aiJ +amS +cKm +agS +cmP +aUe +cmP +cmP +cmP +cmP +acm +acm +acm +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +cwp +cwq +cwp +cwp +cwq +cwq +cwp +cwp +cwq +cwy +ahR +aNG +aOb +akg +aOE +aOq +abl +abo +agk +agI +agL +abl +ahc +aPx +aPx +aOZ +aPU +aQG +aQJ +aCs +aLd +baT +aQI +bau +bcN +aUu +aQN +amA +csr +csM +amA +amA +awD +awD +awD +awD +bIH +bLJ +bEP +awD +awD +awD +csS +cBI +bFp +aah +bHt +aeI +aaT +bWu +abY +adp +ael +aaT +aef +aef +aef +agS +bXQ +cwK +aib +aiy +aiK +ajf +cKn +agS +cgp +cgX +cij +alJ +ame +cmP +cmP +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +cwp +cwq +cyL +aiV +cyY +adv +alw +czo +cwq +cwp +aqT +asc +aNG +avf +axC +ayI +azG +afD +aQA +agl +aRd +aOR +abl +aSW +aLi +aLi +aOW +aWp +aNr +aQI +aKy +aTs +aVL +aQI +bay +bcO +bei +aVB +aSG +add +acR +aeF +aaO +aDQ +bvW +bJt +ais +bvD +bxO +byW +alZ +bKT +cBX +cBv +cBy +bFp +aah +bHu +aff +ags +bWs +abO +bMZ +aef +bRo +aet +agd +bVR +anw +ahj +cwK +aib +aiz +ajo +cHY +cKo +agU +cgr +akR +alp +alp +amC +bkU +cmP +aeU +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +cwp +abu +cyM +aiW +cyZ +czl +alA +czp +bgN +cwp +aeb +ail +aDB +aWm +aNx +bxb +aNx +aPA +abl +agH +abl +afD +afD +aSa +aLj +aMD +aOw +aQa +aQK +aQJ +aQQ +aTI +aVV +aQI +baA +bcP +bej +bjs +aSG +aaO +acR +aDQ +bKl +add +brD +brD +brD +bvG +bKF +byX +brD +bLn +brD +cBw +csN +cBR +uda +aef +bJC +aef +aef +bXp +bNa +aCv +bRw +cnB +cnB +bVS +aFu +ahk +cwL +cza +cHA +cbV +ccN +cdT +agS +cgs +akS +ckx +alK +amf +amD +anA +aeU +aeU +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +cwq +cwp +ahJ +air +ajg +bES +czq +alC +amt +bgS +cwq +aqU +aDB +aDB +aOl +aPe +ayJ +azJ +aNx +aNR +aOj +aOp +aPE +aNQ +aJu +aQF +aRt +aSz +aIf +aRS +aQJ +aTc +aUL +aWr +uWo +whw +bxr +aQN +aQN +aTx +aUJ +csO +afe +acZ +adf +bBO +cIr +aiB +bvN +bKX +byY +aon +bKU +cBY +cBx +cBv +bFp +aah +bHw +aeI +aaT +bWv +abY +adp +aaT +bRC +akT +anM +bVU +agP +bXR +bYP +bZU +agS +agS +cIa +btJ +agS +cmP +alo +anl +alL +awm +amE +anA +aeU +aUz +aeU +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +cwq +cyE +ahL +cyO +ajh +ajs +akI +alH +czr +ans +czK +aqW +aDB +atm +avg +axG +ayM +aNS +aNG +aOe +aCK +aEl +aGn +aen +aHG +aHG +aHG +aHG +aIh +aQM +aQI +aQJ +aQf +aQJ +uWo +baB +bcS +bek +aVs +aTx +bqA +bjA +afe +aUJ +aUJ +afe +brD +bLn +bvO +bKF +bza +brD +brD +brD +cBy +cBI +bFp +aah +bHu +aaC +aaW +bWs +abO +bNb +aef +aef +aef +aef +aef +agS +agP +bCv +agP +agS +cbW +ccO +cdU +cfj +akx +akS +cmm +alM +amf +amF +anA +aeU +aeU +aeu +cke +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +cwp +crB +ahM +cyP +cyV +cyV +cyV +cyV +czs +ant +cwy +aqY +aDB +aNJ +aqo +aMd +aqA +azK +aNG +aOd +aCL +aPh +aGp +aNW +aJv +aQk +aSE +aQy +aWt +aQR +beB +aTg +aUN +aTg +aky +baI +aUK +aUR +aUA +aTx +avP +bjB +aoV +bmY +aVE +afe +bLk +bEO +bKG +bzs +bzf +aoG +bKV +cBZ +csN +cBw +cBT +aef +aef +lVk +uda +aef +ani +anm +aef +bRG +aEz +cBn +ahr +agV +bXS +bYQ +bXU +aKZ +cbZ +cIG +cKp +cfl +cKC +cha +cKG +alt +amo +amG +agO +aeU +aeU +aeU +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +cwq +cyC +ahN +aiu +aji +ajy +akJ +ajy +amu +anu +czL +aqZ +aDB +ato +avi +axK +ayN +azL +acG +aBp +aCM +aPi +aGr +aeP +aJw +aQl +aQB +aQB +aWA +aQS +beF +aTj +bdj +aWu +akF +baN +bfD +bic +aUB +aTx +aoV +bxK +aoV +bnd +aVh +afe +brY +btD +bvP +bxQ +bzg +bLu +bLu +bIV +bIV +csS +bFp +aah +bHz +aaS +aaT +bKy +abY +bNd +aDd +bRJ +cnZ +cpw +crL +crY +akm +ahP +bYm +ama +cca +cIP +bzw +cfm +akz +chb +cik +cjz +ckF +amH +cmP +aeu +aeU +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +cwp +cwq +cvy +aUW +czD +czg +czc +czc +czC +any +cwp +arb +aDB +aDB +aOx +aPu +ayP +azO +aNx +aBq +aCP +aEo +aGt +nSz +aJB +aQo +aTO +aOz +aQc +aQX +aQb +aTo +aUO +aWE +akP +baO +bcT +bel +bfg +aTx +arZ +aUX +aoV +bxV +aoV +afe +bLu +bFb +akv +bzZ +bKL +bLu +bJQ +bKc +bKk +cBv +bFp +aah +bHA +aaA +abc +bWs +abO +aeQ +aei +bRM +coF +cqg +ajw +agV +bXT +bYS +bYm +ama +aiQ +cIP +alG +aka +aka +aka +aka +cDS +aka +aka +aka +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +cwp +cwq +czz +cyX +acQ +cvb +czn +czu +cwp +cwq +afp +aiM +asi +asi +asi +aVj +asi +aNH +aVH +aNO +aso +qtS +qtS +aQd +aQC +aNn +aQb +aNm +aQb +aNn +aQV +bdq +aRn +aQW +aQW +bAN +bip +aPf +afe +aUC +bjC +blo +bne +aVR +afe +bsa +btR +bvV +bxR +bzh +aoL +bJU +bUa +bKk +csS +cCa +uda +uda +bJC +aef +aef +bXq +afj +afs +bWr +coN +cqh +bVW +uda +ayi +aJr +ayi +aaj +anN +cIZ +amI +aka +akV +azo +alv +alP +aEX +aCF +anG +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aeU +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +cwp +cwp +cwq +cwq +cwp +cwp +cxt +cwp +cyI +afv +ase +cAf +aVY +aWe +ayR +azP +aNL +aNv +aCQ +aEs +aJU +aNO +aJC +aQo +aQb +aOA +aQe +aQZ +aSX +aTp +aUS +aWF +aWT +baR +bAN +bem +bfh +aUP +aTl +bjD +aVg +bnf +agm +atK +bIX +bFA +bJs +bAi +bzi +bIV +bIV +bIV +bLu +cBI +bFp +aah +bHC +aaS +aaT +bWG +aft +afk +aei +anv +coU +cqA +bVX +aFv +bXU +ahP +bYm +ama +aiS +cIP +cdX +aka +akC +chc +cil +cil +ckG +amJ +aka +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aeU +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +aeu +aeu +aeu +aeu +aeu +cwp +alI +amx +anz +cCN +afx +asj +aja +avk +ayd +ayT +aWv +aNL +aBt +aCW +aEt +aGC +aNL +cJJ +cJJ +aNn +cDz +aRH +aSd +aNn +aSi +aTV +aWy +bae +baZ +aQu +beq +bfi +aLh +bih +bjE +blp +bng +aUy +afe +bIY +bGp +bJn +bAy +bzn +bIV +bJS +bKd +cBW +cBv +bFp +aah +bHA +aff +aiZ +bWs +abO +afl +uda +avt +bSZ +bUk +bVY +agV +bXW +aii +bYm +ama +aiT +cIP +cea +bPI +cgt +chd +alx +aCz +ckT +bdK +aka +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aUz +aeU +aeu +aeu +aeu +cwp +cwp +bqZ +cxI +cwp +afY +asp +aNu +aVZ +aWg +ayX +aWw +aNL +aVK +aCX +aFt +aGF +aNL +aYB +aYB +aNn +acT +avH +aWl +aNn +aQW +aUV +aTw +aTF +bbe +bAN +aTD +aVD +bAN +agR +cuH +aUD +aVA +aVW +iZo +gxY +bGp +bJo +bAL +bzh +apV +bJZ +bKe +cBW +cBy +cCb +uda +aef +lVk +uda +uda +bXr +bNq +aef +aeX +aeX +chJ +aeX +aef +bXY +ahP +bZV +aaj +ccb +cJs +ceb +cDH +cgv +che +aly +alS +ckT +amM +aka +aeu +aeu +aeu +cke +cxE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aeU +aeu +aeu +abP +amB +anC +aWG +aWG +aWG +aNu +aWb +aWh +ayZ +aWz +aNL +aNL +aDa +aFx +aGH +aME +aJD +aSY +aMH +aSY +aSY +aYC +aSb +aNZ +aUY +aWH +aYI +bbf +bAN +bAN +aoQ +bAN +ajm +blX +afe +afe +afe +jRw +bIV +bGA +bJp +bAQ +bIV +bLu +bIV +bKf +bIV +csN +bFq +aah +bHD +aaS +aaT +bWI +acf +bNr +avx +bRN +bRN +bUp +bRN +aFD +bXZ +ahQ +bXU +aKZ +ccd +cIP +cee +aka +aye +chg +cim +cjA +ckV +anV +aka +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +acK +cyA +cuQ +cxY +cyA +are +asr +aNu +avu +ayh +azj +auV +aAq +ayc +aDb +aPn +aGI +aPX +aJN +aQr +aQD +cgN +aQk +aYF +aSc +aRn +aRG +aRN +aYJ +aTW +bgE +bAN +bfj +bgL +bii +bjG +bpp +bnk +boO +byZ +bsd +bGE +bJq +bBb +bzh +arf +bKb +bKg +bLu +cBw +bFq +aah +bHu +aff +abr +bWN +bMl +bNE +avJ +bRO +afE +bUr +bWa +cpR +bYa +cyh +bZX +cHB +ccf +ccQ +ceg +amN +akG +bIS +cio +cio +aFh +anF +aka +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +acK +brp +amT +anE +brp +arg +asz +aNu +aWc +aWk +azl +avs +aAr +aNu +aDf +aNI +aVT +aVU +aaE +aQs +aRf +aTA +aVx +aRe +aSl +aza +aSw +aRO +aYL +aTX +bhT +aoQ +aTh +aTi +bmC +bpa +bpO +bnn +boP +boP +boP +bJi +bJr +bBh +bzp +bIV +bJY +bKh +bIV +afz +ayy +agX +agX +agX +agX +aef +acH +aBH +aef +aef +acH +aEW +aef +aef +bYb +bYU +bZY +aaj +ama +amc +aFj +aka +aka +amN +aWK +cih +aka +aka +aka +aeu +aeu +aeu +cke +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeU +aUz +aeU +aeu +aeu +aeu +adQ +cAI +cAU +aWG +btg +aTb +aNu +aNu +aNu +azn +azQ +aAs +aNu +aNL +aNL +aNL +aNL +aSx +aQt +aQr +aVu +aRC +aRZ +aSR +aWx +aVv +aYu +bdr +aUx +biK +bAN +aTi +bgO +bij +rbM +eKa +bnp +bvc +bvc +bvc +jiS +bKC +bAy +bzu +bIV +bLu +bIV +bIV +bEa +bFr +bBI +bHH +bVq +agX +ash +bMn +bNG +bPT +aef +bTa +bUy +bWb +aef +aGE +ahU +czS +aaj +alz +ccS +ceh +cnm +cgy +cBo +ccS +cjD +bFK +aaf +aeu +aeu +aUz +aeU +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +alm +aeu +aWG +aWG +aWG +bsm +aWG +aWG +cAN +anI +aWG +ari +asC +atz +btp +aWG +btA +aVn +btA +btA +aVr +bxh +btA +btA +aSy +aLm +aQt +aOB +aQg +aSN +aNn +aQW +aWx +aQW +aSg +aAc +aSg +bAN +aPf +aPf +bAN +bAN +bAN +bnr +boR +aMF +bIZ +btS +bwa +bxS +arj +bzy +bKj +cxw +bIV +ajd +aer +afm +bNo +bVt +agX +alR +acO +bLz +aeH +aef +anj +ano +agY +aef +bpX +byA +bzF +afc +apH +ccV +cek +cfn +cgA +chl +cit +cKf +amw +aae +aeU +aeU +aeU +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +bsm +acE +cgY +cAi +akU +aWG +cAP +cCU +aWG +arm +btf +btk +avD +aWG +azp +azR +aAt +atw +bxB +bwY +byc +btA +aEB +aEB +aIQ +cFJ +aEB +cFK +boC +acC +biG +boC +aYP +bbg +bcU +bmB +bpt +bjK +bpM +umD +bAN +pFw +bJk +bJk +bIV +ccW +bJk +cec +bIV +cbr +cxv +cxv +bIV +afB +cou +bEI +bTB +cyy +agX +abH +aAN +bLB +afH +aef +afR +agr +aju +aef +bYj +bYV +caa +aiD +asv +ccZ +cDF +cHx +cHx +cJq +cHx +cKg +bFL +aaf +akK +anh +bwu +acm +bUG +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aWG +aNs +bAD +cAj +akY +cAD +amW +alW +cBe +aro +btj +aje +avE +akH +azq +awl +asM +bwZ +bxP +bwZ +aGJ +byd +aJQ +aLn +aMN +aOD +aiU +aYx +aSe +aYx +bev +bil +bjY +blP +bnt +bjY +bpI +bjL +bxG +bxG +blv +bnu +boU +bfS +bss +btV +bZH +bxW +bzx +bKq +bKq +bKq +bIV +bEb +bSG +bBG +col +bzO +agX +abI +adi +bLz +aeJ +aef +afS +ain +apr +agX +aHp +ahX +czV +aaf +awk +cda +ajQ +auD +akQ +cLz +alE +cnq +amO +amO +bgc +bFH +anh +anh +bVn +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +bsm +aWG +czG +cAk +akZ +cAp +cAN +anJ +aWG +arp +bts +atJ +avG +aWG +azr +awA +axi +ayf +aCp +ayf +aGL +aMX +aJR +aOP +aAO +anY +aHq +aYM +aST +aYM +bie +aYM +aYM +aYM +aYM +aYM +bqN +bjN +bmJ +bmJ +bqp +bri +bmJ +bfX +bst +bvQ +bwF +bBS +bKa +cll +bZH +chi +boC +anR +ajd +bTc +cwM +cyB +agX +bKz +bMo +bNJ +agX +agX +agX +agX +agX +agX +bBr +bYZ +cab +aaf +aaf +aaf +aaf +aaf +aaf +bIn +aaf +aaf +amO +bGD +bIa +bTJ +bGL +cpG +cxs +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +bsm +bsm +aWG +aWG +aWG +cAN +acL +aWG +bsZ +aWG +aWG +avY +bsm +beG +bwC +bxe +bwY +bxY +bwY +aGM +bxJ +ahF +aOS +aBN +aOF +bdU +byf +aTN +aTr +aUZ +aWN +byf +bmX +bcV +bes +bfk +bgT +byf +bBg +blw +bnw +boX +bgh +bsu +btW +bxd +bBW +aYM +aYM +aYM +cbx +bDu +bEc +ajd +ajd +cwO +cyW +agX +agX +acc +agX +agX +bmz +bBq +arq +bEo +bEF +bGX +bBf +aKC +all +alX +aHO +aJa +cfo +awS +chn +aKt +anh +aFy +amQ +bIk +bUq +anh +anh +anh +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +adH +aea +cAs +adH +abN +czP +cDE +aWG +bta +btC +atL +avK +xBI +aob +azS +aAu +bwZ +bwN +bwZ +bxF +bxJ +ahF +aOS +aJi +aOG +btE +btK +btF +btE +aPK +aLU +btE +cJc +buC +aRF +aSP +buC +buE +buC +buE +bvy +buE +buC +brg +boC +bwf +byg +cbs +cbs +cbt +aYM +aYM +cbG +aov +ajd +ajd +cwM +czt +ajT +bBG +bNL +ajd +bRP +bBr +cdj +bBf +bEG +bBf +bBf +bVa +cHC +cHS +cHC +aKN +cfp +baF +cho +bFw +aZR +clc +clX +cmc +cnv +akK +acm +bUG +aaa +aaa +aaa +aaa +aaa +bUG +acm +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +adH +ajj +ajz +adQ +cAF +cAd +adH +aWG +aWG +aWG +bvT +avL +bsm +btA +cBh +btA +bxa +bxg +bxu +bwP +btA +bsx +aOS +aaJ +tEC +tEC +bvi +bub +buu +bvf +aTe +buP +buC +buW +bvn +bfv +bvU +bvu +cJc +blx +bnx +boY +buC +bsy +aoh +tqw +bCn +aoh +aoA +cbv +cbs +cbC +cbH +cbM +cbP +aer +aer +czw +bWQ +czU +bNO +cqM +bRR +cBU +cCh +cCh +cCo +bGY +bHv +bVc +cbc +cch +cdb +bIh +cfq +aDG +akK +akK +akK +cld +bGS +bIP +cnx +anh +anh +anh +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeo +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +adQ +cxH +cAu +adH +adH +abX +cBc +cAF +cBg +aWG +bto +avT +aWG +azu +azV +btA +btA +bxf +bxt +bxX +btA +ahF +aOT +cfa +tEC +aTB +btT +buc +bug +bvf +bue +buv +buC +bvg +bvn +afQ +bvl +bvb +buC +blA +bAR +bJH +cJc +buK +aoh +bxk +bCq +aoR +aoA +aoA +aoA +cbD +aYM +aYM +cbM +cbw +aer +ajd +ajd +czW +cBm +aaY +aaY +bBk +bBk +aaY +aaY +bGZ +bBf +bVd +bHU +aMA +bIj +bFa +bFa +bFa +bCw +cdr +bzv +clh +bHS +bNn +cnA +bUP +cpG +cxz +bOu +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +adH +cyz +ajA +ala +adQ +cAN +adH +cBf +adH +aWG +aWG +aTf +aWG +bwq +azW +bwR +bye +bxi +aEu +bxH +bxJ +ahF +aOS +cfa +btF +aqg +btU +buy +buJ +bvq +bvM +aTe +bbh +btM +bvL +bvX +bvZ +bvd +bjH +blB +bAS +buC +cJc +bps +aoh +aok +aoI +aoB +bsq +aoy +aoA +cbE +cbI +cbN +aYM +cbR +cbJ +ajd +bKA +bBG +aaY +aaY +ald +abU +aci +bWc +aaY +bHk +bBf +bVd +bXV +ccj +cdd +aMM +bRT +cIc +bRT +ciu +aDG +clj +bHY +bPN +cnC +anh +anh +bVn +aaa +aaa +aaa +aaa +aaa +acm +aaQ +aeo +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +adQ +cAo +ajD +alb +cAG +ana +cBi +cDt +afZ +cDe +atM +anJ +btA +aij +azY +aAv +aBy +aDh +aEv +bxI +bxJ +ahF +aOU +aMQ +aOH +aPY +aYQ +buG +ann +bum +bup +aWB +buE +but +bvp +aUH +bag +bir +buC +buC +buC +buC +btw +btO +aoh +aor +aul +apm +bkp +abf +aoh +bFl +bHK +bFu +bGn +qvS +bIs +ajd +aaY +bNF +aaY +bPU +acs +bBz +acx +bWd +cpS +bYk +cpP +bVh +bHW +bNy +cdf +bFa +bFa +bFa +bFa +bFa +akK +akK +akK +akK +akK +akK +acm +bUG +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aeo +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +adH +cAq +cDh +alc +cAH +cDh +anS +anJ +adH +asD +atN +awf +btA +bwr +bwJ +bwT +bxD +aAx +byb +btA +btA +acD +aOY +aMS +aOH +aYQ +aYV +buG +aoU +bun +buq +aWC +buE +buL +bvp +aUT +baw +bsM +buC +bpy +brT +buC +btL +aYO +aoh +aoq +aoP +aoS +aoX +adc +aoh +wCy +wCy +wCy +bvJ +bwc +bBj +bOU +bKB +bMp +aBJ +bPW +act +bBC +ack +bWe +bBk +bHk +bBf +cFA +axF +axF +axF +bFa +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aaa +aaa +aaa +aaa +acm +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +adQ +cAr +cAy +cAC +adQ +bsf +cCI +cBc +adH +cDb +cDo +cBc +btA +bwK +btB +bwU +bxD +aAD +aEx +bxJ +aIl +ahF +aOS +cfa +btF +aRM +aYW +aZW +bbo +bbo +bbo +aWD +bbh +buM +bvr +aVw +aqv +bsQ +buU +bpG +bse +buC +btN +asF +asF +asF +akL +asF +asF +asF +asF +aos +bEd +wvq +bGq +bOP +bIt +bOU +abA +bMr +aaY +bPX +asJ +bji +acl +bCd +bBk +bHk +bBf +cHk +bFa +bGf +bRT +bFa +aFM +aGk +aDz +aDz +aFM +bIU +aDC +aVF +aFM +aDE +aMY +aMY +aFM +bUW +acm +aaQ +aeo +aeo +acm +acm +acm +acm +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +adQ +adH +adQ +adH +adH +anb +anU +apG +adQ +aoc +atO +awh +btA +bwt +bwL +bky +bxM +aBB +aEA +aAW +aIm +ahF +aPk +cfa +btE +aWL +buh +buZ +btP +buh +btP +beN +buC +buN +buM +buX +bvt +bsY +bvA +bpH +bsh +buC +boW +wvq +adu +bwk +byi +bzz +asl +asN +abG +bKW +bEh +avC +bGs +bOS +bPs +bOU +aaY +ach +aaY +bAJ +byz +bjk +acq +arr +abT +cFB +cbA +cFC +bFa +bFa +cBb +bFa +aFM +aDz +aDA +aML +aFM +aDC +aDD +aMO +aFM +aMY +bUQ +aMY +bFP +cCX +csK +aaa +acm +aaa +acm +aaa +aaa +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aUz +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +adH +cCz +aoa +cCU +cCS +cDx +cDO +cAP +btA +btA +azZ +btB +aBz +aCN +aEC +bxJ +aIo +ahF +aOS +cfa +btE +aXm +vmu +bva +buj +btX +buz +btE +btE +btE +bey +btE +tEC +cJc +cJc +buC +buC +buC +bpn +wvq +aow +arB +atc +avy +asm +asw +asw +awa +jaZ +auP +bQx +bOP +bPt +bRf +aaY +aaY +aaY +aaY +aaY +aaY +bws +aaY +aaY +bHk +bBf +cac +bFa +cnz +bGG +bFa +aFM +aGU +aGV +aGW +aFM +aGX +aGY +aGZ +aFM +aHa +aHb +aHc +bUK +cjm +awu +aEh +acm +aaa +acm +aaa +aaa +aaa +aeo +acm +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +agt +aai +alm +aeu +coy +aUz +aeu +alm +acm +aaQ +aeo +aeo +aeo +acm +alm +acm +aaQ +aeo +aeo +aeo +aeo +acm +alm +aeu +aeu +aeu +aeu +aeu +aeu +adQ +cCE +cDh +cEE +cCT +cCU +cAF +cAO +cDA +qWU +btA +cCy +btA +btA +btA +btA +ago +aaZ +aOS +cfa +btH +aXp +btY +bvk +bvE +bvH +aWS +buA +bbk +bcW +beA +bfw +btE +aLl +bpf +bqr +brs +bsk +btO +wvq +asY +ask +aaV +aWO +aoT +abg +abM +awb +api +auP +bIK +bOT +bOP +bRg +bKE +ayA +bNS +bMG +bRS +bBy +bUz +bWg +axF +bYn +bBf +cae +bVo +cck +cBr +bFa +aFM +aMT +bEJ +aVP +aFM +aMT +bEJ +aVP +aFM +bwx +bEJ +bwx +bUK +csf +csL +aFI +aFI +aFI +aFI +aFI +aFI +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +acm +aaa +acm +aaa +acm +aaa +acm +aaa +aaa +aeo +aaa +aaa +acm +aUz +coy +aeu +aeu +aeu +aeu +adH +cCF +cCM +cCR +bsf +ajv +adQ +cDc +cCU +cDh +cCU +cCU +aBA +aAw +aaI +aGN +cDq +aJS +aOS +cfa +btI +aXr +bua +bue +bvF +bvI +bvE +aPT +bbp +bvR +bsU +bvs +btE +aLD +bpn +asF +asF +wvq +asF +asF +asF +asu +auI +atf +auK +avW +ccR +apa +api +auP +auP +bOV +bQv +bRg +bKO +axF +bNX +bMH +bRW +aEL +bUA +bWi +aGe +bYo +bHy +cHi +bFa +aIZ +bGU +bFa +awu +brZ +acm +bGb +acm +brZ +acm +bGb +acm +bUL +acm +bUL +cBq +csi +aDk +aFI +cpy +bOq +cvd +aKs +aFI +aaa +acm +acm +acm +aaQ +aeo +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cmU +aeu +aeu +aeu +aeu +ceF +ceF +ceF +ceG +ceF +ceF +ceF +acm +aaa +acm +aaa +aeo +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +aeU +aUz +aeu +adH +adQ +adH +adH +adQ +adH +cCU +cDy +cDv +ati +auH +cdD +cdD +cdD +cdD +cdD +aGO +ago +aBO +aNq +aRY +elZ +btE +buf +aSh +aTt +aVa +aWW +btE +bbq +bvS +bvY +buF +btE +byy +boW +asF +aeM +bnZ +apw +bsA +asF +bwl +aoY +arh +abd +avX +avr +apc +apj +bFv +auP +bQx +bOP +bRh +tyb +iRL +cag +cbh +bRX +axF +bUB +bWj +axF +bYp +bEA +cHh +bFa +aEy +bEV +awu +bwv +bGo +bGC +bUM +bUS +bGo +bGC +bUM +bUS +cxT +bGC +cxT +cBH +cjs +aks +cKZ +cuf +cuE +cvf +aMB +aFH +aFN +cwz +aaa +acm +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +asZ +asZ +aAg +asZ +asZ +aAg +aAg +asZ +asZ +ceG +ceF +akN +aac +adr +adA +ceG +ceF +ceF +ceF +aaa +acm +aaa +aaa +aaQ +aaa +aaa +acm +aaa +aaa +acm +aeU +aeU +adQ +alN +chj +aoc +cCY +afZ +cDM +cGh +cDd +cBf +cdD +cdD +ahC +aYw +aZI +cdD +cdD +ago +aJT +aOS +aMU +aOI +btE +btE +btE +aOy +btE +tEC +tEC +bbr +aTe +aTe +bfy +btE +aLQ +bps +asF +aoo +aao +arL +bsB +ajH +bwm +aph +avz +asn +bKi +asQ +asV +acN +asW +awd +bHJ +bOP +bRi +bKP +axF +axF +axF +axF +axF +axF +axF +axF +bHk +cpd +cHi +bFa +aEZ +aIX +awu +bmV +ayG +aEF +aGo +bov +aEJ +aEF +bqR +cKM +cKP +cKR +bUT +crn +csm +cKY +cLa +cug +bPF +cvg +aMP +aFL +aIL +aFI +aFW +aFI +aFI +cko +cko +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aAg +asZ +asZ +asZ +aAg +asZ +asZ +asZ +asZ +aAg +ceF +axB +acn +acF +adt +adD +adO +ceA +aed +cgj +aes +aes +aeR +aeR +aes +aeR +aeR +aes +aeR +aeR +aes +aes +aes +adM +alO +amL +aod +cBl +adH +adH +cDk +cDk +adH +cdD +ceK +aAz +aBD +aDn +aED +cdS +aIq +aid +aPv +cgi +aOJ +aNo +aud +aPQ +aTu +bpq +aXa +tEC +btE +aTL +aOy +btE +btE +aLT +bpn +asF +bnA +avU +aaz +aqV +avc +bwo +apk +avn +ast +abn +bCz +bDw +bEi +bFB +asF +bHL +bQw +bRj +bKQ +aBM +caD +bCe +bsG +bBD +bCe +bVg +bCe +bHl +bBf +cHj +bFa +bFS +aIZ +awu +bEm +aLY +aSk +aSr +bpj +bdk +bdu +beU +cKN +bNu +bND +cKT +cKW +csn +aFP +cto +cuk +bPG +cvh +cvk +aFO +cwc +aFO +cwA +lSJ +aFI +aFI +aFI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +asZ +asZ +aAg +aAg +asZ +asZ +cef +asZ +asZ +aAg +asZ +ceF +acJ +aco +acI +adw +adE +chP +chO +aee +ceF +aaa +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +adH +adH +adQ +aoe +apI +adH +ciZ +bSp +bSp +cGo +cdD +ceL +aAB +cfk +aDo +aEG +aYG +aIr +aie +aPz +bwV +ahx +aox +aRa +aih +aTv +bjg +aud +aud +bgb +aud +aPQ +chh +bgV +biw +bjM +bqE +bnB +auQ +auQ +aqV +asF +asF +asF +arn +arn +hAb +arn +aur +arn +arn +asF +bPp +bQx +bOP +bJy +aCq +cbA +bBf +byv +bBE +bBf +bBf +bBf +bBf +bBf +cHk +bFa +bFa +cdh +awu +cfr +cgB +chp +ciw +cjJ +clm +clm +cmd +cnE +coV +clm +cqm +aGx +cpp +amY +aIv +cul +cuF +cuF +cvm +aFK +aFQ +aFV +aFY +ktv +aNi +aGb +aGc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +asZ +asZ +ajE +cez +ceY +abj +abv +abB +abK +abQ +asZ +adg +azv +cfu +azv +adg +acu +chD +chD +chD +chI +aaa +acm +acm +acm +acm +aaQ +aeo +alm +aaQ +aeo +aeo +acm +aeo +alm +acm +adQ +aoi +adH +adH +cCA +cGi +cCB +cGp +cdD +ceM +aAB +aBF +aDs +aEH +ceZ +aIs +aiA +aOS +cgq +aXu +aox +aMi +aMc +aTz +apX +arA +akM +aox +bkj +bmK +boy +aox +cBQ +bAm +asF +bnF +bsp +btQ +bvj +aaK +aUf +asq +arn +aom +avS +bCB +bDx +bEj +atC +bIL +atu +bIu +bOE +bKR +bSP +bXJ +bPY +bRY +bTb +cjP +cpN +cpU +cpU +bZc +caf +bFa +bGG +cdm +cKr +cfs +cgC +chq +ciy +cjK +clo +clY +cme +btx +aIW +aGK +cqp +aMI +cpm +anB +czY +cup +cnb +bSs +cEm +aFU +cwd +jHJ +cwH +cwH +aFI +aFI +aFI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +asZ +aAg +asZ +aam +aaF +cdV +cdV +abw +ceD +cel +abR +atB +adT +aHw +ace +acM +adg +adF +ajb +ciG +ayS +cis +ccP +ccY +bzS +cdt +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +cDk +aou +cDk +bSp +cCB +bSp +cGl +bSp +cdD +cdD +aqX +aBP +bkt +cdD +cdD +adP +aTK +aPH +aRh +aaX +aox +aox +aPZ +aSq +aox +aox +aox +aox +apX +apX +aox +aox +biy +bjP +asF +arK +avv +apP +bvv +btZ +bwA +byk +arn +apM +bpT +avN +ape +asU +atv +ark +bsN +bQx +bOF +bKS +bCM +bCM +bCM +aDH +bJl +bCM +bCM +bEL +bHm +bFa +cHm +bFa +bGG +cdp +aFA +bFx +bFy +chr +ciz +aIp +aIM +aIP +eMp +buV +coW +cpH +cqv +aGy +cpn +aHK +aNg +cFF +cFF +cFF +cFF +cFF +aJl +aFI +aFI +aFI +aFI +cko +cko +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +ciQ +aeu +aAg +asZ +aak +aan +aaH +cdY +cdZ +cdW +cdY +cei +abS +acb +adg +ace +acp +acW +alV +adG +adR +adU +adR +adR +aev +bAf +acm +aaa +cev +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +adH +aoE +adH +ciZ +cGp +atR +bSp +ciZ +cGi +cdD +ceZ +aQY +cdD +cdD +ago +aIz +ajW +ajJ +aOS +fXq +aIV +aox +aOk +aox +aox +aXd +axf +bVK +aHz +bzD +aLW +aox +cBV +aox +atT +atT +dis +dis +dis +dis +ajK +atT +dis +atj +apN +awj +apf +atg +auG +ark +bsO +bQx +bOJ +bPo +bCM +bCZ +bPZ +bSa +bTd +bDO +bmb +bmb +bmb +bFs +cai +bFa +aRQ +cJM +awu +awu +awu +cht +ciA +aMR +aDk +aDk +cmf +aIU +coY +aIt +cqy +aGT +cpe +aHx +ckE +cBz +aHd +aMZ +aFc +cFF +acm +aaa +aaQ +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aai +cmS +asZ +asZ +aLJ +aas +aaP +cdY +ced +aby +ceq +cem +abV +acd +age +acg +aiX +acX +chW +asf +cdv +chf +chF +aeh +aex +bSo +cds +cds +cds +cir +civ +cix +civ +civ +civ +civ +civ +cix +civ +ciH +ciU +ciH +cdk +cGf +cdk +cdk +cdk +cGs +cGu +aAE +aBU +aDu +aYk +byC +aIA +atQ +cjj +aRj +anX +oPf +aLV +axf +aHz +bsl +aXx +bAe +bTh +cah +chs +bfA +cGS +cHf +aaM +atx +arN +bik +bqa +aTm +bud +bwB +bym +bnP +atj +avV +asA +apf +atr +auG +arD +bsP +bQx +bOF +bYW +bCM +aIe +bQj +bDD +bTf +bDP +bCC +bWF +bDX +bFs +cHo +cHD +cHT +cJN +cEn +awu +aGw +chu +ciC +azc +aDk +aGu +gwD +azT +coZ +aIx +cqB +aHs +cpp +bDa +acm +cBA +aHe +aFm +aFc +caK +acK +acm +cow +aaa +cow +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +anH +aeu +asZ +aAg +aal +aaw +aaU +cdZ +cdY +cfK +cdY +ces +abW +abs +adg +ace +acr +acY +chX +adI +adS +adY +adR +aek +aeA +bAf +acm +aaa +chM +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +adH +aoF +adH +ars +bSp +ciY +ciZ +ayo +cGi +aAb +aAH +aBX +aDv +ago +aGP +aIB +aba +cgw +aRk +apY +oPf +aLV +aHz +aTE +arl +arl +byV +bzc +gMU +gMU +bfJ +abk +aqb +atT +atT +aqz +aoW +bqe +aqQ +aqQ +avQ +byn +bzI +atj +auY +asE +apg +bui +aqR +ceI +atE +bIy +bOY +bYX +bHn +aIw +bQn +bDE +bTi +bUC +aFi +bWH +bDY +bFs +bFU +bGg +bFZ +bRT +cEw +awu +cgD +chv +ciC +aGz +bxm +brl +cmg +aGs +aHH +brm +cqD +aHu +cpq +aIO +clu +cBB +aHf +bDR +aFc +cFF +acm +aaa +cow +aaa +cow +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +asZ +asZ +asZ +aaD +abe +adq +cdH +abz +cdH +ceB +abZ +atB +adT +aZh +acz +ada +adg +adI +apx +cip +asK +chL +ccX +cdl +bzS +cdu +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +acm +aaa +cDk +aoJ +cDk +ciY +ciZ +ahh +ahh +ahh +qtv +qtv +qtv +qtv +qtv +cfM +cfM +hvb +hvb +cfM +aRl +bVL +aKg +aLV +aHQ +arl +arl +boi +bsI +byP +bzj +bzc +bfL +agW +aqj +aqe +aqi +aqS +aqB +bqe +arW +asd +avR +byn +ara +atj +bBF +bCK +bDz +atI +ath +ata +atG +bQx +bOF +bYW +nVt +bDp +bQn +bSf +bTm +aMJ +bDI +bWJ +bDZ +bFs +cxL +bGj +aRQ +cny +bEV +awu +aCZ +chw +ciA +aGA +aMk +brl +cmi +aKQ +cpa +brm +cqB +aGy +cpr +aJp +acm +aFM +cDU +aFM +cFz +aFM +alm +acm +aaQ +acm +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +asZ +aAg +apn +ceE +cfJ +abs +abv +abC +abL +aca +asZ +alV +azv +chB +chV +adg +ciN +ciM +chI +chI +chI +aaa +acm +acm +acm +aaQ +aeo +aeo +alm +aeo +aeo +aaQ +aeo +aeo +alm +acm +adQ +aoM +adH +adH +ahh +qtv +awo +cdn +cdJ +aAf +cfc +aCd +cfA +axk +cjc +aoN +amh +cfM +aRm +cci +aKP +gMU +arl +arl +byN +aXy +aYY +bbG +bzk +bzd +cGk +auy +adb +asX +blM +bnG +bpd +bqg +bsC +buk +bHB +aGG +auc +atj +atj +bHI +atj +nNA +atT +atT +atT +bIz +bOF +bYW +bIq +bDq +bDv +bSf +bDN +bDS +bmb +bmb +bmb +bFs +bFa +czv +bFa +cnz +bFS +awu +cgF +chx +ciA +aGB +aDk +brl +cmg +aKW +coZ +brm +cqB +cjQ +cpo +aHx +ckE +cBz +aHg +aNa +aFd +cFF +acm +aaa +cow +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aAg +asZ +asZ +asZ +aAg +asZ +ceo +asZ +aAg +asZ +asZ +cfY +acP +acA +adj +ady +adJ +cii +cfY +aaa +acm +aaa +aaQ +aaa +aaa +aeo +aaa +aaa +acm +aaa +aaa +acm +aUz +aeu +aeu +aeu +adH +aoO +apR +agx +ahh +ajP +aws +cdo +cdK +evx +cfd +evx +cfB +cfO +adB +aIH +aJV +aCV +aNd +cdg +aQh +bwp +ciX +cdc +byq +aXz +aYZ +bbU +bzm +bzc +bfN +ahm +aqw +atl +blN +aqx +aqD +aqL +bsE +bul +ayq +byp +bzJ +atp +arC +bCL +bDA +bfR +bFD +aww +aLC +bIA +bPw +bYY +bCM +bDr +bCM +aDK +bCM +bCM +bCM +amP +aEU +bEH +bFc +cbd +bGJ +cdr +bGG +awu +aMV +chz +ciA +aGl +aIK +aIy +cmk +aMr +cpc +cpJ +cqB +clv +cpp +bDa +acm +cBA +aHh +aFn +aFd +ccT +acK +aaa +cow +aaQ +cow +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +asZ +aAg +aAg +asZ +asZ +aAg +asZ +asZ +aAg +asZ +cfY +acj +acB +adm +adz +adN +ciB +cga +acm +aeo +aaa +aeo +aaa +aaa +aeo +aaa +aaa +acm +aaa +aeU +adQ +adQ +adH +adH +adQ +adH +cFU +cFf +agA +ahh +atS +awB +awJ +awJ +aAh +cfe +evx +cfC +cfP +aoD +aII +aJW +bdl +aNe +chk +aQi +bgZ +aSm +biE +aVc +aXD +aZb +byT +bzo +aHz +cGq +apy +aqC +avB +cce +aqc +biv +aqM +bsE +buo +aGG +byr +bzL +asg +abF +bCN +bwh +bwj +bFF +abF +bdC +bID +bPB +bZa +ahS +bJE +bCP +bSg +bCE +bML +alF +bWL +bYq +bZd +bFT +cbe +cBp +bFa +bFY +awu +aDk +chA +ciE +aDk +aDk +aDk +cml +aMs +aHH +aIE +cqF +clI +cmq +aIO +clu +cBB +aHi +bFG +aFd +cFF +acm +aaa +acm +aaa +cow +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +asZ +aAg +aAg +asZ +asZ +aAg +asZ +aAg +asZ +cga +cfY +cde +chG +ciD +ciq +cfY +cfY +aaa +aeo +aaa +acm +aaa +aaa +aaQ +aaa +aaa +acm +aUz +adH +adH +cEC +cEH +cEM +alQ +adH +adQ +abX +cBc +qtv +cew +awI +cdq +cdL +aAi +awJ +aCe +aXM +aEI +aZM +aIJ +aJX +cfM +aNj +avo +aQj +byj +cje +cdc +byB +aXG +aZc +bbV +bzq +bzc +bfL +agW +aqO +aoj +blR +aqy +aqE +aqN +bsE +buo +aGG +bys +bzM +asa +asy +bCO +bDC +bIC +bFI +bKI +bpU +bIE +bPL +bZb +bmc +bCJ +bmc +aDW +bmc +bmc +bmc +aqd +bYs +aHV +bFa +cbe +bGK +bFa +cen +awt +aJg +chC +ciI +cjL +clp +clZ +cmn +byl +cpf +cpg +cqJ +cpj +cpt +aJG +acm +aFM +cDU +aFM +cFz +aFM +alm +acm +cow +acm +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +coy +aUz +aeU +aeu +alm +aeu +aUz +cmV +aeu +aeu +aeu +aeu +cfY +cga +cfY +cfY +cfY +cga +cfY +acm +acm +alm +aaQ +aeo +aeo +aeo +acm +acm +aaQ +alm +aeu +adQ +cCr +cED +ieA +ale +alT +cEW +aoZ +cFg +agC +qtv +atU +jCp +awJ +awJ +aAj +cff +iiA +cfE +cfR +cge +bav +cgu +cfM +aRu +chm +aLg +arl +arl +gMU +bAw +aXH +aZl +bbY +bzb +jOz +cGk +auy +aeS +awg +blT +bnI +bpe +bqm +bsF +bur +atj +aHU +auc +atj +atj +aug +nNA +nNA +nNA +atT +atT +bIz +ice +bKY +bCE +bNY +bCR +bSh +bDd +bUD +bmc +avq +bFd +bFa +bGa +bGu +bFC +aHV +cep +awt +aJh +chE +ciJ +cjM +cls +cmb +cmo +aMu +aMG +aIu +cqB +coG +cFt +aJI +ckE +cBz +aHj +aNb +aVG +cFF +acm +aaa +cow +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aai +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +ccz +aeu +aeu +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +adH +cEA +cEE +ajG +alg +alU +cEX +apb +cFf +cEh +ahh +ccU +awK +cdB +cdM +aAk +cfg +evx +cfF +cfS +cgf +aIR +amj +cfM +aRv +atF +aLk +aLV +aLW +gMU +arl +byM +aZn +bbZ +bzr +bzc +bfT +apT +arO +aqh +aqk +att +aqG +bqs +arY +auM +arX +byt +afT +atj +aaq +aum +apK +aun +arw +avF +aus +bIJ +bOY +bKZ +bmP +bNZ +bQr +bSi +bTn +bUF +bmc +bWP +bYt +bZe +bGd +awN +awN +awN +aJj +aJk +agN +aCw +aAV +aDr +aCw +aDk +cmu +aJc +bBt +bFj +cqK +coM +ctZ +bDb +acm +cBA +aHk +aFo +aFe +ctr +acK +acm +cow +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +anH +aeu +aeu +aeU +amq +aeu +aeu +aeu +aeu +aeu +aeu +aeu +alm +acm +aaQ +aeo +acm +alm +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +adH +cEB +cEF +ajM +alh +alW +cEY +apd +cFh +cFj +ahh +ahh +awM +cdC +ceJ +aAl +cfh +aCk +cfG +cfN +afP +aIS +cfM +cfM +aRw +anY +aKe +aLV +aHQ +aTG +arl +arl +aZo +bcm +arl +arl +bfW +apZ +ass +atT +atT +atD +aqG +bqt +cOW +cOW +cPb +byw +ard +nNA +apv +bCS +bDF +bEk +bFM +bGt +bkW +bIu +bOF +bKY +bCE +bOe +bCT +bDy +bDe +bUH +bEZ +bWR +bFE +bEV +bFg +awN +ccl +aCx +aCA +cft +aIg +aSj +ciK +cjO +aMm +aDk +cmv +cnG +cpi +cpK +cqL +cph +bwy +aKm +clu +cBB +aHl +bId +aFe +cFF +acm +aaa +aaQ +aaa +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aUz +aeu +aeu +aeU +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +adH +adQ +cEG +cEL +cEQ +alY +adH +cDP +abX +adH +cAF +ahh +ahh +ahh +qtv +ahh +qtv +qtv +ahh +cfM +hvb +cfM +cfM +cgz +aRy +auo +aKe +aLV +aLX +aHz +bsl +aXJ +aZs +bco +bJO +cgK +cGC +cgK +cCg +bjS +atx +auU +biO +bqu +bsH +auX +cwE +byx +bnQ +atj +aUj +bCU +apD +apL +apQ +bGv +aus +bIM +bPS +bLf +aBm +bOh +bQs +bSj +bQs +bUI +bmc +bWS +awN +awN +awN +awN +ccn +auS +aBQ +cfv +aIg +aHT +ciL +cjR +aDe +aDk +awv +bNQ +aDp +aJo +aDp +aJt +aJx +aMt +acm +aFM +cDU +aFM +aFM +aFM +cke +acm +aUz +aeU +cke +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeU +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aeu +aeu +aeu +cIV +cIV +cIV +cIV +cIV +khA +cIV +cIV +cIV +cIV +cIV +cFi +cDZ +cEi +cEq +anK +cFo +aay +cFT +aUa +ctz +cvM +awE +aEN +aGQ +hzY +jxc +avw +aRB +aJi +aLE +apX +aOk +aox +aox +aXT +bAo +bcq +bTh +chs +bga +aHz +biA +bjT +atT +atT +atT +beM +asx +bxx +asx +byD +asx +asx +aui +bCW +bDG +bEl +bFO +bGw +axm +bIu +bOF +bKY +bCE +bOi +bCV +bSk +aJK +bUR +bmc +bWV +awN +aBL +aBT +cHE +ccp +aBV +aBW +cfw +aCU +aGf +ciO +cjS +clt +aBK +cmx +cnH +cpk +aDt +aJq +crt +aJy +bIb +ckE +cBz +aHm +aNc +aFf +aFM +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeU +aeu +aeu +aeu +khA +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIV +baH +baH +baH +baH +baH +baH +cFr +avm +aUa +amk +cvN +cvT +aEO +aGR +cwr +cFZ +avI +aRE +cfa +aox +aox +aiF +akw +aox +aox +aox +apX +apX +aox +aox +aox +cCi +bjU +blU +auw +akb +bqw +asx +bus +bwD +bzB +aop +atd +aui +apO +apJ +cjv +bqf +cjy +aus +bIJ +bOY +bLi +bmc +bmc +bmc +bDB +bDg +bmc +bmc +bEp +awN +axe +caj +cbg +ccq +aCo +aCo +cfx +aIg +aCT +ciP +cjU +aDg +aMk +cmy +bBi +aHS +aMb +aJP +cru +aJz +bDf +acm +cBA +aHn +bIw +aFf +aFM +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aUz +aeu +aeu +aeu +khA +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +khA +cCP +cEa +cEj +cEr +cEx +baH +cFs +avp +aUa +ctK +cvO +cvU +aEQ +aGS +tGU +aJY +awr +aRX +aOK +aXv +aRb +anO +anO +aDJ +aZV +anO +bcv +bcY +beC +bge +aOk +cCj +bjZ +blV +agZ +ahv +bqx +bsK +bsj +bzT +bCI +arR +bEe +aui +aui +avb +aui +xei +xei +aui +bCH +bQd +bKQ +bQk +caD +bBe +bBe +bBe +bCg +bWk +bWW +ane +aBR +cam +cbi +cct +cdw +cer +cfy +azk +chN +ciR +cjV +aMn +aMo +cmz +cnK +cpl +cpL +aJs +crz +aJA +bIe +clw +cBC +aHo +aFf +aFf +aFM +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aeo +aeU +aeu +aeu +aeu +aeu +cIV +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +khA +cDR +cEb +cEk +cEs +cFk +baH +agD +baH +aUa +aAI +aCl +aDx +aER +aHr +aCC +aKi +cIw +cKd +aox +aox +aRc +bzN +akM +ajt +ajt +aZq +aZq +ajt +ajt +aQO +apX +cCk +bka +blW +atj +alj +bqB +asx +aoz +avh +bCX +bGe +bHb +bBH +bEM +bDH +bEn +bJJ +aox +bOU +bRd +bOF +bJy +aCq +cbA +bBf +bBf +bBf +bBE +bBf +bEN +ane +aBS +aBZ +aCf +aCn +cdy +aKo +aCi +aIg +ayY +aCY +aNh +aDi +aCw +cmC +aDm +aJO +cpM +cqO +crC +css +aJH +cok +aFM +aFM +aFM +aFM +aFM +aeu +agt +aEg +cko +cko +cke +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aeU +aeu +aeu +aeu +aeu +cIV +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +khA +cDT +iSg +cEl +cJD +atV +cEg +ayp +avO +aUa +cvK +cvQ +aDy +aES +aHv +aUa +aKl +aPz +aNl +aGh +aGh +aZf +aGh +aGh +ajt +aBc +bmH +boJ +bcZ +ajt +bgf +aox +apX +aox +aox +apX +aox +ahy +asx +aqt +avj +bDc +ave +abq +asx +asx +bDJ +bAj +bpn +aox +bHM +bPn +bQh +bLl +bSY +bXJ +bZZ +bZZ +cgE +cjY +cpP +cpV +awN +awN +aCg +aSs +bqD +cJY +aCj +bII +aIj +aDj +azh +bJP +aKB +aKD +aKF +aMj +aJM +aMy +cqR +crI +csv +aJH +aeu +cko +csP +cvi +csP +cuq +cuq +cuq +cuq +cuq +cuq +cvi +aeu +sDw +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +aeu +aeu +aeu +aeu +aeu +cIV +cIX +cIX +cIX +cIX +cJo +cIX +cIX +cIX +cIX +khA +cDW +anT +cGd +cEu +atW +cFp +ayt +aoC +aUa +aUa +aUa +cvW +cFH +cwn +aUa +aHq +aNq +aZO +aGh +aQm +aRi +aSn +bqU +ajt +aXV +aZu +boT +bdg +aBC +bgl +bpq +biD +bkb +blZ +bpq +bpg +aYO +iYW +bwb +arz +bDc +avd +asB +aru +asx +bpq +bEr +bFR +bKJ +bHN +bMm +bQi +bLq +axF +axF +bQy +bBn +axF +bCr +bBf +cpW +bYu +aCc +cas +bEx +ccw +cdz +cet +azM +awH +awF +ciS +cjZ +cly +aKE +aKG +aKG +aKH +aKG +aIC +bww +aJE +aJL +aeu +cko +aDY +aEd +aEi +aEm +aEk +aEf +aEr +aEf +aEr +cxl +aeU +aai +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +khA +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +khA +cDX +cEe +cIi +cEv +atX +baH +cDZ +azw +aAm +axL +aCm +aAm +aAo +aAo +cFY +aKn +aLo +aNp +aGh +aKT +aZm +brd +bqV +ajt +aTC +aZB +bqc +bdo +bqz +bgo +apX +bqb +cba +aIN +aox +bzN +arA +asx +bwd +bzA +bLe +auT +auT +arF +iYW +bAb +bQR +aYO +aox +bHO +bOP +bYG +auE +auE +auE +auE +auE +auE +bCs +cpd +crs +bYv +cym +cat +cHH +cHV +cKa +ceu +azN +aKw +chQ +bUv +aCS +aMh +awH +aIF +cpB +azy +aMw +aID +crJ +cgH +cHu +aEg +cko +aDZ +aEe +aEj +aEn +aEp +aEf +aEj +aEf +aEj +cvi +aeU +aai +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aap +aeu +aeu +aeu +cIV +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIV +cDY +apS +art +baH +aXW +baH +aXW +agn +baH +ban +ban +akB +ban +ban +ban +aKp +aiR +cfa +aGh +aKU +aZx +bac +bqW +ajt +aUM +aZD +bqd +bqv +ajt +bgp +bhb +biF +bkk +bmd +aYO +aYO +bqF +asx +bjO +bwE +byE +bzP +arV +brU +iYW +bAp +bQS +aox +aox +bZl +bQv +bJx +awq +aKd +bBd +bBR +bCl +bCA +bCr +bBf +csC +bYw +aIb +cau +aCy +ayk +aKk +cex +axH +bFt +chR +ciV +cka +clz +awH +cmG +cnT +cpz +cqd +axa +crO +axa +csP +ctp +cuq +aEa +aEf +aEj +aEm +aEq +aEf +aEj +aEf +aEj +cxl +aeU +aai +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeu +aeu +aeU +aeu +aeu +aeu +khA +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIV +aXW +cEg +cEp +aXW +apo +cCt +cEg +azz +aAn +ban +aCr +aDL +aEV +aHy +ban +aKq +aiR +abb +aGh +bdn +aRo +aSp +aTH +ajt +aVq +aZD +bcw +bdy +ajt +ajt +blc +hqv +ezp +ezp +aZd +auj +aZd +asx +asx +asx +asx +iYW +iYW +asx +iYW +bMu +bRr +aox +bOQ +bPn +bOP +bJy +axn +bMs +bOj +bQz +bSl +aEM +bUV +bEB +csD +bYx +cyn +caw +cHI +cHW +cKb +cey +aDc +awH +aDj +azh +bJP +aDj +awH +cmI +bfe +bxL +cqe +axa +cfz +axa +aDN +axa +axa +aDN +axa +aEk +aEn +aEi +aEf +aEr +aEf +aEr +cvi +aeU +alm +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeU +cui +aeU +aeu +aeu +cIV +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIX +cIV +cLe +cCt +arx +aoC +cJQ +cJQ +ayu +awc +axD +ban +aXC +aCO +aZJ +aHA +baW +aKr +aiR +adC +aGh +aGh +aGh +bhK +aGh +ajt +ajt +boI +ajt +bqy +hqv +bgr +bhd +biJ +bjn +bmE +bns +bpk +bnD +bnS +boc +bwG +bso +bpi +aZd +aZd +aXa +aYO +bAt +aox +bGx +bOP +bIN +bJG +awq +aKf +bOk +bQA +bCo +awq +bCr +bEC +csE +bYy +aCc +caz +bEy +ccy +cdA +ceC +aGv +axa +azf +azg +bKr +aLf +axa +azX +ayK +bxZ +axa +axa +crR +chy +csW +cjI +cjW +cuI +axa +cvo +cuq +cuq +cuq +cuq +mbs +cuq +cxl +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aap +aeu +aUz +aeu +aeu +cIV +cIV +bTj +ahz +cIY +khA +cIY +ahz +cJR +cIV +cIV +cIH +cIH +cIH +cIH +cJK +cJW +auC +asH +baH +ban +bfn +aZK +aYi +aHB +baW +aKr +ajJ +cgR +bsc +bqK +aRp +brM +aTJ +brB +aXY +aZH +ajt +bdB +beJ +bqq +bhh +biL +aZd +bqh +bnJ +bpl +bqG +bsL +buw +bwH +cPj +bnT +bor +aZd +auj +bew +aZd +aox +bvJ +bwc +bBj +auE +auE +aBE +bOm +bQB +bCp +awq +bCr +bED +csF +awN +awN +axM +aSt +axM +buT +cKu +axM +axa +byF +ciW +ckb +aFg +axa +cmK +cnY +cnY +cnY +cqW +crT +cnY +csX +cnY +cnY +cuK +aAQ +axW +axW +axa +axa +axa +axW +axW +axa +axa +gvR +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cIV +bsJ +ahA +cJk +aDF +cJu +ajN +bsg +cIV +aeO +cIH +cIn +arE +cIO +cJQ +cFy +cFT +aty +aAo +axu +aCt +aDM +aEY +aHC +baW +aKr +aiR +cgR +bna +bqL +bno +brM +brj +brk +brE +aZN +bjI +bdF +bmO +boA +bhi +boV +bjn +bmG +bnK +bny +bqH +bny +buB +bny +bzt +bAs +bBQ +bBK +bCY +bDK +aZd +bGc +bGy +bhY +bIR +awq +aKa +aKh +bOp +bQC +bCx +awq +bUY +bBf +cud +cyb +btG +awT +axc +aPs +axN +ceH +ayU +axb +ayW +cja +cKz +clB +axW +cmL +cob +cpA +cpA +cqX +crX +csw +csY +ctq +cur +cuM +aAR +cvr +ckw +cmw +xON +fAH +jPE +gIE +gIE +dQe +axa +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cIV +cIq +ahB +ahO +aiv +ajk +ajZ +cJP +cIV +baH +cIH +apW +arG +cIt +atY +cJm +akO +atH +aoC +ban +aYl +aDO +aYq +bet +ban +aKv +aiR +cgR +bna +aQp +boe +brQ +brV +brV +brV +aZP +nJw +bdL +bmR +boB +bhm +bqP +bmF +bcX +bnN +bny +bqH +bny +buB +bny +bzC +boS +bCF +bFW +bIx +boz +aZd +bIB +bZM +bhY +bIT +bQI +bLr +bMt +bMt +bMt +bSm +bQI +bUZ +cpQ +cwU +axj +cyp +caA +cbl +cbl +cdE +ceO +bRk +axb +cgW +cjb +cKF +clD +aCh +cmT +coc +azE +brn +aLF +cin +cin +cin +aLF +cut +cuO +bVF +cvt +ckH +cmA +czf +axW +dww +gIE +gIE +gIE +axa +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +coy +aUz +aeu +baH +baH +baH +aeu +cIV +cJb +ahD +ahT +aiw +ajl +akc +cJE +cIV +cIK +cIH +cIJ +arH +cIM +atZ +awR +akW +aZS +aZS +aZS +aYH +aCJ +aYH +aYH +mej +aoK +aua +aNw +beL +brr +brb +brR +brP +brA +brH +brr +bow +bqk +bmT +boD +bhp +bpb +bjn +bme +bnK +bny +bqH +bny +buB +bwM +byG +bof +bFJ +bFX +bqQ +ezp +aZd +bBU +bXv +bhY +bIW +awq +aKc +byQ +caR +bCk +caq +auE +bVb +bWl +bXa +awN +cys +caC +axp +axs +cdF +ceP +axH +bGF +chS +cjg +cKI +clG +aCR +cmY +coe +aMa +bro +axU +crZ +crZ +csZ +axU +cuv +cuP +axW +aBx +aAM +aAM +aAM +axW +pCe +gIE +gIE +gIE +axa +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeK +baH +afb +baH +baH +cIV +cJz +cJi +cJF +cJL +cJw +cJw +cIV +cIV +anc +cIH +cIM +cIH +cIH +cKk +baH +alf +aZS +cEz +bhB +bhC +aDP +baj +bak +aZS +bOL +aiR +aNy +beL +aQw +aZz +bal +brW +brX +brr +brw +bnL +bql +bqj +bqn +bhr +bhd +bol +bmg +bnO +bny +bqI +bsR +buD +bwO +bAl +bAu +bFV +bGk +ezp +ezp +bGh +bZI +bhY +bCa +bMD +uzR +auE +auE +bNV +auE +auE +auE +axF +bBJ +axF +awN +cyx +caI +axH +bQm +azd +ayV +aLe +bHe +chT +cjh +ckc +clJ +axW +cmY +coh +axU +aLH +aLu +aLy +aLy +cjN +axU +cuy +cuU +aLK +aBx +aAM +aAM +iBL +axa +gIE +gIE +dww +mLN +axa +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aem +aeD +aeL +ajI +afi +aml +afL +aVQ +agB +ahG +ahV +aiN +ajn +ake +ali +cIB +and +cFT +cJO +afG +ait +apB +awY +aln +aZS +aXi +aAK +aCu +aDR +aZT +bdd +aYH +arv +aiR +cgR +bna +aQx +brt +bap +bsb +brq +brF +brG +hqv +boQ +boH +bqo +bht +biN +bnj +bmh +bnU +bpo +bqM +brN +brO +bwQ +bAn +boa +boh +bon +aZd +bGh +bZz +bsn +bIO +bhY +bME +cBF +bkT +bNN +bNW +bQH +bUU +coX +bVe +bWm +bAM +awN +bKp +caJ +bKp +awW +cdN +ceQ +cfH +axb +aAa +aLq +bKw +aLp +axa +cnc +coj +aLs +cqi +aLv +csa +csa +csa +axU +cuz +cuV +axW +cvu +aAM +aAM +aMW +axa +gIE +gIE +gIE +gIE +axa +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +alB +alB +alB +alB +alB +cEg +agE +ahI +ahW +aiO +ajp +akf +ajp +cqE +ajp +cqS +cqY +afW +aWY +aWY +aWY +aWY +aZS +aYm +aAL +aAP +aDS +aZU +bdI +bez +acS +aiR +aaR +bmy +bmy +aRq +aSu +brr +aVd +brJ +brI +hqv +ajt +bmA +bph +bmS +bmZ +aZd +bqJ +cCC +bnC +bnc +aZd +bnq +bnH +bnR +bob +bRc +bZy +bZp +bZA +bZD +bZJ +bZN +bZR +bMP +bQF +bAV +bNP +bOa +bQJ +bUU +bTo +bNc +awX +awX +awX +awy +cHv +axI +awX +awG +bDm +azI +axb +axa +axa +bzH +aBv +axa +cnf +com +aGD +ayn +aIn +ayn +azm +ayn +axX +aAp +cjT +axW +aBf +aBg +chH +aLN +axa +fyr +dww +gIE +uxQ +axa +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +alB +bfq +iMq +bbx +alB +afX +agF +alB +alB +alB +pQf +pQf +pQf +alB +alB +alB +aep +aga +aWY +aFs +aqq +bdA +bah +aXg +aAT +aAC +aDP +aFa +aHD +aYH +arv +aiR +cgU +aOV +bmy +bmy +baM +beL +bna +bna +bmy +bnv +bfH +boG +bux +bhv +biP +bpV +bmi +bnV +byh +bqO +bnv +buH +bPv +bPy +bPV +bXv +bhY +bZr +bZB +bZE +bZK +bZO +bBV +bMW +bQG +bMv +bNR +bQD +bRL +bBv +bTp +bNf +awX +awx +bYz +axw +cyf +czB +awX +axY +ceR +axQ +ayQ +aBI +aab +ckd +clL +aFB +cnj +con +aLt +cqk +aLw +csb +csb +csb +aLH +cuz +cuV +axW +aBx +aAM +aAM +aNf +axa +axa +axa +axa +axa +gvR +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +alB +aWJ +ayv +aWJ +alB +cIe +bhl +alB +bfq +juX +bbx +aWR +bfq +aUI +bbx +alB +crh +dYu +aWY +bde +aXo +aXO +atq +aXt +aAX +aBe +aEP +aHM +aHE +aZy +aKx +aiR +cgV +aPd +beu +aRr +aSv +aTM +boZ +boZ +aXL +bpQ +bgg +biz +bAX +bAX +bnz +bBZ +bqS +bGW +bGW +bqX +brz +buO +bhY +bCa +blq +bhY +bhY +bZs +bZx +bZF +bGi +bGz +bhY +bJb +bJI +bUU +bNU +bQE +bSz +bUU +bGH +bNh +awX +awO +bYA +axh +cyg +axJ +ayg +axZ +ceS +cfI +cgG +aAe +ayr +ckf +clM +axW +cnk +coo +axU +aLH +aLx +aLz +aLz +aLB +axU +cuA +cuU +aLK +aBx +aAM +aAM +aAM +axa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +pQf +bfs +aWJ +bft +aWR +agf +agM +aWR +bhu +ayv +aWJ +aWR +aWJ +ayv +bhu +alB +aeN +aga +aWY +aWV +aXb +aXS +atq +aad +aAY +aCB +aDT +aFb +aHF +bbQ +aKz +axz +unX +aiR +aHq +bhY +baQ +bbz +bOK +bOK +bOK +bOK +bgK +biC +bOK +blj +bnE +bpN +bqT +mIt +bsv +bOK +btt +bOK +byo +bEt +bEt +bAB +bEt +bDh +bnv +bnv +bnv +ayO +aAU +bNA +bNM +bNM +bNM +bNM +bNM +bNM +bNM +crb +awX +awP +bYB +awz +cyj +cHK +ayg +bZq +ceT +cfQ +aym +aCa +ays +ckh +ayz +axW +cnk +coq +bCG +bFh +axU +crZ +crZ +crZ +axU +cuz +cuV +axW +aBx +aAM +aAM +aAM +axa +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +alB +alB +alB +alB +pQf +pQf +bfM +bfM +bfM +aWR +agh +agQ +aWR +bfs +aWJ +bft +bhn +bfs +aWJ +bft +alB +aeT +agg +aWY +aXU +bdb +bdS +bah +aZC +bad +aBr +aAF +aFk +aHI +aZS +aKI +aLA +aMN +aPg +bdf +bpC +bkG +bbH +bnM +bpC +bpC +bpW +bgP +bBc +bBp +bBA +bBY +bBY +bEf +bHf +bsw +bqY +bvB +buR +bPx +erN +bjX +bkz +bOv +bHE +bjW +bGr +bEg +azb +aBw +bNC +bOo +bLs +caE +bZQ +caF +bSq +bNM +bVi +awX +awp +bYC +bZf +caL +bZf +aUh +ayb +ceV +cfT +axP +aKj +ayE +ckh +ayz +axW +cnl +cos +aAd +bFh +aLF +cin +cin +cin +aLF +cuA +cuW +bYI +cvw +ckI +cmN +cCq +axa +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +alB +bfq +aax +bbx +alB +akX +aeV +bfl +bfV +aWR +aWP +adx +aWR +bgC +bgm +bgC +aWR +bhc +bgY +bhc +alB +aqa +aga +aWY +aXc +aLO +aYj +bah +bai +bah +bah +bai +aXP +bai +aZS +aZr +ajL +ajL +cAX +aJJ +aRs +aSB +aTP +aYd +aYK +aYK +aYd +bdO +beO +bpF +bpL +bxc +bkn +bmk +bnW +bpr +blf +blf +blg +blf +mPm +blQ +bAC +bBL +bkQ +bjW +bAv +bOC +bGM +bHP +bJc +cbY +bLv +caG +caH +bQL +bSu +bmp +bVj +awX +awX +awX +bZg +axE +cbo +awX +aya +bZt +bZu +awC +aLL +ckt +ckj +clN +aGq +cno +cot +cpC +cql +crc +csd +csd +csd +cts +cuC +cuY +cjt +cvC +clf +cze +gnA +axa +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +alB +bgD +bfo +aWJ +alB +bdp +aeW +afo +afA +afM +bfZ +bgU +aWR +acw +bgn +bgB +cqw +bgM +bgn +bVA +pQf +ctJ +cxP +aWY +aue +axd +ayx +bdc +bdR +aAZ +eVT +aEE +aFp +aHJ +aOM +aZr +bdJ +bdJ +aZr +aYd +aYK +aZL +bch +aYd +aZg +aZj +aYd +bhe +cLt +xqL +bhX +bhs +biM +bmt +bhX +bsz +blf +bkm +bkJ +blG +blf +asI +bwS +bBM +bkS +bjW +bEs +bPz +bGN +bhY +bJe +bNM +bLw +bOr +bOy +bQO +bSx +bNw +bVk +bOb +bPO +awX +awX +awX +awX +awX +axa +axa +axa +axa +axa +axa +aBu +axa +axa +cnp +coz +cpD +coz +crd +cse +csy +cta +ctv +cuD +cva +axa +cki +axW +axa +axa +cok +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +alB +aWJ +bfU +aWJ +ary +bdt +bgx +afq +bfP +afN +agi +agT +ahH +aig +agT +ajq +ako +alq +amg +aaL +bdp +cuG +arI +aWY +auf +aub +azt +aAS +aTn +aBa +biU +aDU +aFq +aZG +bax +aKJ +aLM +aNz +aPj +aYe +aXn +aSC +aTQ +aVf +aXZ +aZQ +aYd +bdP +beP +xqL +bhy +ats +bko +bmw +bnY +bpu +blg +bsS +biW +bwW +blg +bzU +bmf +bBN +bkR +bhL +bEu +bPq +bGO +bLt +bJf +cfD +bLx +bOs +bOx +bNM +bSD +bNw +bSK +bEg +bOl +bSJ +bSI +bGH +bGr +bEg +bAT +bOC +cmB +bOb +cmh +bAM +ckl +clS +axa +azH +azU +cpE +aDq +cri +axb +axb +ciT +axb +axa +axa +axa +cvD +ckk +aEg +cnu +cnu +cnd +cnd +cnu +cnd +cnu +alm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +alB +bfY +bdD +aeq +axR +agz +ahK +afu +bff +aVe +aWM +aWM +ajX +bgd +bff +bgG +cqx +bgQ +amm +ang +acU +acV +arJ +aiC +auh +axv +azx +aDw +aTq +aBb +chK +aDV +aFr +aFr +aIT +aFr +aFr +aNE +aPl +bfO +aRx +aSD +aTR +aVi +aYa +aZZ +cbn +bdQ +beQ +cGU +bhz +bix +biX +bjp +bjt +bpv +brv +bsT +blm +bxj +bIF +bzW +bni +bBP +bma +bNt +bEv +bEg +bGP +bLI +bJg +bSw +bLy +cay +bOz +bQP +bSF +bNw +bTP +bUu +bWh +bTy +cxB +ceN +chZ +cxB +cjE +bXb +bEg +cli +bYD +bGr +cmp +bOb +axa +axa +axa +axa +axa +axa +axa +axa +cjH +axa +axa +cvc +bEg +bEg +bEg +bEg +cnu +cwI +cwX +cxh +bPi +cxm +cvP +acK +acK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +alB +aWJ +bho +aWJ +ayL +bdt +bfK +afw +beW +afU +agu +ahi +alk +aim +aiP +ajr +akp +alr +amn +cHF +beY +ads +arM +ayw +auk +axg +ayB +azA +bgk +aBd +aZv +aXw +aXE +aXI +aYR +beD +bbj +aNF +bep +aZi +aZE +aSF +aTS +arc +bdG +baa +aGj +bdT +beR +biR +bhD +bnX +aKA +bjh +bjy +bpw +mPm +bsV +buS +bxl +blf +bzX +bAG +bBT +bnm +bjW +cxU +bEg +bRq +bLS +bQt +bNM +bLA +bMw +bOA +bOH +bSH +bNw +bSr +aEK +bSd +bUl +bSd +bUl +bSr +bUt +bSd +bXj +ckS +bUu +cax +ckW +ckZ +cax +cla +chZ +cxB +cle +cax +cax +bYh +csz +ctc +ctx +cmF +chZ +cmH +cvE +cmR +cwe +cnd +cwN +cqQ +csq +cnu +cuL +cnd +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeu +aeu +alB +aWJ +bfo +aWJ +alB +beY +aeZ +afy +afF +afV +acv +bgz +aWR +bfd +bgq +bgJ +bgF +bgX +bgq +cHJ +alB +cOb +cps +cMW +iwR +aZF +ami +aZF +bdi +aVJ +amV +anx +aXF +aXX +aYS +aZt +bbl +aNF +bep +aYe +aXQ +aSF +aTT +aZe +bfx +bab +aYd +bdV +beS +bhI +bhE +biQ +bkr +bmx +bod +bpx +mPm +blg +bBo +blg +blf +bjX +bJV +bHE +bkV +bjW +bAE +bEg +bPc +bLY +bQt +bNM +bOo +cgd +bNM +tYn +aVM +bNx +bSr +cyG +cyG +cyG +cyG +cyG +cyG +cyG +bSr +bXz +ccB +cgb +bAM +bAM +fcv +bAM +bUw +qLx +xJY +bEg +cKX +crm +cju +cms +cmE +cmQ +cju +bOC +cnV +cmh +bOb +cwi +cnF +cwP +cqZ +csu +cty +cLm +cwa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +alB +bfs +beZ +bft +alB +bfp +afa +bfm +bgu +aWR +aWP +aew +aWR +bgI +bgs +bgI +aWR +bhf +bhw +bhf +alB +cMG +arP +asL +aZF +aWZ +adX +bhx +bdi +aXq +bdm +aVJ +aVJ +aYN +aYT +dMc +bbJ +aNK +bgj +aYe +aZa +aSF +aZp +aUm +bdM +aZk +aYd +cjf +aCb +aCb +big +boE +big +aCb +bqC +btl +bhQ +bsW +buY +bly +bmr +bmu +bAH +bIm +bHR +bNg +bAF +bOC +bQe +bLZ +bkE +bRz +bRz +bMy +bOB +bZW +bWw +bTq +bSL +cyG +cyG +cyG +cyG +cyG +cyG +cyG +bSr +bEg +bEg +bEg +bPC +bPC +bEg +bPC +crG +bEg +bEg +bEg +bEg +cju +cju +cju +aLr +cjB +cju +bOb +cnW +cBs +cox +cwl +coC +cwR +cwZ +cxi +cnu +cnu +cnd +alm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +alB +alB +alB +alB +pQf +alB +bfQ +bfQ +bfQ +aWR +bgw +ajB +aWR +bfq +aWJ +bbx +bhn +bfq +aWJ +bbx +alB +cby +cMP +ajO +iwR +aXf +aeG +aik +awU +amK +anf +bds +aVJ +aVJ +aVJ +beE +mIG +aNM +bgW +nNV +nNV +biB +aYg +aDI +aDI +aYd +aYd +bdW +aCb +bhM +bhF +biT +bja +big +bog +bpz +bra +bsX +bve +bxs +byH +bAa +bAI +bHF +buI +bhQ +bEw +bEg +bQf +bMc +bJT +bOK +bOK +bUg +cad +bhY +car +bTr +bSr +cyG +cyG +cyG +cyG +cyG +cyG +cyG +bSr +bYf +ceU +cgI +cDp +cDp +bOd +cDp +rNm +cgI +ceU +aeu +aeu +cju +cjw +csA +ctd +clV +cju +cma +bEg +cvG +cvL +cwm +cnd +cpb +crf +cnd +cnd +cko +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +alB +bfq +aWJ +bbx +aWR +bhg +akt +aWR +aWJ +ayv +aWJ +aWR +bhu +ayv +aWJ +alB +cMI +cMQ +ajU +aZF +aXR +bcx +aWU +bdi +aBh +aCD +aFR +bdx +dxq +aVJ +aZX +bbL +aNF +bep +baU +aRz +aSH +aTY +bdH +bbb +bdz +cby +clA +wmX +bjJ +blJ +biV +bku +big +boj +bjQ +bkg +bkw +bkg +blF +blY +blS +bAK +bCc +bCc +bOw +bAT +bOC +erN +bHT +bJh +bJK +bLD +bMA +bOD +bQQ +bSN +bTs +cav +cyG +cyG +cyG +cyG +cyG +cyG +cyG +bSr +bPJ +bUN +hxn +hxn +hxn +oTy +hxn +hxn +hxn +bUN +aeu +aeu +cju +cjx +csB +ctf +clW +cju +bEg +cku +clk +bYM +ckv +cku +cwS +cxg +cxj +ctO +cxp +aeU +ciQ +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +alB +aWJ +ayv +aWJ +aWR +agv +aho +aWR +bfs +ikw +bft +aWR +bfs +aYh +bft +alB +afr +bkd +cNa +aZF +baJ +ayC +baJ +bdi +bfu +aCE +aZY +aJF +aWX +aVJ +nDw +bbM +aNT +aPo +bgv +aRA +aRI +bea +bfa +bbb +bdE +cbz +cLt +wmX +bhO +aqH +biI +bkx +bom +bop +bjR +bkq +bkA +bke +blr +bkY +blC +bls +bPj +bmo +bhQ +bGr +bAT +bOc +bPe +bPH +bPe +bOc +bVf +bTk +bXL +bXx +bPe +bSd +cyG +cyG +cyG +bTS +cyG +cyG +cyG +bSr +bPJ +bQa +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +bUE +aeu +bzG +bzG +bzG +bMK +clT +bzG +aeu +ckU +cvH +cvR +cws +ckU +cnu +cnd +cnu +cnu +cxq +cwk +cxu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +alB +bfs +qIR +bft +alB +bhl +brh +alB +alB +alB +alB +alB +alB +pQf +alB +alB +cng +cbj +aki +aZF +baP +ayD +bcH +bdi +aBi +aCG +aGa +aKu +aMe +bfB +sPG +bfr +bex +aTU +bbN +aRJ +aSI +aTZ +aVk +bbb +bdN +ccr +cmZ +aCb +bhP +bim +biZ +bkB +big +boq +bpA +blO +blL +bke +blK +bke +blD +bAP +bCf +bhQ +bhQ +bAM +bGH +bOc +bHZ +bJj +bJL +bRm +bMC +bOG +bQU +bUs +bTv +krJ +krJ +krJ +bPe +bWn +bWx +bSr +bSL +bSr +bSr +cgx +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +bUn +aeu +bzG +cjB +csH +ctk +ctM +bzG +aeu +clb +cvI +coL +cwu +ckU +aeu +aeu +aeu +aeu +aeu +aeu +anH +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +alm +aeU +aeu +alB +alB +alB +alB +alB +cLG +ahp +cbk +aio +cmW +abx +cLg +cMw +cLK +cbk +cMC +cMK +cLt +cNd +aZF +aZF +aZF +aZF +bdi +bdi +aVX +bdw +bdv +aNA +aOi +aVJ +bcL +aNU +aPr +bbN +bba +baY +biB +bba +bbc +bbc +bbc +bgi +aCb +aCb +big +big +bom +aCb +jDv +bpB +bkl +bli +bnh +blz +bkY +blD +bAU +bml +bhQ +bMJ +bAM +bAM +bQl +bIc +bQo +bJM +bPe +bMF +bRs +bQV +bPe +bTw +bXg +bXs +bXF +bPe +bWq +caO +bWU +ccC +bXd +bYE +cTr +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +cke +aeu +bzG +cjC +clg +clP +ctU +bzG +aeu +ckU +cvJ +cvS +cwv +clb +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aUz +aeu +aeu +aeu +bkd +abi +cLg +ahq +bEq +aip +cLY +abD +cMk +cMx +cMx +cMz +cMD +cML +cMR +cNe +cNq +abD +cNL +cLt +ctI +bdi +bdi +amV +aVJ +bfz +aVJ +aVJ +baK +aNU +aPt +bcs +bxn +bbO +aUc +aVl +ben +bct +bbc +cna +bok +bhQ +bio +bjb +bkC +bmD +aWQ +bpD +bkf +blb +bkf +bks +bkZ +bOI +buY +bmj +bhQ +bEg +bAO +bAT +bOc +bIf +bQp +bJR +bQu +bMM +bOM +bQX +bSe +bQK +bYe +bWy +bXk +bYi +cJp +caP +bWX +bXc +bUf +bUf +bUf +hxn +hxn +hxn +hxn +hxn +hxn +hxn +jAT +aeu +aeu +bzG +cjF +clE +clQ +ctW +bzG +aeu +ckU +ckU +cln +ckU +ckU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +cko +cko +akA +beK +bkd +ava +bkd +agb +ahs +crU +aiq +cMb +cbk +abE +cLy +amp +ank +cMj +cLG +ctI +asP +auq +bkd +cNM +abD +cNU +ayj +awi +aXA +aFw +aHL +baD +baE +bbm +aNV +aPw +baS +baY +bbP +aUd +baz +bck +ber +bbc +cMK +cbj +bhQ +bAZ +bjc +bkD +bmI +aXh +bpE +brc +btb +bvh +bxw +byI +bmv +bAW +bms +bhQ +bNs +bAT +bAv +bOc +bOc +bOc +bPe +gJq +bVJ +bUm +bYd +bOc +bQT +bSC +bSE +bTA +bOc +bSr +bTN +bUc +cji +bUh +bUf +bUN +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +aeu +aeu +bzG +cjG +clF +clR +ctX +bzG +aeu +aeu +ckz +cvV +ckz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acK +cko +aaa +aaa +aaa +agy +afJ +avA +ctI +ahw +bkd +bkd +bkd +cLr +cLs +cLs +cLE +cMm +cLs +cLr +cLs +cNg +cNs +ava +bkd +bkd +cNV +ayl +awi +aXB +aFw +aHN +aJd +aKK +aLP +aNX +aPD +aQE +bhk +aSJ +aUg +baz +bcl +baG +bbc +cmX +boo +bhH +bhW +bmN +boK +emD +bhH +bjV +bkh +bkv +bmq +bkM +byJ +blk +buY +bmm +bhQ +bNT +bBa +czd +bAT +bAM +bOc +bKm +bLE +bMN +bON +bQY +bSQ +bPe +bOc +bWz +bYi +bTZ +bZh +bTC +bXX +bWY +bUi +caN +ceW +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +aeu +aeu +bzG +cjB +csI +ctn +ctY +bzG +aeu +aeu +ckz +ckJ +ckz +aeU +aeU +aeu +aeu +aeu +ciQ +aeu +alm +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +acy +aaa +aaa +aaa +cLd +cLg +bMI +cLK +abt +bkd +aeu +aeu +cLr +akq +als +amr +anp +app +aqf +cLs +cNh +auu +axl +cNN +azB +cna +cOb +awi +aDX +aFz +aHP +aJf +aKL +aLS +aNY +aPG +bbN +bba +bcn +aUi +aVm +bcr +beI +bbc +cnD +bhH +bhH +biq +bjd +bkF +bjv +bhH +bhQ +bki +bki +bhQ +bkN +bIG +bki +bMB +blH +bhQ +bEg +bEg +bEg +bGH +bGH +bQM +bKo +bLF +bMO +bOR +cak +aIY +cmD +bTe +bXu +bXn +cmj +bZj +bTD +bWZ +bVl +bXl +bUf +bUN +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +cke +aeu +bzG +bzG +bzG +bzG +bzG +bzG +aeu +aeu +aeU +cwb +aeU +aeU +aUz +aeU +aeu +aeu +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +acK +cko +aaa +aaa +aaa +agy +cLg +avA +agw +ava +ava +aeu +aeu +cLs +akr +cLA +cMf +cMq +cMl +aql +cLr +cNi +auv +axo +cNO +azC +cOf +ctI +awi +auL +bbS +bbs +bcc +bce +aLZ +aOc +bbW +bbN +bbT +bcp +aUk +aVo +beh +bcu +bbc +cne +bhH +bya +biH +bje +bkH +bkK +bhH +acm +aaa +acm +bki +bkO +byK +bki +bAY +blI +bki +acm +aaQ +bPC +bTg +bIg +bOc +bKs +bRp +bRE +bOW +cal +cmr +aWs +crl +bXC +bXo +bYg +bZk +bTO +cbu +bXc +bUf +bUf +bUf +hxn +hxn +hxn +hxn +hxn +hxn +hxn +jAT +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +ctP +aeU +aeU +coy +aeU +aeU +aeU +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +cko +cko +akA +bhq +ava +bkd +bkd +ava +bkd +aeu +aeu +aeu +cLs +cLs +cLH +cMg +cMt +cME +cMr +cLs +bkd +ava +bkd +bkd +azD +cNG +aBj +akk +bcI +bbn +bbv +bbB +bbE +aMf +aOf +bcd +bbN +bba +bba +biY +bba +bbc +bbc +bbc +bdX +cGT +bgt +bhN +bjf +bkI +bju +bhW +acK +acK +bUG +blE +bkN +bIQ +bll +bOg +blH +blE +bUG +acK +bEg +bEg +bEg +bOc +bWO +bPe +bOc +bOX +bRU +cmr +bRA +crl +bXD +bXt +bYg +bZm +caQ +cbB +bWt +bXd +ccm +cTr +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +cpF +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aUz +aeU +ctQ +aeU +aeU +aeU +aeU +coy +aeU +aaQ +aeo +aeo +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cLr +aku +cLC +cLI +cMu +cMn +aqm +cLs +cbj +cbk +cNn +cMk +clA +bkd +bkd +bbi +bbi +bbi +bbA +bcJ +bdh +aPm +bda +bcf +bbN +bci +aSK +aUl +aVS +aYn +bbN +ccs +bdY +bhH +bhV +bis +bjj +bkL +blh +bhH +aaa +aaa +aaa +aaa +aaa +bnb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +bPe +bfC +bUx +bvo +bPe +bOZ +bRV +bNz +bSn +crl +bRt +bXw +bWM +bPe +bZC +bPe +bOc +bSr +bSd +cgg +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +bUE +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +ctQ +aeU +aeU +aeU +aeU +aeU +aaa +aaQ +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cLs +akD +alu +ams +anq +apq +aqn +cLr +alD +bVG +anQ +bkd +cNC +bkd +acm +aXs +aXK +baX +bbX +bbC +bby +aMg +aOh +bcg +beH +bcR +aSM +aUn +baC +aYp +bcD +bgi +bkd +bhH +bhH +bhW +biS +bhW +bhH +bhH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +bOc +bfE +bVE +bXi +cCH +bPb +bRZ +cmr +bRA +crl +bXy +bXA +bXN +bTG +caS +bTR +bOc +bPJ +bPK +ceX +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +cpF +aeu +aeu +aeu +aUz +aeU +ckg +ckg +ckg +ckg +ckg +ctR +ckg +ckg +ckg +ckg +ckg +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +cLs +cLs +cLr +cLs +cLr +cLs +cLs +cLr +asS +aux +axq +cMx +cNF +cNY +acK +aXs +aXN +bbt +bca +bbD +bbK +aMl +aOn +bcj +bgy +aYc +aSS +aUo +baC +aYr +bbN +ccu +avA +acm +bhW +bit +bjm +bjl +bhW +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acK +bPe +bfF +bVZ +bRs +bPe +bOZ +bSb +cmr +cGz +cro +bRt +bXA +cFE +bTt +caW +bZL +bOc +bPJ +bPJ +bUN +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +aeu +aeu +aeu +aeU +aeU +aeU +coi +ctG +ctG +ctG +ctG +cub +cuo +cuo +cuo +cuo +cCl +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cHa +cHa +cLQ +cNp +cHa +afr +cNg +acm +aXs +baq +bbw +bbX +bbF +bby +aMp +aOo +cOx +beH +bbI +bcb +bcQ +bbN +cbf +bbN +cfi +avA +acm +bhW +biu +bjo +bmW +bhW +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acK +bOc +bfG +bKt +bLG +bRH +bPd +bSc +cmD +cpu +cmD +bXE +bPd +bzl +bZn +caY +bXf +bWO +aeu +bPJ +bUN +hxn +hxn +hxn +hxn +hxn +hxn +hxn +bUN +aeu +aeu +aeu +aeU +aeU +aeU +ckm +ckm +ckm +ckm +ckm +ctQ +ckm +ckm +ckm +ckm +ckm +acm +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeu +aeu +aeu +cHb +asT +auA +axr +cHa +cne +bkd +bkd +bbi +bbi +bbi +bcA +bcM +bbi +bbi +cxQ +bbi +awi +bbN +baC +baC +bcD +aYs +cbk +cna +bkd +bUG +bkc +bhW +bnl +bhW +bkc +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acK +bPe +bfI +bSA +bLK +bPe +bPf +bQZ +bQZ +bRs +bQZ +bWA +bXB +bPe +bZv +bXA +bTU +bOc +aeu +bPJ +bUj +bRv +bRv +bRv +bRv +bRv +bRv +bRv +bUj +aeu +aeu +aeU +aeU +aeU +aeU +cuc +ckk +aaa +aaa +ckk +ctQ +ckk +aaa +aaa +ckk +cuc +aaa +aaa +aaQ +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aUz +aap +aeu +aeu +aeu +cHc +atb +cLU +axt +cHa +cNW +cOg +abD +cMD +cmZ +aFC +bEq +aJm +aFF +cbk +ccs +cMx +cMD +anW +aSV +cor +aVp +aYt +anW +bcy +bkd +aaa +aaa +aaa +blu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +bOc +bPe +bPe +bRx +bTx +bWf +bPe +bPe +bTE +bPe +bPe +bWf +krJ +bWf +bPe +bPe +bOc +aeu +aeu +cfW +cgJ +cgJ +cgJ +cgJ +cgJ +cgJ +cgJ +agt +aeu +aeu +aeU +aeU +aeU +ckg +ckg +ckg +ckg +ckg +ckA +ctQ +ckA +ckg +ckg +ckg +ckg +ckg +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +cHb +ate +auB +axx +cNB +bkd +ava +bkd +cLg +cNW +aFE +cFv +cMx +cMD +axO +cOm +cbj +aio +auz +aSZ +cOo +aVt +aYv +cbm +cue +bkd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +acm +acm +bPe +bLL +bPe +bPg +bPe +acm +acm +acm +bPe +bLL +bPe +bZw +bPe +acm +aeu +aeu +aUz +acm +cmJ +ivg +ivg +cmJ +ivg +ivg +cmJ +acm +aeU +aeU +aeU +aUz +aeU +coi +ctG +ctG +ctG +ctG +ctN +cDs +cBJ +cuo +cuo +cuo +cuo +cCl +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +cui +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeU +aeU +aap +aeu +aeu +cHb +cHb +cLV +cHb +cHb +aeu +aeu +bkd +aze +aAG +cbj +cLt +aJn +cLg +aMq +ava +bkd +bkd +ava +avA +avA +bkd +bBX +bkd +cwC +bkd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +bUG +bPe +bSM +bTl +bXe +bPe +bUG +aaa +bUG +bPe +bXe +bTl +bXe +bPe +bUG +acm +acm +acm +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aeU +aaa +acm +aaa +aeU +ckm +ckm +ckm +ckm +ckm +ckA +ctQ +ckA +ckm +ckm +ckm +ckm +ckm +acm +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aap +coy +aeu +aeu +aeu +aeu +aeu +cLM +auJ +cLM +aeu +aeu +aeu +bkd +ava +ava +bkd +ava +avA +crw +avA +bkd +aeu +aeu +aeu +acm +aaa +acm +aaa +bkd +cwD +bkd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bRQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +acm +aaa +cuc +ckk +aaa +aaa +ckk +ctQ +ckk +aaa +aaa +ckk +cuc +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cLM +cMH +cLM +aeu +aeu +aeu +aeu +aeu +aeu +aeu +bkd +cLK +cLK +afJ +ava +aeu +alm +acm +aaQ +aeo +aeo +acm +acm +acK +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeo +aeo +aeo +acm +aeo +acm +ckg +ckg +ckg +ckg +ckg +ctR +ckg +ckg +ckg +ckg +ckg +acm +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +auN +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +ava +agy +cLR +agy +bkd +aeu +aeU +aaa +acm +aaa +acm +aaa +acm +acK +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cmJ +aaa +aeo +aaa +coi +ctG +cKj +ctG +ctG +cub +cuo +cuo +cuo +cuo +cCl +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +cMT +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +beK +aaa +aaa +aaa +bhq +aeu +aUz +aaa +aaQ +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeo +acm +aeo +acm +ckm +ckm +ckm +ckm +ckm +ctQ +ckm +ckm +ckm +ckm +ckm +acm +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +aeu +aeU +aUz +coy +aeU +aeU +aeU +cMU +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +akA +aaa +aaa +aaa +akA +aeu +aeU +aaa +aeo +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +acm +aaa +acm +aaa +ctR +aaa +acm +aaa +acm +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeU +aeU +aeU +aeU +aeU +aeU +aeU +cMU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +cko +aaa +aaa +aaa +cko +aeu +aeu +aeU +acm +aaa +acK +acm +acK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aeo +aeo +aeo +aeo +acm +acm +ckQ +acm +aaQ +acm +aeo +aeo +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeU +aeU +cGV +cGV +cGV +cGV +cGV +cMV +cGV +cGV +cGV +cGV +cGV +aeU +aeU +aeu +cko +cko +cOd +cko +cko +aeu +aeu +aeu +alm +acm +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aeo +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeU +cGW +bxv +cGZ +cGZ +cGZ +cNj +cNy +cNy +cNy +cNy +cNI +aeU +aeU +aof +bUG +acK +acm +acK +bUG +aeu +aeu +aeu +aeu +aaa +acm +aaa +acm +aaa +aaa +bUG +acm +acK +acK +acK +acm +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aeo +aeo +aeo +acm +acm +aeo +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +aeU +cGX +cGX +cGX +cGX +cGX +cMU +cGX +cGX +cGX +cGX +cGX +aeU +aeU +aeU +aaQ +aaa +aaa +aaa +acm +aeu +aeu +aeu +aeu +aaa +aeo +aaa +acm +acm +acm +aaQ +aeo +aeo +acm +aeo +aeo +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeo +aaa +aaa +anr +ckk +aaa +aaa +ckk +cMU +ckk +aaa +aaa +ckk +anr +aeU +aeU +aUz +alm +aeo +aeo +aaQ +alm +aeu +aeu +aeu +aeu +aeu +aeo +aaa +acm +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeo +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +acm +aaQ +cGV +cGV +cGV +cGV +cGV +cLN +cMU +cLN +cGV +cGV +cGV +cGV +cGV +aeU +aeU +aaQ +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aaQ +aaa +acm +acm +aaQ +aeo +aeo +acm +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeo +aaa +cGW +cGZ +cGZ +cGZ +cGZ +cLO +cDm +cNz +cNy +cNy +cNy +cNy +cNI +aeU +aeU +aeo +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +acm +aaa +acm +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aeo +acm +cGX +cGX +cGX +cGX +cGX +cLN +cMU +cLN +cGX +cGX +cGX +cGX +cGX +aeU +aeU +aeo +aaa +aaa +aaa +aaa +aeu +aeu +aeu +alm +acm +acm +aaa +acm +aaQ +aeo +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +anr +ckk +aaa +aaa +ckk +cMU +ckk +aaa +aaa +ckk +anr +aeU +aeU +aeU +acm +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeU +aaa +acK +acm +acK +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +acm +aaQ +aeo +acm +cGV +cGV +cGV +cGV +cGV +cMV +cGV +cGV +cGV +cGV +cGV +aeU +aeU +aeU +alm +acm +aaQ +aeo +acm +alm +aeu +aeU +aUz +aaa +acm +aaa +aaQ +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeo +aaa +cGW +cGZ +cGZ +cGZ +cGZ +cNj +cNy +cNy +cNy +cNy +cNI +aeU +coy +aof +aeu +aeu +aaa +aaa +aaa +aeu +aeu +aeU +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aeU +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +aaQ +acm +cGX +cGX +cGX +cGX +cGX +cMU +cGX +cGX +cGX +cGX +cGX +aeU +aUz +aeu +aeu +aeu +aeU +aaa +aaa +aeu +aaa +aaa +aaa +aaa +acm +aaa +aeo +acm +aeo +aaQ +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeo +aaa +aaa +acm +aaa +acm +aaa +cMV +aaa +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +cui +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aeo +aaQ +aeo +aeo +aaQ +cNl +acm +acm +acm +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaB +aaa +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aeo +aaa +acm +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeo +aeo +acm +acm +acm +aeo +acm +alm +aeu +aeu +aeu +aeU +aap +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aeu +aeu +aeu +aUz +aeU +aeU +aeu +aeu +alm +acm +aaQ +aeo +aeo +aeo +aaQ +aeo +acm +acK +acm +acK +acm +aaQ +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aeu +aeu +aeu +aeu +aap +aeu +aUz +aeu +aeu +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeo +aeo +acm +aaQ +alm +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +cui +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeU +aeu +aeu +aaa +aaa +aeu +aeu +aeu +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +acm +aaQ +aeo +aeo +aeo +acm +acm +acm +alm +aeu +alm +acm +aeo +aeo +aaQ +aeo +aeo +aeo +acm +acK +acm +acK +acm +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +coy +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +coy +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aeu +alm +aeU +aUz +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +coy +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +coy +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aUz +aeU +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aeU +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +alm +aaQ +aeo +aeo +acm +acK +acm +acK +acm +aeo +aeo +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +acm +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +acm +aaa +aaa +aaa +aaa +aaQ +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaQ +aaa +aaa +aaa +aaa +aaQ +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeo +aaa +aaa +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeo +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aaa +aaa +acm +aaa +aaa +aaa +aaa +acm +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +coy +aeU +aeu +aeu +aeu +aeu +aeu +aaa +aeo +aaa +aaa +aaa +aaa +acK +acm +acK +acm +aeo +aaa +aaa +aaa +aeU +aUz +aeU +aeu +ciQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaQ +aaa +acm +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +acm +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +coy +ciQ +acm +aeo +aaQ +acm +aaa +acm +acm +aaQ +aeo +ciQ +aeu +aeu +aeu +aeU +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +acm +aaa +acm +cbU +ccx +cbU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +coy +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeu +aeu +aeu +aUz +aeu +cco +cbU +ccx +cbU +bVI +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aaa +aeU +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +cbU +cbU +aVC +ccx +aVC +cbU +cbU +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +coy +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +bVH +bVH +aUp +aVI +ccx +ccx +bcz +bVH +caT +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cbU +cbX +ccx +ccx +ccE +ccx +ccF +cGy +cbU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +caT +bVH +aUp +ccx +ccF +ccx +bcz +caT +bVH +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cbU +cbU +aVN +aYy +aVN +cbU +cbU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +coy +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cco +cbU +ccH +cbU +bVI +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cbU +bVH +cbU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aaa +aeu +aeu +aeu +aeu +aeu +bVu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aap +aeu +aeu +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +coy +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bVu +aaa +aaa +aaa +aaa +aaa +aaa +bVu +aeu +aaa +aaa +aeu +aeu +aeu +aaa +aeu +aeu +aeu +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +bVu +aUz +aeU +aeu +aeu +bVu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +bUG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/_maps/shuttles/arrival_kilo.dmm b/_maps/shuttles/arrival_kilo.dmm new file mode 100644 index 0000000000..125f017a2b --- /dev/null +++ b/_maps/shuttles/arrival_kilo.dmm @@ -0,0 +1,558 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/arrival) +"b" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"c" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"d" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"e" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"f" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/arrival) +"g" = ( +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"i" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"j" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/arrows{ + icon_state = "arrows"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"k" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"l" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"m" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"n" = ( +/obj/structure/shuttle/engine/propulsion/left{ + icon_state = "propulsion_l"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"o" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/arrival) +"p" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = 8 + }, +/obj/item/flashlight, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"q" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/arrows{ + icon_state = "arrows"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"r" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/arrows{ + icon_state = "arrows"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"s" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"t" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"u" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/docking_port/mobile/arrivals{ + dir = 4; + name = "kilo arrivals shuttle" + }, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"v" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"w" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/turf_decal/arrows{ + icon_state = "arrows"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"x" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"y" = ( +/obj/machinery/requests_console{ + department = "Arrival shuttle"; + name = "Arrivals Shuttle console" + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"z" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/arrival) +"A" = ( +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + use_power = 0 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"B" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"C" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"D" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"E" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"F" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"G" = ( +/obj/structure/shuttle/engine/propulsion/right{ + icon_state = "propulsion_r"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"H" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"I" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"J" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"K" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"L" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"M" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"N" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"O" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"P" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"Q" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) + +(1,1,1) = {" +a +a +n +u +G +a +a +"} +(2,1,1) = {" +b +h +o +o +o +h +b +"} +(3,1,1) = {" +c +i +p +v +H +i +c +"} +(4,1,1) = {" +d +j +r +x +I +O +f +"} +(5,1,1) = {" +e +l +s +B +J +P +e +"} +(6,1,1) = {" +f +k +s +y +J +N +f +"} +(7,1,1) = {" +f +k +s +z +J +N +f +"} +(8,1,1) = {" +f +k +s +A +J +N +f +"} +(9,1,1) = {" +c +m +s +B +J +Q +c +"} +(10,1,1) = {" +d +q +w +C +K +x +f +"} +(11,1,1) = {" +b +c +c +D +L +c +b +"} +(12,1,1) = {" +c +e +t +E +M +e +c +"} +(13,1,1) = {" +g +c +k +F +N +c +g +"} +(14,1,1) = {" +g +c +f +f +f +c +g +"} diff --git a/_maps/shuttles/cargo_kilo.dmm b/_maps/shuttles/cargo_kilo.dmm new file mode 100644 index 0000000000..6d9d543842 --- /dev/null +++ b/_maps/shuttles/cargo_kilo.dmm @@ -0,0 +1,391 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"b" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"c" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"d" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"e" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"f" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"g" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"h" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"i" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad"; + name = "off ramp" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"j" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/supply) +"k" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"l" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"m" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/obj/effect/decal/cleanable/dirt, +/obj/docking_port/mobile/supply{ + dir = 4; + dwidth = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/supply) +"n" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"o" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"p" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Off Ramp Toggle"; + pixel_x = -24; + pixel_y = 6; + req_access_txt = "31" + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "On Ramp Toggle"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "31" + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"q" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"r" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/supply) +"s" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"t" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"u" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/supply) +"v" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"w" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"x" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"y" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"z" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/supply) +"A" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/supply) +"B" = ( +/turf/template_noop, +/area/template_noop) +"C" = ( +/obj/structure/shuttle/engine/propulsion/burst/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"D" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"E" = ( +/obj/structure/shuttle/engine/propulsion/burst/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) + +(1,1,1) = {" +a +a +a +i +m +a +r +t +a +a +a +B +"} +(2,1,1) = {" +a +b +e +j +f +p +n +u +v +y +a +C +"} +(3,1,1) = {" +a +c +o +g +k +g +o +g +s +e +A +D +"} +(4,1,1) = {" +a +c +g +g +g +g +g +g +g +z +A +D +"} +(5,1,1) = {" +a +c +g +g +g +g +g +g +w +x +A +D +"} +(6,1,1) = {" +a +d +h +l +h +q +h +l +x +y +a +E +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +B +"} diff --git a/_maps/shuttles/emergency_kilo.dmm b/_maps/shuttles/emergency_kilo.dmm new file mode 100644 index 0000000000..5187c34a3b --- /dev/null +++ b/_maps/shuttles/emergency_kilo.dmm @@ -0,0 +1,2095 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"ac" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/escape) +"ad" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ae" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/communications, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"af" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/emergency_shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ag" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/crew, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ah" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/obj/item/crowbar, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ai" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"aj" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ak" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"al" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"am" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/box/corners{ + icon_state = "box_corners"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"an" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/restraints/handcuffs, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/assembly/flash/handheld, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ao" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/shuttle{ + name = "External Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ap" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/crowbar/red, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"ar" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/recharger, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"as" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"at" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"au" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/blue, +/obj/item/gun/energy/e_gun/mini, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"av" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ax" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"ay" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"az" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aD" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"aE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/shuttle{ + name = "External Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aI" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_one_access_txt = "19" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aL" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aM" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/command{ + name = "Shuttle Control"; + req_one_access_txt = "19" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aO" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"aQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"aR" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"aU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "applebush" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"aY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"aZ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"ba" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bb" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock"; + req_one_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"bd" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"be" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"bf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/zipties{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape) +"bg" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"bh" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"bi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bj" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"bk" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"bl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_access_txt = "2" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bo" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -4 + }, +/obj/item/tank/internals/air{ + pixel_x = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/breath, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bp" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bq" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/docking_port/mobile/emergency{ + name = "Kilo emergency shuttle" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"br" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bv" = ( +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"by" = ( +/obj/structure/sign/departments/engineering{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bN" = ( +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + use_power = 0 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"bO" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"bP" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"bQ" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"bR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bX" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"bZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ca" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"ce" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cf" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cg" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ch" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "applebush" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"ci" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cj" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"ck" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"cl" = ( +/obj/structure/closet/crate{ + name = "emergency supplies crate" + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cm" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"cn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/medical/glass{ + name = "Shuttle Infirmary" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"co" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"cq" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"cr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"cs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"ct" = ( +/obj/structure/closet/crate/medical{ + name = "medical crate" + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/healthanalyzer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lazarus_injector, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/medbot{ + name = "\improper emergency medibot"; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cy" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/recharge_station, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"cB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"cC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cD" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -1 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cJ" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cK" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/escape) +"cL" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"cM" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/structure/chair/office/light, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/chair/office/light, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cR" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/hemostat, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/escape) +"cS" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/escape) +"cT" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"cU" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/escape) +"cV" = ( +/obj/structure/table, +/obj/item/defibrillator/compact/loaded, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cW" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cX" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = -6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cY" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"cZ" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"da" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"db" = ( +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/item/retractor, +/obj/item/cautery, +/turf/open/floor/plasteel/dark, +/area/shuttle/escape) +"dc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/command{ + name = "Shuttle Control"; + req_one_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"dd" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"de" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"df" = ( +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"dg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"dh" = ( +/obj/structure/shuttle/engine/heater, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/escape) +"di" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/shuttle/engine/large, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"dj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"zk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"Vm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"WN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) + +(1,1,1) = {" +aa +aa +ab +ac +ab +ac +ai +bb +ab +bq +ab +ac +ac +ac +ab +bX +ab +bX +ai +ab +as +cS +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +ac +ap +az +az +aS +bc +ac +bD +bB +bI +bI +bI +bB +bx +ac +cj +cr +cC +cK +cT +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +ab +aq +aA +aA +aA +bd +bm +bs +bC +bJ +bM +bJ +bS +zk +cf +ck +cs +cD +cL +cU +cS +cS +aa +"} +(4,1,1) = {" +aa +aa +ac +ar +aA +aA +aA +be +ac +bt +Vm +bK +bN +bu +bD +bK +ac +cl +ct +as +ab +ab +as +cS +cS +"} +(5,1,1) = {" +ab +ac +ai +as +aC +aI +aT +bf +ab +bu +bD +bK +bO +bu +bD +bZ +as +ab +bg +as +cM +cV +cK +dg +di +"} +(6,1,1) = {" +ac +ad +aj +as +aD +aJ +ac +as +as +bv +bD +bK +bP +bu +bD +bK +cg +cm +cu +cE +cN +cW +cK +dg +dj +"} +(7,1,1) = {" +ac +ae +ak +at +aE +aK +aU +bg +bn +bw +br +bK +bQ +bu +bT +ca +bC +cn +cv +cH +cO +cX +cL +dh +de +"} +(8,1,1) = {" +ac +af +al +au +aF +aL +aV +dc +df +bx +bF +bL +bL +bL +bU +cb +ch +ac +cw +cG +cP +cY +ab +cS +cS +"} +(9,1,1) = {" +ac +ag +am +av +aG +aM +aW +bh +bo +bt +Vm +bK +bN +bu +bV +cc +bY +cn +cx +WN +cP +cZ +cL +dh +dd +"} +(10,1,1) = {" +ac +ah +an +as +as +aN +ab +as +as +by +bD +bK +bO +bu +bD +bK +ci +cm +cy +cI +cQ +da +cK +dg +di +"} +(11,1,1) = {" +ab +ac +ai +as +as +aO +aX +bi +ab +bu +bD +bK +bP +bu +bD +bZ +as +ab +bg +as +cR +db +cK +dg +dj +"} +(12,1,1) = {" +aa +aa +ab +aw +ac +aP +aY +bj +ac +bw +br +bK +bQ +bu +bD +bK +ac +co +cz +as +ab +ab +as +cS +cS +"} +(13,1,1) = {" +aa +aa +ao +ax +aH +aQ +aZ +bk +bp +bz +bY +bJ +bR +bJ +bW +cd +cf +cp +cA +cJ +cL +cU +cS +cS +aa +"} +(14,1,1) = {" +aa +aa +ab +ay +ac +aR +ba +bl +ac +bA +bH +bl +bl +bl +bH +ce +ac +cq +cB +aR +cK +cT +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +ab +ab +ab +ac +ai +ac +ab +ac +ab +ac +ac +ac +ab +ac +ab +ab +ai +ab +as +cS +aa +aa +aa +"} diff --git a/_maps/shuttles/ferry_kilo.dmm b/_maps/shuttles/ferry_kilo.dmm new file mode 100644 index 0000000000..744d09d373 --- /dev/null +++ b/_maps/shuttles/ferry_kilo.dmm @@ -0,0 +1,293 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/transport) +"c" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/transport) +"d" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/transport) +"e" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/transport) +"f" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"g" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/transport) +"h" = ( +/obj/structure/shuttle/engine/propulsion/left{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"i" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/transport) +"j" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/transport) +"k" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/obj/item/crowbar, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"l" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"m" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"n" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"o" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"p" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"q" = ( +/obj/machinery/computer/shuttle/ferry/request{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"r" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"s" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"t" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 11; + id = "ferry"; + name = "ferry shuttle"; + preferred_direction = 4; + width = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"u" = ( +/obj/structure/shuttle/engine/propulsion/right{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"v" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"w" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"x" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) + +(1,1,1) = {" +a +h +p +u +a +"} +(2,1,1) = {" +b +i +i +i +b +"} +(3,1,1) = {" +c +j +q +j +c +"} +(4,1,1) = {" +d +k +r +v +d +"} +(5,1,1) = {" +e +l +r +w +e +"} +(6,1,1) = {" +d +l +r +w +d +"} +(7,1,1) = {" +f +m +s +m +f +"} +(8,1,1) = {" +g +n +r +n +g +"} +(9,1,1) = {" +e +l +r +w +e +"} +(10,1,1) = {" +d +o +r +x +d +"} +(11,1,1) = {" +d +e +t +e +d +"} diff --git a/_maps/shuttles/labour_kilo.dmm b/_maps/shuttles/labour_kilo.dmm new file mode 100644 index 0000000000..9ee9a38f07 --- /dev/null +++ b/_maps/shuttles/labour_kilo.dmm @@ -0,0 +1,312 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/labor) +"b" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"c" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -31 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"d" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"e" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"f" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"g" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"h" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 2; + pixel_x = 30; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"i" = ( +/obj/machinery/door/airlock/titanium{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"j" = ( +/obj/machinery/door/airlock/titanium{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"k" = ( +/obj/machinery/mineral/stacking_machine/laborstacker{ + input_dir = 2; + output_dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"l" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"m" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"n" = ( +/obj/machinery/mineral/labor_claim_console{ + machinedir = 1; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"o" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"p" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"q" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"r" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/labor) +"s" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/labor) +"t" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/labor) +"u" = ( +/obj/machinery/door/airlock/titanium{ + id_tag = "prisonshuttle"; + name = "Labor Shuttle Airlock" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "labor camp shuttle"; + port_direction = 4; + width = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/labor) +"v" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/labor) +"w" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/labor) +"x" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/labor) +"y" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) + +(1,1,1) = {" +a +a +b +a +b +a +b +v +x +"} +(2,1,1) = {" +b +c +f +j +l +o +r +w +y +"} +(3,1,1) = {" +b +d +g +a +m +p +s +w +y +"} +(4,1,1) = {" +b +e +h +k +n +q +t +w +y +"} +(5,1,1) = {" +a +a +i +a +a +a +u +v +x +"} diff --git a/_maps/shuttles/mining_kilo.dmm b/_maps/shuttles/mining_kilo.dmm new file mode 100644 index 0000000000..1de45c713c --- /dev/null +++ b/_maps/shuttles/mining_kilo.dmm @@ -0,0 +1,242 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/mining) +"b" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/mining) +"c" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"d" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"e" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"f" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/mining) +"g" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"h" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/mining) +"i" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/mining) +"j" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/mining) +"k" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + port_direction = 4; + width = 7 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + icon_state = "pipe11-2"; + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"l" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/mining) +"m" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/mining) +"n" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium, +/area/shuttle/mining) +"o" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/mining) +"p" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + icon_state = "pipe11-2"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/mining) +"q" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"r" = ( +/obj/structure/ore_box, +/obj/machinery/light/small, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) + +(1,1,1) = {" +a +a +b +a +b +a +a +"} +(2,1,1) = {" +a +c +f +j +g +q +n +"} +(3,1,1) = {" +b +d +h +m +g +l +o +"} +(4,1,1) = {" +a +e +i +p +g +r +n +"} +(5,1,1) = {" +a +a +b +k +b +a +a +"} diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm index 2b76850b44..779de8ff03 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -287,6 +287,12 @@ credit_cost = 4000 description = "A fairly standard shuttle, though larger and slightly better equipped than the Box Station variant." +/datum/map_template/shuttle/emergency/kilo + suffix = "kilo" + name = "Kilo Station Emergency Shuttle" + credit_cost = 5000 + description = "A fully functional shuttle including a complete infirmary, storage facilties and regular amenities." + /datum/map_template/shuttle/emergency/mini suffix = "mini" name = "Ministation emergency shuttle" @@ -419,6 +425,11 @@ name = "fancy transport ferry" description = "At some point, someone upgraded the ferry to have fancier flooring... and less seats." +/datum/map_template/shuttle/ferry/kilo + suffix = "kilo" + name = "kilo transport ferry" + description = "Standard issue CentCom Ferry for Kilo pattern stations. Includes additional equipment and rechargers." + /datum/map_template/shuttle/whiteship/box suffix = "box" name = "Hospital Ship" @@ -447,6 +458,10 @@ suffix = "box" name = "supply shuttle (Box)" +/datum/map_template/shuttle/cargo/kilo + suffix = "kilo" + name = "supply shuttle (Kilo)" + /datum/map_template/shuttle/cargo/birdboat suffix = "birdboat" name = "supply shuttle (Birdboat)" @@ -481,6 +496,10 @@ suffix = "box" name = "labour shuttle (Box)" +/datum/map_template/shuttle/labour/kilo + suffix = "kilo" + name = "labour shuttle (Kilo)" + /datum/map_template/shuttle/infiltrator/basic suffix = "basic" name = "basic syndicate infiltrator" @@ -493,6 +512,10 @@ suffix = "delta" name = "mining shuttle (Delta)" +/datum/map_template/shuttle/mining/kilo + suffix = "kilo" + name = "mining shuttle (Kilo)" + /datum/map_template/shuttle/labour/delta suffix = "delta" name = "labour shuttle (Delta)" @@ -501,10 +524,18 @@ suffix = "meta" name = "lavaland shuttle (Meta)" +/datum/map_template/shuttle/labour/kilo + suffix = "kilo" + name = "labour shuttle (Kilo)" + /datum/map_template/shuttle/arrival/delta suffix = "delta" name = "arrival shuttle (Delta)" +/datum/map_template/shuttle/arrival/kilo + suffix = "kilo" + name = "arrival shuttle (Kilo)" + /datum/map_template/shuttle/arrival/pubby suffix = "pubby" name = "arrival shuttle (Pubby)" @@ -559,4 +590,4 @@ /datum/map_template/shuttle/snowdin/excavation suffix = "excavation" - name = "Snowdin Excavation Elevator" \ No newline at end of file + name = "Snowdin Excavation Elevator" diff --git a/code/game/area/Space_Station_13_areas.dm b/code/game/area/Space_Station_13_areas.dm index ad4c0c232d..5546f564b5 100644 --- a/code/game/area/Space_Station_13_areas.dm +++ b/code/game/area/Space_Station_13_areas.dm @@ -1245,6 +1245,22 @@ NOTE: there are two lists of areas in the end of this file: centcom and station icon_state = "storage_wing" +// Vacant Rooms + +/area/vacant_room + name = "Vacant Room" + ambientsounds = MAINTENANCE + icon_state = "vacant_room" + +/area/vacant_room/office + name = "Vacant Office" + icon_state = "vacant_room" + +/area/vacant_room/commissary + name = "Vacant Commissary" + icon_state = "vacant_room" + + //AI /area/ai_monitored/security/armory diff --git a/config/maps.txt b/config/maps.txt index 6792cb9468..4bd2b1ce8a 100644 --- a/config/maps.txt +++ b/config/maps.txt @@ -40,4 +40,7 @@ map runtimestation endmap map multiz_debug +endmap + +map kilostation endmap \ No newline at end of file diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index aad3e78590e9d275cf62bee4a4e1bea67b2ef47a..9e37bb1a000814b881021782f7522b50ce9714e3 100644 GIT binary patch delta 10948 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 SST>*R?~$6$eT0ft`2PVn61x!q delta 10100 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 woaQted(Mk#WyP3Q-;2t=p Date: Thu, 20 Feb 2020 02:40:34 -0500 Subject: [PATCH 040/175] corrections --- code/modules/projectiles/ammunition/caseless/arrow.dm | 2 +- code/modules/projectiles/guns/ballistic/bow.dm | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/code/modules/projectiles/ammunition/caseless/arrow.dm b/code/modules/projectiles/ammunition/caseless/arrow.dm index 57f47e2ad9..df4941aa6a 100644 --- a/code/modules/projectiles/ammunition/caseless/arrow.dm +++ b/code/modules/projectiles/ammunition/caseless/arrow.dm @@ -10,7 +10,7 @@ /obj/item/ammo_casing/caseless/arrow/ashen name = "ashen arrow" desc = "Fire harderned wooden arrow." - icon_state = "asharrow" + icon_state = "ashenarrow" projectile_type = /obj/item/projectile/bullet/reusable/arrow/ashen /obj/item/ammo_casing/caseless/arrow/bone diff --git a/code/modules/projectiles/guns/ballistic/bow.dm b/code/modules/projectiles/guns/ballistic/bow.dm index 540ea722b9..0fc181f71c 100644 --- a/code/modules/projectiles/guns/ballistic/bow.dm +++ b/code/modules/projectiles/guns/ballistic/bow.dm @@ -22,11 +22,9 @@ /obj/item/gun/ballistic/bow/chamber_round() chambered = magazine.get_round(1) -/obj/item/gun/ballistic/bow/afterattack() - . = ..() - if (chambered) - chambered = null - magazine.get_round(0) +/obj/item/gun/ballistic/bow/process_chamber() + chambered = null + magazine.get_round(0) update_icon() /obj/item/gun/ballistic/bow/attack_self(mob/living/user) @@ -47,7 +45,7 @@ update_icon() /obj/item/gun/ballistic/bow/update_icon() - icon_state = "bow_[get_ammo() ? (chambered ? "firing" : "loaded") : "unloaded"]" + icon_state = "[initial(icon_state)]_[get_ammo() ? (chambered ? "firing" : "loaded") : "unloaded"]" /obj/item/gun/ballistic/bow/can_shoot() return chambered From 38f243e1c29ad389b2e7cf55991fe1e432d32181 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Thu, 20 Feb 2020 22:15:32 -0500 Subject: [PATCH 041/175] Update language_holder.dm --- code/modules/language/language_holder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/language/language_holder.dm b/code/modules/language/language_holder.dm index f8934549d0..b307e66b39 100644 --- a/code/modules/language/language_holder.dm +++ b/code/modules/language/language_holder.dm @@ -138,7 +138,7 @@ /datum/language_holder/synthetic languages = list(/datum/language/common) - shadow_languages = list(/datum/language/common, /datum/language/machine, /datum/language/draconic, /datum/language/slime) + shadow_languages = list(/datum/language/common, /datum/language/machine, /datum/language/draconic, /datum/language/slime, /datum/language/dwarf) /datum/language_holder/empty languages = list() From a8f863f90183670f317b3498036c0b57264bb401 Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Thu, 20 Feb 2020 22:17:47 -0600 Subject: [PATCH 042/175] changes - sprites --- code/__DEFINES/jobs.dm | 22 +++++---- code/datums/traits/negative.dm | 2 + code/game/machinery/computer/crew.dm | 3 +- code/game/objects/effects/landmarks.dm | 6 ++- code/modules/clothing/under/jobs/medsci.dm | 17 +++++++ .../modules/events/wizard/departmentrevolt.dm | 2 +- code/modules/jobs/access.dm | 2 +- code/modules/jobs/job_types/paramedic.dm | 45 +++++++++++++++++++ code/modules/jobs/job_types/psychologist.dm | 36 +++++++++++++++ code/modules/jobs/jobs.dm | 2 + config/jobs.txt | 3 +- strings/ion_laws.json | 4 +- tgstation.dme | 2 + 13 files changed, 131 insertions(+), 15 deletions(-) create mode 100644 code/modules/jobs/job_types/paramedic.dm create mode 100644 code/modules/jobs/job_types/psychologist.dm diff --git a/code/__DEFINES/jobs.dm b/code/__DEFINES/jobs.dm index 9bc8127c3d..52642ffe48 100644 --- a/code/__DEFINES/jobs.dm +++ b/code/__DEFINES/jobs.dm @@ -23,6 +23,8 @@ #define DOCTOR (1<<4) #define GENETICIST (1<<5) #define VIROLOGIST (1<<6) +#define PSYCH (1<<7) +#define PARAMEDIC (1<<8) #define CIVILIAN (1<<2) @@ -78,12 +80,14 @@ #define JOB_DISPLAY_ORDER_CHEMIST 21 #define JOB_DISPLAY_ORDER_GENETICIST 22 #define JOB_DISPLAY_ORDER_VIROLOGIST 23 -#define JOB_DISPLAY_ORDER_RESEARCH_DIRECTOR 24 -#define JOB_DISPLAY_ORDER_SCIENTIST 25 -#define JOB_DISPLAY_ORDER_ROBOTICIST 26 -#define JOB_DISPLAY_ORDER_HEAD_OF_SECURITY 27 -#define JOB_DISPLAY_ORDER_WARDEN 28 -#define JOB_DISPLAY_ORDER_DETECTIVE 29 -#define JOB_DISPLAY_ORDER_SECURITY_OFFICER 30 -#define JOB_DISPLAY_ORDER_AI 31 -#define JOB_DISPLAY_ORDER_CYBORG 32 +#define JOB_DISPLAY_ORDER_PSYCH 24 +#define JOB_DISPLAY_ORDER_PARAMEDIC 25 +#define JOB_DISPLAY_ORDER_RESEARCH_DIRECTOR 26 +#define JOB_DISPLAY_ORDER_SCIENTIST 27 +#define JOB_DISPLAY_ORDER_ROBOTICIST 28 +#define JOB_DISPLAY_ORDER_HEAD_OF_SECURITY 29 +#define JOB_DISPLAY_ORDER_WARDEN 30 +#define JOB_DISPLAY_ORDER_DETECTIVE 31 +#define JOB_DISPLAY_ORDER_SECURITY_OFFICER 32 +#define JOB_DISPLAY_ORDER_AI 33 +#define JOB_DISPLAY_ORDER_CYBORG 34 diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index b19c6a71f7..7868bad458 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -52,6 +52,8 @@ heirloom_type = pick(/obj/item/cultivator, /obj/item/reagent_containers/glass/bucket, /obj/item/storage/bag/plants, /obj/item/toy/plush/beeplushie) if("Medical Doctor") heirloom_type = /obj/item/healthanalyzer/advanced + if("Paramedic") + heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/bodybag) if("Station Engineer") heirloom_type = /obj/item/wirecutters/brass if("Atmospheric Technician") diff --git a/code/game/machinery/computer/crew.dm b/code/game/machinery/computer/crew.dm index f6d0fcfc0d..01a1d043a2 100644 --- a/code/game/machinery/computer/crew.dm +++ b/code/game/machinery/computer/crew.dm @@ -40,6 +40,7 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new) jobs["Geneticist"] = 22 jobs["Virologist"] = 23 jobs["Medical Doctor"] = 24 + jobs["Paramedic"] = 25 jobs["Research Director"] = 30 jobs["Scientist"] = 31 jobs["Roboticist"] = 32 @@ -207,4 +208,4 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new) if ("select_person") AI.ai_camera_track(params["name"]) -#undef SENSORS_UPDATE_PERIOD \ No newline at end of file +#undef SENSORS_UPDATE_PERIOD diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index 8f09827bd2..621f67554e 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -151,6 +151,10 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark) name = "Medical Doctor" icon_state = "Medical Doctor" +/obj/effect/landmark/start/paramedic + name = "Paramedic" + icon_state = "Paramedic" + /obj/effect/landmark/start/scientist name = "Scientist" icon_state = "Scientist" @@ -485,4 +489,4 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/start/new_player) // Landmark for the mining station /obj/effect/landmark/stationroom/lavaland/station templates = list("Public Mining Base" = 3) - icon = 'icons/rooms/Lavaland/Mining.dmi' \ No newline at end of file + icon = 'icons/rooms/Lavaland/Mining.dmi' diff --git a/code/modules/clothing/under/jobs/medsci.dm b/code/modules/clothing/under/jobs/medsci.dm index c27882aac7..666501282a 100644 --- a/code/modules/clothing/under/jobs/medsci.dm +++ b/code/modules/clothing/under/jobs/medsci.dm @@ -158,6 +158,23 @@ can_adjust = FALSE fitted = FEMALE_UNIFORM_TOP +/obj/item/clothing/under/rank/medical/paramedic + desc = "It's made of a special fiber that provides minor protection against biohazards. It has a dark blue cross on the chest denoting that the wearer is a trained paramedic." + name = "paramedic jumpsuit" + icon_state = "paramedic" + item_state = "w_suit" + permeability_coefficient = 0.5 + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) + +/obj/item/clothing/under/rank/medical/paramedic/skirt + name = "paramedic jumpskirt" + desc = "It's made of a special fiber that provides minor protection against biohazards. It has a dark blue cross on the chest denoting that the wearer is a trained paramedic." + icon_state = "paramedic_skirt" + item_state = "w_suit" + body_parts_covered = CHEST|GROIN|ARMS + can_adjust = FALSE + fitted = FEMALE_UNIFORM_TOP + /obj/item/clothing/under/rank/nursesuit desc = "It's a jumpsuit commonly worn by nursing staff in the medical department." name = "nurse's suit" diff --git a/code/modules/events/wizard/departmentrevolt.dm b/code/modules/events/wizard/departmentrevolt.dm index 67e96455f0..ce6b4802fa 100644 --- a/code/modules/events/wizard/departmentrevolt.dm +++ b/code/modules/events/wizard/departmentrevolt.dm @@ -19,7 +19,7 @@ jobs_to_revolt = list("Assistant") nation_name = pick("Assa", "Mainte", "Tunnel", "Gris", "Grey", "Liath", "Grigio", "Ass", "Assi") if("white") - jobs_to_revolt = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Virologist") + jobs_to_revolt = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Paramedic", "Psychologist", "Virologist") nation_name = pick("Mede", "Healtha", "Recova", "Chemi", "Geneti", "Viro", "Psych") if("yellow") jobs_to_revolt = list("Chief Engineer", "Station Engineer", "Atmospheric Technician") diff --git a/code/modules/jobs/access.dm b/code/modules/jobs/access.dm index 81f47b9a1e..087cce2942 100644 --- a/code/modules/jobs/access.dm +++ b/code/modules/jobs/access.dm @@ -357,7 +357,7 @@ /proc/get_all_jobs() return list("Assistant", "Captain", "Head of Personnel", "Bartender", "Cook", "Botanist", "Quartermaster", "Cargo Technician", "Shaft Miner", "Clown", "Mime", "Janitor", "Curator", "Lawyer", "Chaplain", "Chief Engineer", "Station Engineer", - "Atmospheric Technician", "Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Virologist", + "Atmospheric Technician", "Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Virologist", "Psychologist", "Paramedic", "Research Director", "Scientist", "Roboticist", "Head of Security", "Warden", "Detective", "Security Officer") /proc/get_all_job_icons() //For all existing HUD icons diff --git a/code/modules/jobs/job_types/paramedic.dm b/code/modules/jobs/job_types/paramedic.dm new file mode 100644 index 0000000000..5c1b219824 --- /dev/null +++ b/code/modules/jobs/job_types/paramedic.dm @@ -0,0 +1,45 @@ +/datum/job/paramedic + title = "Paramedic" + flag = PARAMEDIC + department_head = list("Chief Medical Officer") + department_flag = MEDSCI + faction = "Station" + total_positions = 3 + spawn_positions = 2 + supervisors = "the chief medical officer" + selection_color = "#74b5e0" + + outfit = /datum/outfit/job/paramedic + + access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) + minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_CLONING, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) + + display_order = JOB_DISPLAY_ORDER_PARAMEDIC + +/datum/outfit/job/paramedic + name = "Paramedic" + jobtype = /datum/job/paramedic + + ears = /obj/item/radio/headset/headset_med + gloves = /obj/item/clothing/gloves/color/latex/nitrile + uniform = /obj/item/clothing/under/rank/medical/paramedic + mask = /obj/item/clothing/mask/surgical + shoes = /obj/item/clothing/shoes/jackboots + head = /obj/item/clothing/head/soft/emt + suit = /obj/item/clothing/suit/toggle/labcoat/emt + belt = /obj/item/storage/belt/medical + l_hand = /obj/item/storage/firstaid/regular + suit_store = /obj/item/flashlight/pen + id = /obj/item/card/id + r_pocket = /obj/item/pinpointer/crew + l_pocket = /obj/item/pda/medical + backpack_contents = list(/obj/item/roller=1) + pda_slot = ITEM_SLOT_LPOCKET + + backpack = /obj/item/storage/backpack/medic + satchel = /obj/item/storage/backpack/satchel/med + duffelbag = /obj/item/storage/backpack/duffelbag/med + + backpack_contents = list(/obj/item/storage/hypospraykit/regular) + + chameleon_extras = /obj/item/gun/syringe diff --git a/code/modules/jobs/job_types/psychologist.dm b/code/modules/jobs/job_types/psychologist.dm new file mode 100644 index 0000000000..da1a290fbd --- /dev/null +++ b/code/modules/jobs/job_types/psychologist.dm @@ -0,0 +1,36 @@ +/datum/job/psych + title = "Psychologist" + flag = PSYCH + department_head = list("Chief Medical Officer") + department_flag = MEDSCI + faction = "Station" + total_positions = 1 + spawn_positions = 1 + supervisors = "the chief medical officer" + selection_color = "#74b5e0" + + outfit = /datum/outfit/job/psych + + access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM) + minimal_access = list(ACCESS_MEDICAL, ACCESS_SURGERY, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM) + + display_order = JOB_DISPLAY_ORDER_PSYCH + +/datum/outfit/job/psych + name = "Psychologist" + jobtype = /datum/job/psych + + ears = /obj/item/radio/headset/headset_med + uniform = /obj/item/clothing/under/suit_jacket/green + shoes = /obj/item/clothing/shoes/laceup + l_hand = /obj/item/storage/briefcase/medical + r_hand = /obj/item/clipboard + l_pocket = /obj/item/laser_pointer + r_pocket = /obj/item/pda/medical + pda_slot = ITEM_SLOT_RPOCKET + + backpack = /obj/item/storage/backpack/medic + satchel = /obj/item/storage/backpack/satchel/med + duffelbag = /obj/item/storage/backpack/duffelbag/med + + chameleon_extras = /obj/item/gun/syringe diff --git a/code/modules/jobs/jobs.dm b/code/modules/jobs/jobs.dm index 92fd25a811..2d95b4b3c6 100644 --- a/code/modules/jobs/jobs.dm +++ b/code/modules/jobs/jobs.dm @@ -18,6 +18,8 @@ GLOBAL_LIST_INIT(medical_positions, list( "Medical Doctor", "Geneticist", "Virologist", + "Psychologist", + "Paramedic", "Chemist")) diff --git a/config/jobs.txt b/config/jobs.txt index a0c1ffa970..1bf271763b 100644 --- a/config/jobs.txt +++ b/config/jobs.txt @@ -31,6 +31,7 @@ Station Engineer=5,5 Atmospheric Technician=3,2 Medical Doctor=5,3 +Paramedic=2,2 Chemist=2,2 Geneticist=2,2 Virologist=1,1 @@ -43,4 +44,4 @@ Detective=1,1 Security Officer=5,5 AI=0,1 -Cyborg=0,1 \ No newline at end of file +Cyborg=0,1 diff --git a/strings/ion_laws.json b/strings/ion_laws.json index 1c28d5d5e5..e85d20b7c0 100644 --- a/strings/ion_laws.json +++ b/strings/ion_laws.json @@ -331,7 +331,9 @@ "BOTANISTS", "RESEARCH DIRECTORS", "CHIEF MEDICAL OFFICERS", - "MEDICAL DOCTORS", + "MEDICAL DOCTORS", + "PARAMEDICS", + "PSYCHOLOGISTS", "CHEMISTS", "GENETICISTS", "VIROLOGISTS", diff --git a/tgstation.dme b/tgstation.dme index 456d1ad969..41b45e69cd 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1972,6 +1972,8 @@ #include "code\modules\jobs\job_types\lawyer.dm" #include "code\modules\jobs\job_types\medical_doctor.dm" #include "code\modules\jobs\job_types\mime.dm" +#include "code\modules\jobs\job_types\paramedic.dm" +#include "code\modules\jobs\job_types\psychologist.dm" #include "code\modules\jobs\job_types\quartermaster.dm" #include "code\modules\jobs\job_types\research_director.dm" #include "code\modules\jobs\job_types\roboticist.dm" From 07222cfd9af04b8600099b6cf4218a4fa3b6e0bd Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Thu, 20 Feb 2020 22:21:25 -0600 Subject: [PATCH 043/175] *snap --- code/controllers/subsystem/shuttle.dm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 7eff8b9e3c..5952c77298 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -55,7 +55,6 @@ SUBSYSTEM_DEF(shuttle) var/lockdown = FALSE //disallow transit after nuke goes off - var/auto_call = 72000 //CIT CHANGE - time before in deciseconds in which the shuttle is auto called. Default is 2ish hours plus 15 for the shuttle. So total is 3. var/realtimeofstart = 0 /datum/controller/subsystem/shuttle/Initialize(timeofday) @@ -78,7 +77,6 @@ SUBSYSTEM_DEF(shuttle) if(!supply) WARNING("No /obj/docking_port/mobile/supply placed on the map!") realtimeofstart = world.realtime - auto_call = CONFIG_GET(number/auto_transfer_delay) return ..() /datum/controller/subsystem/shuttle/proc/initial_load() @@ -643,10 +641,10 @@ SUBSYSTEM_DEF(shuttle) QDEL_LIST(remove_images) -/datum/controller/subsystem/shuttle/proc/autoEnd() //CIT CHANGE - allows shift to end after 2 hours have passed. - if((world.realtime - SSshuttle.realtimeofstart) > auto_call && EMERGENCY_IDLE_OR_RECALLED) //2 hours +/datum/controller/subsystem/shuttle/proc/autoEnd() //CIT CHANGE - allows shift to end without being a proper shuttle call? + if(EMERGENCY_IDLE_OR_RECALLED) SSshuttle.emergency.request(silent = TRUE) priority_announce("The shift has come to an end and the shuttle called. [seclevel2num(get_security_level()) == SEC_LEVEL_RED ? "Red Alert state confirmed: Dispatching priority shuttle. " : "" ]It will arrive in [emergency.timeLeft(600)] minutes.", null, "shuttlecalled", "Priority") - log_game("Round time limit reached. Shuttle has been auto-called.") - message_admins("Round time limit reached. Shuttle called.") + log_game("Round end vote passed. Shuttle has been auto-called.") + message_admins("Round end vote passed. Shuttle has been auto-called.") emergencyNoRecall = TRUE From b7baa6fad8ced44af6231c85d8d242d5649ee250 Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Thu, 20 Feb 2020 22:30:55 -0600 Subject: [PATCH 044/175] sprite changes --- icons/mob/hud.dmi | Bin 17871 -> 18046 bytes icons/mob/landmarks.dmi | Bin 25137 -> 27103 bytes icons/mob/uniform.dmi | Bin 387484 -> 389315 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index 8ea155256cf1f0fe576c5ad6a0e01b8d93454871..58209a312ba88da1dd0ffeec7b84a1bbcbb5aaa3 100644 GIT binary patch literal 18046 zcmchDh=PD1iin5`h)5F2aWEhmBxi;ol0kB2Fd|uo97iPyl5?B^6v;U= zz#usdVTLp?;cdS6cX#i;cke#?$L{hx{hV{Ed%CNu>r~bGR2{-!YAVsu+@t}4Ky)g~ z&vif`iutqS;st;bJc>vJfzDS3=oxuExAnB~aCqb8;N}Vf`DJ9Lwz{IEuP9FJ8D7MU zU$T~QA667sj0_W;KDyNQ`IgGa%N*%jQwOIfwO>XgU2d6Qo8xM^E7h=MM&EVR-Z4N9 z!W#sgoY2P~&puR)$X}msf_W<0^tN{0 zLND*xa`H=WbFsa9&2x+HgP4BT@3;G!q8~>?y?({*A!3J5KWN@CPWC`oM2PsfF!P)* zZgGAETgaeFG%YNSzc}0xE+@$OMw>8Bg9?q#?22LZ)7oHV`l0%QF+*J9!P~3X?V&A* zp6XHRL9K^6i)*bhx&h}$=n6v-y3C`Hr_;|kMpdZ$R%73e8p(8D2$6M&U&*Ce=AU|C zt@bv%e)O(=DeP*B#@kHeDjl`;YwjY@3kq+E$W-#%X|4gFYGC5*}YFesZyr_ad}jQD_Nh{;r3?7w1${#z4+2QGj*PIgD zyo$3-u@13mmf~$RCY+6W&UCpA^h|fN_tkGV#81UPogyYorsyJE&LLMB#n_3@hwgJf zk}Gh?b@+Q_uqgk2j$DLvqDap?-Ri+px&WeH9P1AY#n(RquBCq4(0_HI(D2^~&|C}k zYg1m8V+S7I#E#D?TLtw+Z7sv6H2K z)#vKdHStWTv_}SYx|Z!vMk5+OTq`o479Qm>d1R1QL?v#qbwweO<11e{|SyorJl3oLMk=VQ#DMA+}(;dRg3)INDSJ@r@m<(|~toiy#3 zmJles#2j3pep{M1%5S?>kJUY3adMvraK_Y|MuX=iWi@4{H%`3V z4eoNosgEu`ugcDNYxJVXIU#>G@Kt_fd0cvk0Z0A1-2u?qW2?t_HDmd0jJv$r{YLFC zOh4eb6VgQcJ*HXmVn6kSrtGC=A$jPj-kDk11K&pP$Ra;#Gl4*NKq}9l==o(}W`q5h zm%owr0-x#?e!BDSX+*@$me7kn6S@#h)3^tE#bfVW^hYBET1QCJCOM&rw+C8PW$iJI zT>3Bfnmt~|>K8THoBkY|jd=R`o?{{N;8#lR^P;jyuy|$a?AHCeud?joi6JFUrL&nD zb#~%bJF)}4TLG}445`Ey#=RL*zj_Xh?4*ztTH^$8uOE1yuxA+Em4;mVWBYBjG;M;< ziS(Hl^>iRsv8f0@RCh^^ENwf0eDQZx>E2Kge$S78pHNX@WsGxjn)r}a+SQ#_>i97W z{94_AoM79N^eGFhlU=cb%t`zUCKpRCW6xERou_wuT{yN68XEh-b~+t6j#T(5{-fuL zUK*>&Yh{=qVKyF?6G&S0Qqi%swN)u zcIc-pq@#t9$kwCw%O7poatn3xpWi{1<% zDMvr1-r!al9w4J>REA?ibdl-`0;Xvh(T^Ip8FTez|nx9$rd> zvY#rJu+7Vp4M79UFTL8|l))h=&xTsdulF}i%Pil<50&l=Wd}&I5>;K5T68u(PblJ5 zhuw3-u~g2y328_8ni*WI7Z8a) zu2TY#10WSHB}6N#Mm9h%cIh8d=hDhTwH&3OfIwnS0%I8$-)U&>^F2hF+fglqF;scR~~`M&7H`+ zOnhKvbg{$0VXbkC(q$K%8kdTe+`fA^k+bK}VdAKInGL-)v@+34=!&`C^CG$|9?pw0 z2&viHP9VScJnE|pS|B^S9h_?37)GE`F-x_Hv#EF%cKC^`rf~*Qis7W~YYiE_ML+EZ*Jt8OYN5R;*q7L30n_P{AW&%VM~&r5 zx1hHm%7Kb4}oX0D9H zy-vr7sa2DAJ*Y~-CZ|=2V9-gX1Zv9UXb^^V}_nNE^ z+YPX*F(-*zNY!L!x~;LR`!VwE)u$X7$X6>CJ+9VhKlZRg$n}&)QHnH@E5}(&d>T`v)rOnhE}~MzRc_Z7TVmSLcMqgp$** zKJ?xS?ex)?Y!Uf!T<6u%vd1$7K%gQkrEuSGiI{;TA@1(h7l5=m@bz)iFoAb<{I zS#gkPY+Z23C6pI_@ZHkdQ3_nEm*EjR#`xyGxKc|9 z#jy~grUuNS^tA>z(lgo zve*w%BeAg2&127}eMve>3hPu?g4}E3;3UtoOnARRNFM7A6n;G$y~6tC4UXIP*1`16 zw^a2v-=6pj=4A!*859jhTnh((GAJ^#5=hSe`t97OpspPFyK?d_b}$xna4lN80~n41 zVlG;4oD0F?WZ)xTBX6NAD#Ky59PwDAN$$1PQ+mQUUzc}T z9Q5F~_6qLT$$Cbr*8OC;$E*8GHde{I&Oj(Ot|SNC=@_qV!;E9n?yJQtpMJl;XJRRX zMz73QH|^p&V&RtGhwPJ-cv8wB=ilQ+UiT^smKGINW$lzcyJtF%BVq<>3Dg`xFB20J zc?XD5tRkXTPml2*tw@XJie>xnYRyZ+Tte1WhowZ|>h*4>WtUx68xlxLElkt{Z}|iu zL73IXZu*khk**SIBQ??f?U;7mdf`Kx7^4rq^B+?p4hxwaga()nyz2O=E)D+{JGCZi&Q57V8NiQVGuU?WQ?M z&=2Mwa`Ve(&_q5(egCQ`7uI}b73c6^Y1J3Ov;2o70Rmw!?R=p6KN;P;TnnHAfvm6< zL2HfW*tbW`M;w-1>s9XHQ7ku7SrA{pEu$)}A9cZN~tg4IeB~&GR>OJ;j>TkZ`N4ZaUc)u@dnsBQG z;HMY^4BW5v@m1)w)HV(Mh|km1KhV%pf!)`V(;t}giZ78Yq&@|1ErT+Hl#*as2Q>T6 zx_H-;(%K|)eWx9&nxDU8BE&GAc>;$+X0NV7mC~8DVm`ST`L$mwM6C15J<6-SePhIQ zOhPXAqoLW|@Zc8EV6jH(V?~CvS!v!n=QjK}mdr>_mS>4OIV3uFKXwu?HQbrrQB9vv z)9H3$8!s{EGv9MNIb=cpXlRfwzJ)cgP6dLTwegLO4N=3$#9 zjhe)hgG8>e3Agc72%^`*5B)Zve5;l>(m5uSdwtdy-RGB1c_Gxbq@+YsH&0za6dr-dB^n9_cU}$sh**BpO2a5C#6K7jAlOHMaMP|G((rTI002>(@XxEEw z@K&>sC700B;CtA>Ax+^gveSfZUUZ)WY)?eH^*1ul4RFXi|J_zb8=RsAJ=@}T9^!13H*-!kr-zzwG;H6=;1F86& z{#5)cEUBjy>1NArhJ$Z*cXuzfuk0+YbdZ$NIZojTr)3>NXnWCziH+x;IqKyw9e`B6*7&m-6z6iD{zLK0ZrKG7?GLR7Zw!9Z*9DQ@bI$J% zSISWy0@1`|(!A&P_bB4M8iC-ADP+GytAo8Nt9VYvrzIq4xy@_$AG_anUdDzsZz;*Vd%pL3wT4kCPsV`sYW!fc{U0{WO^0b;Opyu({6Jn(SDAmb$oZ$BO!$E7a(u4V}3xs1D4xymr7!zOX_Ns z4`zC>GWuSC{qOt+SM*bJk)RZ=^@d>DGo~{e3tx&`1dsF>!b%Pd2bt@ z9AbWAu^ui{6^i9Xy^b{yL{F15pH4w!&mR*-%+WpepQx%wjt5(xY>@+l+ zYrXKq(A$5K?~a2XCOjfpF8|EX!kC2uHGes2jW*=}5>imP8Ppmbq1@oMt}`|^ww?}i z4crvqo61@+F|CZ<*0)~bQ#nE$dyLq?jf}%k9FQEk9g=||q`_)>nNydL5mVbLG*^@Karq43 zfjvX;sXUZgYHT3g=g`J%W36@M^{LMj4Qb08U{dsw-qK26diDBxcF`*}9dq-{ zjTQC5uX&7bW-~4YY!=rRMJY$!3s8m^zCM1GS$l@4EiiJ%$4;fZLjWjDmxDc7x|~6h z9K|LfC`Gm9@8gSX$f8i_XlEANYr*`mHh}tDN2GoJMcD4{c2GW3bp#RP#>1fSP)KOv zZrCkrP7~NDl)x5H3<1k+`Ui~T_Dzr>0AqAc`1cp+hQB^}596GF^8Uj5?k@&I+1sSI zFS8c9-j|MF-^#A0I#q^!nkaH`f8}L_I9T56DzGEpJd9?O&>XT)z*2d9_{dnc=UU$` zvV%Bvt?;_4q#y)~=6s~2KDAP;BP3FXkoP{{wDur6r9xnz@LRh-eB=v>unOj3XuA3M z)n{jCr1tZ^3Xphj^IQtA6&F;@{@JHsfi3B zn#jK91iM#xR<0bBH4+ar$kb{1a4E`$pPwJD;75>xFW@D(Mn0`>I4|+!q)$WWcQBrc zl8YEp+&f^=OPJJ(Nk)ip%^-&^%nDT=AlM$u8xZ=|3r{~KHgkpYeWGO%^bcV5LJG6{ z7gY*UXBwu8Wmk99y;-McQ9Fy`@cbh~ztopkWB?H4={2!GdMYqkp@%lsB$sEGRwd-4 zC_wzXP4?Yl0Dh&=Ijok<^yxX!TO&BEIv>Ts0nlWr9DYlPxD{e6sqkZ6H0KL05-DXq zOvn09%fV0YPsRWEeo_U)jbUJEV333xG7T)MG?Q~rs3(;qvWl1hqopzb7SQ|!r6+ce zO|$SmNgb|K;w^5uXN{|hfdizjRQ*eJzvXD zSx<3#YSzN~DY*CN6Q$gv{!Qz+o8HbVtGUf;$q<6-hEa zTXjVPtyi`9FL}$o?r)k_9_|rBW&knq;J0ZvBvI6^|6o=c%oJXGa>^2`^t3P5);~-D zGCC~d!n+x8Bi6U=Y3)Ao-R+g+M&H^KG4O*27t248dT!xxWak4uivn{_Vu;ZLd>3W_ zyXT6cp%v@7!N)z5{{vY+&u8P+LP5Qj9VeG;5%AVhyPz-OQ+ZdaCaP31QbvMUBjNG!H zi)v6HFNuJH_1xEJFjG`iJmW{eceOury2?R!yaN)5 z5o7lnd@_z*9e@j|q=`Df5((q{@*}z!>Gci2UKJ8560PInQcQnaX58d8|82vng3s@3 zr>LU{^ZtG9PK(cwP;yv8qpgGli(5rPy6W^Ni|A-x7PdLJ$tAi6g5y0u(O>ZUx?^&u zu-<(5#`2h(y@Gprb-@}Q=Qfg~lFTC{-gL6@vukTU;5d1H;zKI37BZ509lkD>ykl}I zQtBoY!e@-IGjk~o;$ENTuVtn1R-t9%uh*<8LWH zJrYSa^QxaiH5r#HB|ELlxD^sOhNtY{dGAjT$1;)Ib_Q;xwTF!`d72uR;hdg$=;g_U z*r1V}Q%)<>>+sZL;YNOlie|SV>^7bHGio;x%I*6x`1)QxzRiQ~?vq!H)BQVORK#Pt74-@RxALv1s)*;y959Tt2ncvU#T9 z@@!GwNL-tFbdl1NqctmA$Z?F8{E!l=)@e0{{bYABcFYDI4C`^Rx3_<(t*sq7Oos#U z^ST!f0Eok#0{;z}VD?Y+?1f;G@C;#}cNLFYbs`b)fL7`Jz$4o20)|ujxCy_bVN1s8 zpF#rnOas);##go0v|#NH_KWR{Q(Diyhc+@!w698ov-7@V5`Dn?l#Vwk@?(Q^x5Jtk z{7hqS!!U8sv?Dfg|5*M_H_cn_RavG74ga)(D~f#7mU4T)ncTJ}-S3-Dee%D(8*+-t zZ+%Z)`@o!xfZlw0j4v4JBN5ARxuZlx_=1ZM@ruxX_Sg5P!EnEY@PrPM7xC)#*mwQ% zBftDx)@o*ujP20WBDc1^Ox!aW>dDoR)AR%04YxD>#!u9En5RkM94kFn`>!jpp@KN+ zlkrWAN~nLJ?s;HA_MdGYO@HZD{K12w@!OmHb5v6UR1TQ(Z5RWnQ|lvaA0B%&U?l2f zQBlb>HP^5^#)9SK0DXbd0IKgU02bez<|Y;wKmW-wl|+pPg%SXO;}{^tx2G2*{7Ty6 zMBQ3Cbz{870Ao3fNJZj*ZX(b=xM&(ceI%$Kv@1wW$Rpj z+(MrZ`udA`5Xe-v>y_N>8iUAOE%x=;l;)A}(I;Z6dwm?h960F4IUpgktNFhT+%eY> zxiedPu&x|=!8@Y*iGNS|rt!_0ck=8b2|ujIu^Re4L8WaLfGLl)oh1EeCe%b_RhPA& z6sH82Hy?Ns$mbL~&SLiG_u`^re=lY^RDSp=8^4ZP)Xys4yLVN0^trk^_In?#hPtqj zqjSQSf{2?MC9s8SeYBkVk0Wlfac4}D9(Mh-FQ4f??D+n|T_yf!&PK#ib-1F2V8ZU2 zF|CG*N;ua#faG$i0LYQ)@Kc-I59i2W>$v9(6QiSRlRhN!Sw=Q~nF!=#O`!4vsiPU> z&Y)9#{QcWsde0I=<2a;TiQQxJIJZpEDukFD9FLy>H}?dPyorHaxYDUndpWY(+t$Bb z81^eZ_xL#HjbuygO(Op+xL5l+*)V3?Y!v6^=TkH_`Au zyOcfkFNm=pJ3@}Fn$YIK@TmkWPMK#mt75RPF+8vwAb;czLwe}ngN|O5zzY=-^vkF*dO4?2vh2Bz4@MxJFp z?iWqvpH(c1Vnc}zc4X_u5AQkAK>~lf^b01WxXK4=@zZD)XEhBCjqd7r@XLm82WtOb z3qY|YEFp9I@cGBR1^q0C@_~tA?JVu~rj%qK<`R}_ALcScMx6SIcIO_AlhPBVYdDiz zR2cn96v@6#k^#^Msjv5aDwFZjJlmT2kG=@rSF*Q?G3f60+4B-b`f$Y};|E zkb@3%JDeyd?Hta}cth?0S)OzMQ=Cs>8~*7$=x!>mG7FY-y5r>4biY$6>c7s2Wq+k; ziE9jLLUOGqGhjTL?!S4<_+REl-!O}UmJ0k=x#wt4w^_jMP51HP|Mk@XR@n@gfF*X# zXOy9?&hrIoA~6-?VEyf7T@orWUkyf|zLzsb*gQGvtRqf1JMPl}D{L+KI$(v($CuEz z^f}oqd84izAqb$GA-mvivGkk8t7MHn6trT?4Y@h-E@*(^SBq|P+JP2#gi?IEcTZ{SfcSihqM*P=T zq^nHz^`GnOGuq*yR)fXRx_lCC103utO4j8ml`NrV z0RmfI@zKoM3y-I^cl;^{Y1n4`i`TGbq#MjQ4yYEu<>q1KFrw>KBRW1O9#^gd2C^0F z{j#kUOP5qe=Vq8SmvJqw=_%(9H>VpyMN=hAz!(vyyukFp3J8V=i~WVfSP-nKGJz~- zcwc{^9B;{}TJ_*9hP8Kt)GUab_7`nql}Og80ymb3s=;aG+R2gAG@`ShKJ5c(N#-nm zQD>lH?>N4sK5Hj)ZRK*rOi~yo&u(lt5u_IQ( zbEQ`pI8^Wld&$up;5n0!-M5yA%;1&*6>05ZhkR~99&v%n_5o>3)e0&zgCp|B*yyO& zHn@R$YN#&Xer9C%@2||F_gspLS=Nj;auWmU$QP@1ULECKXdxEx;@=L7hyFt=k>SRD zXtua_lrD3Gtdm2zx_0lAACi~v-^=cT-M6cAdBT5tqJYKhD3$DV`-cf1~Q-m`0C4%46GzS3a9u@i(?IUiqlK_O-584EZ~Kn|MNKql*dQ zHl-qD?T+u4qc^5YBkDiZ(kcR)YXmWw>I3Ie~fy8 zm*JR_Neej0&&=$5b3D>dI`sX zDU**}hRd63LXfUu?ZK{K1dn*MEHSu^Se!$R<#zDLRrGh3KFUg7R|cCZgb^16dCOQ^+`%o zY6%vRy)G^!IH1=v$q#`5*i)W*>UU}m!h4`y$O$4A*mY?zp6U+hI5LJ=w4B-eQDoRq zy`x}L9!gyE8O;iLslLTQIWyG_m%xU_tjf&Eui9Rn3@LpI%Utw@>C~X(b4tW0Nxov4 zpGLFSmutSZIO0#t65L*j2E4mKck`8;gb{)ioDSrbAY=rjt%;EubcZX0dd5WlpOPQE zC*Z+AQXl>w6o>qGoA|8`-V7hax%WOkCCp-u{TlBs-NTtF4i`{mK2rKSF^nQiB zlDCj8>9!YpaKs4@6mbSRU~yZzqv)oI-F^nH_4)75pzA^mf|b>R#h0o>f#gU!4927~ zoHjk3(D5lTQDwuWEr{{riqH@9FW5<2+hpUu(qeNUFKj&Zs1Z-AQ;Xbs+=D{iKUjr` z_hJX2PaH|M$x~f$Ael1W!N>QjkD=rlzBe`C>9CQCmhy(Mo#q-oWZgovQ$#6QnWX@a zfc$y?B48y&mk9#x`xw5txvgS`#Ht%PeJcC+waQuBPdFOjP6i)NtSpPu?4B{r+6z7| zB_HQP+UoD@GnS3&Ax83Y1=D2=n_DgR@ScOPQc^)<+Y?wr3OY_odp-?k48t8<7n2K z9y;u)T{mF*MiUbxL0Y^Yd;*86;C>K6Ua|uL2?zS-jr{0V%}|e8z#Uo2SJiBBWA^F zC3{NsP{$iTL`WwL>_{>xV5^io2)}t@BkKFXH!VfvnNHCQO7AC6VbM;0tJM9g@a5e* zMf*={1e(9Ns0qD74bx85{M+zXRauQeBzLgE@Iu~cjX;F*`Wsp$V*NiA^nIg}fW)G)?+`CD5d* zf?KVy`EUqSGa&fc_n_S02b*k6J+Xogf`4%@?jzjx)WRLs($c;dz7eA8F-$A^MIYF) zcXPQ!*{or?%(HqwQ^LE)YPDevl8<+}6igFfWSlzQo0*>CL7ygLSW(7sTv5?eH9t)i z&bt~KJ>ipRR5bbt<#$+TU(PdOP`Sh&&p^vyPj?#g%~4gyO;oFgF^~5@F63YQY#1IW9Cu< zcE^Ue!x?w8ks3j>U*odsE1x#xIBeAC-LK7unC0j!yJcPT?kI(Vfw;k3pXFgrhs zs-QQAXTAT(oYp_Tgd}Bf`LAp#e-DB{OZ@fBj$nJD!y=v`6IgU-weA<4o?6yrRK({h z&yJV`r{cbBg1Dbf9d%B^@#m|S9;XsY?*k7^DGGBrnwPHWnSzRT%1_?d##r55f-t7?$5<0 z@?*|j_=0ZG!i#4IHGVSVo4s=eiVt)39BCOgT3qwGnw$H+ue>8hIo0F!`O6?y0#2SY zaW?5-Z{N2KEByFH!|-tH>k0ElQIBn970%v`v7fTxKq$*R6;W+mJr@#a@JESW#@Xl3 zPJRN;&|%#YH;W81mOvkuk%$u98asdDA6NlZilL!z&oP*i22Rr;EVP>I$S`u-QbHh! z!c@Ln5_-%DAwFrq7M5{Q z@)BEsKIRFKGoZGWeh`UO4BP|ImqCgU`~?Pt^j4Yg1B)s)fQ!jz2}086&hD;&w{{bz zq64wN`7I%*vbCew0c2tU)aDUD`;Qg1El-T>O%o@u3U6r^ZI8QO{$_TGEoskbuIy?)aGmYp_D0q@v;3*!Tp5Vj-CbxLoxj;odlGdA{A6|7r93Kri)XX$# zo4U^Zm@}kTPSSF`gxB3=&0CNW1_!eTB^QQWvOrmcQCG!YvhclsNa0I?;f26gyF_06 zxsiGp6dag?+%*yU+CsbYrb~rFr4Pj(dBa~Eehzv{#2hO9PC5^rBRPlax4Kj}VRU-p zkntD>($G*B3Vqs5!COmY(lLH6&@&;Tv${>DU!k6OGGr_2`>SGy|0wYzFYnJR#~ls)uaU^f$2`kyOJ9S4 z>O~n;2=aq~Gc*iSq60U6cwFPbqwbrw%dOU2(%8&=J7u_hxGSkKXi;KwmwLgE?aW z^RO~$qa?}qxg-fap6+^Hh#e2qSZy2e&7Ym3g&e;F!03l8+(y78Y^rfhTO@d6`j61+ zoFg`=s$!-?HHSMO&`h~bO9(#8{SPZ(V3H4*_InJ~a;RA{|2}|bin^rTHmmwEMmS`C zeKO&-6bJ&jeza&gvs;Wxx4wz=OFmkjbZ!o`>c)Nf3r=(N=Kgs$M#$;9BN!`wd{dL_C(1HBufushtb> zDNj1KaY5B+{4^}BsDM^fd6nU38yuvA!@WB2PI__+RGavtV$=N2Du-!N-;zJ@Adg5w z4D;e#&@tudCyEvUC%4}~xz?X(w&EnnBeL&i-uiU>&YL7CP_T0n@(G(*fpmYdyZ?QB z&Ww{-uAa}mw{i>gMWzUG)c{~*q|#1nb2)hvkKrBPAKIP^G0*D&fev>K5~RLXOAOh& zaG^}5w%3uDKxI7}{w!JJ+*FhdER5R^W z;tk8poS-#n;46NuK37m7V6#sPs*k4JzIT}Ok{1H%48BD*+x{l>8pw+wDzx#2JpLl6 zftsc+^6yzy(``UKhR4JBs`4#SCn2ggK_2ITI+Wfl=2uGcQEwd_L7jBWZ(k6&7K zL(l@{((0tva-dv#oZNB;9z^yT&;D9F(=^mSZPahgZWLx_8Wx0_Gkd9{^Bsup?eGI= z=+7)9*#L`^MJhOw25OgAqPx^~_^7#%brz>-^WJuw!ONjhoAZGRrzyY)S1a-F<|8Z) z?!fM>LauN06ZWa6cOjC(ii^?Yvg(6VhC8=D>fmS<@>nwWvBeXJJh+edNtxWDbi#j_ z^o|Jllr?+zJ%R2cor6cdKZFwq*EcO4XdV$)vx0<6l7Q#?&&iel6(IFL?mIYsbOBW6{Oc24 zi6Mp5e}kfchljcr)z$g_(H+eSvKN99Etx(gQQNri%c@OU^W(%KPmJ_NpV3I=kXe4~PFbKWWIZzw~>=j@+5=T!q z=*M&GtEJ6UHJRvCe}55SOeS*#`!#d%0`PyTw0Ge@or2HzOMY6@GqeSeNTvq_Vr@eN z587QGBvY6!$f&Z{LR?tzt}$HxwDxN=^IB;RTb^d-Mv)))>`O)s=28H^rufR1ek=Yy zTXr22mF(0FjhN~K^GutH4r{?iZNTOX0Q>dOi|ElEt8y5gS&j(M zR^%#}oRb#ap^fopRJ<1KNAwC@Zw+o`Yoa)(D(by4nn$25TFS@J8Yt?G0HGhKp&Bql z;cc0XW-#XX9ETAvsCRYWSl!)|-IMioYHNQ6R1aL*dt;yCTwdO-&)$DO9%A{vr)7oQ zxemF+-(r=!k}d!^UWVglH@P z%y3$&jQq6LQ54nwO?rCv_=4XBFS3SW^Tjy4mbvL$D%@|vgdS~VZd;$fb>l$OSD2DM zDj;73_^wS>vTh}I>Lc=&TJ8=%%k>fKoE9j~`6@=Y6XKv!3oqx~{^=Pk8yL=X=!Q~t zk;eMIm|oaF{pKKzoiYwFMQH&J%A(A$$)2PCf4-^ZlUS>kmB-)EyO4!nr4&n-X>J$* zIjupUHc^uA?^${LmJC5%^@c+Kzu<>Y*Z5vTwp=F5o}9HyX1`;{ z6ier6Zj9GGgm5g=-bt1WP2>J0t zEm_RW9_!dxvz0e=FO&i<#=}1S^?)NVAkZ{U+||rYf?USr>G4<4#eSx^K}$Y6nvI-j zh!1AK*xlckQYeKI$}I?k_P7;aDGSiI9u(z;ppMJyHvOj?O46H7(bL56sQ6XJ>27)@u=;Fu zq>0pO?+`{tkmCD;LeOg6xJ7xOTuJE@DUbc!h0CILw}yU*umql1=I1xW((G5azqm?I zetzykf>9Sa0M+_m4x@?tFW_H3T1HB{x2&ld0Lnd^++T z=hSkX`J6pk>js{yqWWfie(R#{e7zNUzp0(4Bwz4Jcve88CY4-NuWv~L4XyVeJCa_G z10T(6zf|28Og|W}r78o)?xQ7c^dS)1D0$Hnq!R6D<*MD&0rD$fA!6`*9?o@wEtNDh zmB)X$*^PNEw2k;|fL!-A+4?kKSpLP;s3AY0aukkqj&^iplZ4;dk$+i!P^#AGyWYgD zWlw-{!+2(q;w8aN-v@DV=o=KPym>8G=Ynu_JKHD*kn!gPxN5lf#kjTpObZp~+hDiq^V56ff#873} zA+bu^m)+AVr3d;P&ar9Z#`?IV~SL;hiR2NmN{t3;20ybIrI3 z3F5Tb?0bO$pdXc}zuiCn7PeMxh~{2M8kReSVz;XUlbLRqqpYKWr#8eTu%Cc>Zx=SHpg z^I8CD$w>X$&~u=13{e!F3Hs_yIJpazlDf!e!meE=;eHuE{xdt zQAyaa*BjIJ#e+bnR6)V}nC#c_Ov*{U2=sNT|;7m4yT7eJGC)uD?K zeSpKzT#jeE0@c}J9;{Ubw?-H!<)OMYR}2-G^nWwqueopH!-HGH2@xCi zx`@ns&T}jooux6;ebk_w3jdqKbVD1R`}^n0n;awY*Y^JL57z*HP?$Z!snh+|NIMb* zVb@rqRzhCe0v^uee0_I+a;fh7SR9*kY)Cv_pHY!-L1Ges>Cfa)_#bg>$~;hi^k9;~UFSnc4P>l7M6Azjy;QLraX7ycc1h zN)sdLc5yD2@A{#C*^*4J66yuuxA(w*Bc@nTcv-W2JRr|fRzb5m$%d#b@BI3;q})F@ zYy=x@9l9|?mD{4?IHiGxk+V}{K*Y1>pd4xgY>yc!v9($`+bYA&&Ha#`XL0w(#RD*ZqD!PAPthIxP0)@s{aXcD+-X~GxI#y9^x(qq3&3!P!4H{Ir zLBYu@g`J&_DWw2yT|1=U%+*7dd;cut)<{}{zEU((6>LP-N#cX8)SoFai1fTdbdNser zKXf9`FP*y>dm8&{5yqChuwbogX6Bsp+4vasES`bORY@JU__z4kb4DA)iT)x)Lf~iA z1M7PcAJPO^0o=M}#&baK57O1dK+3WOBx2bTI*7yVP@c*5X~e?9+zOj%ZDIHG(Z(Zb zmEk0T+%A+=YzXmO>34=w}e1DX&EE5nQhwh+#EBw0ZzhorX|B6e*xeFct9Ma4c3fRlwX*j!ADZQFd)gi(neflK$>(y{-s8x aWQIQ>Zm)4~Ru(|OpNgX9^OC2Q@BTk~r~5tt literal 17871 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 X{k+uTtswBnO>nZ3iV{^~MuGna6L{(0 literal 25137 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

    $V&F`=JW?-QRTYg+v?2bqjpW z#p~}5Pr1>KJ{y6*nOSgC=dgolV4vdh8Suz?joY9a)4`w)<#hPY`@nJ7IEgYWkKvpb zSXkopn8eJnTM`RU)2Hp934W${L+hY05?8tZ4rCk6Y9gu4v^mO~nDO1k#+NS zdYe?IcS6$l2H@FZjIaN=#ljwr!#sQ^3U@3~37&7}3HPLWSNj_*{JV~So0*x>7Umh7 zS;`;uby%*A2Ja+czaEASE?TU0rW@HQV(2bZ^An>53(gw2BT8$LS#nLvO>e zaoow|FY-?qsL$NCZ$OESj#=+M$}_x9{L0GPwnrX(mZaU^LzR8IM%?`UTMCO<%;P)b zf6`EMGon(*D7fYXb|hJ`K>6DyxZOvPZiH=x{pq7xAv+;4G2?jZNA1sbx0JjrvVyp_ zA5*x!E50+%tbnBZ2x91lvu+cxd^D&wO;18bj);2uWviF# zH6dm5PZ8?sVEgx`2#=TqC-;*a`y9tEvKj?E4b9NHzd#ma+{QWkxc4h8&26D$E?Znh?WOwsf1^`5lY zHB7Jl^+x+_kJl&HtcP3eBp7$dns`VP9+ENcShi=NS?5w$;Nj$NxIZ#c)8{smlas2B zBZNbkBddABJhsaT711uHV`;n*7wbxKTFACbHNilQwmtY7LBeMI?{_0G?e9ONzCG*} zGg!LaP}V@ZgVAnVL}5CI!2@C1LM@V>vByWYU89ODfKT~tFQ1^vOP{eDlK)4T1@i8X z_S)BK*mH{s=5A;g()8MpAE)V(sA9+6Bi_qvpGu*;n`%@; znYn=j3{nQ2HF3=anQbg-Pqs3dGSF{p_Y8|ojx-=qm%{+Y2p-5D#^3CZiq{rvV))X2 z2h#}tQDpq{LyY!OsMw^W%;V|&(Tj^ZIo(1IGX+Yi+}>3nmJ(NR%mYkxhxGy;HL z4MQXRFzM)g|Gg&&oNpA99G%s*+GYYN0#=TiuU)WhOkFe9?|Q*BG$6}Gq>WNuG>6-U zuidGAfQ=V(q^tMOyj%f=3ql9M5a@^c2OTtmp+|zdM?*uy!+(wJGleRJfWd%&!@Mpk zC>lGUS9DVVkMj1m)wBW22+8|Uc*avzrDkrUbgP2J9&R;cV?8k3OlESG2 zatU#_#HyzNN@Rr|ej1uUAYkutg%K|j;2KVrWCOSVRo>>j*Yy8yu=R%FL|gQM$ z>;c#UIUpywWb(feSLw?WQblVywEd4euRN8}2lu2^lRQ}Es25G~DShD+>C8sS3pU&2s1oTj-oD6XpKfNZk{3 zH^YdHV5di%Wk$EbMz>t?2LPLJTjZ65R904+P`s@Ot{U90G%G4#(gJ7)FT9M5Or7n& zBoc1(FVzD47USfZ+?}$8Zk*<$#KwTizzk8)^#WSjN4q$_!tWTJz!tNvYrGhWkVN}W zcxe%lzVm!VN8clq7d*be0EUglXv%NA0>f6f;rryCp-a-AS1T*50y+v1aX#<6v+}{i z5v*qTn4ZH{{FvtlZZ59HR`<%d8ErP0BOyWuFhY~(HGLpCYLlnN!b-5gdB?(Q+twVx z{zT}-qG>da-lxgjsN3U(;|$lWV56N&hU|^*;HO)RkwHZ!s=d!_o=gOU1rTAKYrnd= zzEZ5SonB|ALvnYg5;m`i;bHZ0dV2c$U)tIyCF7Ge`77C0T+3G5b8vH-7In^kr*2|O zmnA*EvH`FE6wIp!+^vgEvp=yak$R4eC;4^ncCa5U7E-L2=PSQFnVg0ydR$d!Nv-~* z5~S07xtL{JI~B$(8hmWsSM*)i=rEK|=dZeX|$&SHC-&4Vl8m`P)X5S>R81 zF^rk`u(UfK7y3xDngPuKp$`D4rFKh+6n_pVuMMStE*mm#F>#m&c1!N)Ku=W2_kqO6 zeYos_t30H8mH+eiaL0V$^e3!@XgbT5P)CNUb`!jqhcN-@clH>;DT7;nejwcfZjHmA zw}YiWNV$woXDfnnad8PZ+6*g(!`?q?YHFk)5J(c6;c!KjP!ZWHqMXn}ZB z$${vt z)$bb_^fAU0r-@PU?T*3xSfE4#{y@ zBBep~67LIa7e+BiF85h+n&ef;w)S_x;{Vv-5WzQW>M>ZaG${87Oy< zK)kc7>j!}PO|`n)tH<3`N#hgee*-fe1^msDX z@Z6;e=C!oF=rJBjpr`4YAU50HF4hf=XD)DY14SELV1Z%--fW2VVJL|Y)p zh~X&Fi8UqRTR3Q7!l1j>(A$Xo9#=N{J>7>7KLwrl4)8ecG>Me81%XG{Xjf3n5n{hwPlyrS-mkrvkUTiQW!zGV)1{ z15olvMc$-^Iut3&rLG_L*^Wp#OYII~rN#zW-^}DKt7~iV0N8aAh~t#AKPhE@@+Ic^ z9;1wf(T5k`r<-EjLi*VeW+^}w zIy$H^9BXDdv`J5x+2xFkTi&W*uYf9BFn7*(QvUa&>_S#D0DMlt{)8a9jOaq4!RoS z_TCsHwf$PBPC`G)&f^Bqp$hUj6F3{g9QHHO-A(b+8`@^SC;omUq&LRk6Y^|kH@=F$pHq_6elQd7sBj$| zv-Ol{Xc4iKJc363@Ja?HB7xtMIUKu4aeH__kp7j`c|0bbn)?T9S+~)FX4lmv0XRLx z`bN?A>X!ee(8Szne?tilz8Z_$IzMjCyP+@sio|%-9aei9|0tn z|K<%I{5dE*K7wUh6mu)Ey#9eVuh0s;Uvx8mpZRp+g7kN;UL;ubup>JsnkA-0y!8W% z0-S9lV8Nx)@N|s3f{GGB;N59yji_{~*7WGkQ$dGT)J8BGQN-)>{lLUTG%(F+T2r(G zfHM#mPIW*aglq;6V6*HuNVsU%I(TJDIODG}g3D}~g+bwMgv3t(nQhRnhk@^O0}pk) zkZcQ;7ydE-=$VPSI3@g7T;mT$>YH9U%6m~ipG2g+-Q8*k)X(@}@^@}#reUH0@Zz6B zqI{pA1aB>PH(JbhcPDV$P>)yzAB){U z#g0!G(IiM7s>s4duVN$i-d{}A(_AVPMSM3VyRv(eWlDQzER-*&zbASeY^X%dV#SinEv5BXVmXUS!dr2=D(hZn=2bXT)-p$dm`S~^5^u%wshPE z9J+@MGQ*n)y4dmFq)xuL+uf)Y!T7wJY3Ac`8E6irV`~9f!C_=bV{~jf({8d?Sr4m3 zg|0|`aDP0l&?nTD>{D^Q6A%1F8&iU$6Wa|pP`T9p8E3JIFVA&vn3@P91&;aJQr=nB<0|i*1j$;medM`g*t&Br>)0w(=3lS|Yn< zX3Y0W>5Uu@!h_xRspQ(52h$qbU)gu7Ou4`^#To02LXsoFoQ|~ra4RWQF0M5 zzy8j@#)qS3OUs8RUbGC^B21m~!wJUJ*cdrramuTiKpV{CW4?|q2~KSX`gL`mfN;8r zv09_KZMmfO_^PmhXK?3K->{&AizBdS7v6oPc0j~S^zbH&w#E^?`Aos;q2??;0M33m zDy<9($76^9Y4`a^KiCQ@(B;_5vV4f&uHxj~J>{g40yRJVnYeEf++1JDxUgTlX)HXr z!ZiPAtbBEDopKu_D4pznQP9zb+mG#Gk*`PWG8d)Y^O2EpW%RDr-uZRU+eY-64(bxT$4Sp}FRUlNvK&8$<& zJVAc@w%6iuLE%dO%`jCsF1q)IuGGyIxA;|{Mb}6wW0}LxEKCT z!_eX1KsTKh)Ib-$v%^2WhF$2s7q71)VJuH#Mpz!c1nv(u49-~960hB0y^ zQi!}5C{E**D$*&Aimane`Gm@MPr+e}wCyY+ zqv?ArDTYmP{A1b|hMUIJCh-DG$3%2x?M-GG6nsWDwl;`jURs!hd*%kMB+W_pq50{A!=7-1I>?p_<`FkM*Tocnr$;3zgt#0N=j2 zOTjV0i;p01Xr}8cTgIdPLL|Gc`CF;{%T^@Pdd?qj?mkv(zVP$V(@yLFtd?#HFf*%* zwry7FLup~9z#a@`QA|0lm($CoGh`zf8SICo=$mT~>v zRhKNy63Z&->ifCBr(V0+LarqqfJZIHg#hQU(Fp?#|A8NHNG>bv22K9$3-Yq>)Wa(w zUmWeNU@MNUZ-~6MOFl&xYYDzR$v$ZZjC3(Ox&^a-XmJhNh&goe*+cK5nmL@W?zX>^ zVEX&}an;9u`ZATf>2a;Mz7?yuSe<>R*BHljt5OZdO@!azB)=Ya5Fp5qSqs~=EKS#J zbM!~Gb*@fA%70b}Xxcyy4-e&iz7caH-AoEvUvJME+ADCl9(|dbpVtb7 zZuLbPjJEn07Z;mgNba$-vGoJR_6k)N6Ynphu6DI_3E$J^Ns3$X*puTr3c3CAd(C?e zav7r7h{8Oug#@ugYHn>$-y!>)_{9dfEZ#}-@4<)rJXMG_{+jlcXxYKK@Cd?Jp?E3D zVc8;Q84`LNI4;>w4u&l242fNkmr{Na*S={K1&PT$dQAfC7MbYxN;7q`&F|EVz113& z$<-}ai`HVi#5XPHTUgEa_IA(@15=v?$MhP@7aJ+-jS(HK14>I-{>Vo6(^pF{eO6M! zFi-mCyfDT=V*Xb!Gmbi;L^+b2NV!n?+v;X)guZ+%{;#3k%bTDqL*s4LssqEW^ZgI1 zvo09Ep_)yZ&6L5%OPcnxxXT!_It?(9qNV%M!VKlz!mijsW@I_57kZ*k?Wk4T&6~N& z#l^o=M+6NcSLF2E$V0}4aBga8;O?9W;cFb+rKS68(St>nt! zm|)29eEG0*r9pE*l+tZdWux6H^PoZwmK6C9yQK8yzxJpJyEqhNQRy`Jf+ZZzUikL| z^xJ#L#|yrwW}XIX{J}u2aDiMRFF#RaGheE;rL_BX2$)#c3722?VxQWr{QbV^ePokh z_fYucu4Fy-xs8%8m?^9MVL^Y)MEphgFZAuXJB(rYQ8wwiGX7z%5B3PhFbLuDylTx# ztNhXW1Tm^?Pqu+S{>g{c)|RO$6lUdUYYyw4^J3Z8?R9Go7ud+_?CT5O*+ErY00>?> zdU{7X-7IWuT4nXCEJnWAjI8rf5&?FpI|g9WB#M0Ed>F=ZMCd} zBc(4d@6_!=zOat7`Je_uF*@22cJD5MfF^8H@#Vs1HJ~=Rr}+6K1~upmt#@to=S!Tr z#63cU051bGGpe(*b0+y4FhwY^PyREN2{V`J*GVOg*ZtB9&=roxveVKObS;^b%F36> z%euzyknMh5RO|EUPh=x)ygXieJdROc-DC6`3U;U3=$Cz<HI6Qz0Rl>I0w;F-Sv=r#FA z7E7!o4uiZgqLS~g5=&zQE7R5OEY;?BZM9Vvxj}}W`5-LtsRWwxl~^uZtWQy93Jbb2bUC{CpHRTqUwz2g zd`fyK%#GAGh7@L06B5Exh*9tp6Soczhc>zbNklw2wg;juULG!m2qQjz{K&){4-eM2 zB#o$>{bEN)dvQv$gnpS=;`>oAO7j;$t7~yP9q!dFZAy$0)3fR+g>X4tp;cAa&;q?# z^x)!zI?{xn`PoMX=MBcZ*8)E_E=dv#i=|BIvm8q{(N0kz6s)5j(j1QSD4k!wHNhU& z-ciQGyV(vI0`>|2b1-A7$RdWWb(N?O-Gp%lY9U-r$xO1p$f*F}sV5ZcxHmkkb@eOv z;eSl(1-pJl%~ZEGcvMsYr-iJl8cgzV&d@XV!z=4k0*6!czxahPI`s^4gRD&SwMAi? z-U09cy>ixy7xHq6goH`{6`L&9%!Pb_I%?r4=%se=Emt-i^PbQa(D8`z(WF`);%(!`(>P;-)3!_2yZe*F8O~ zHpwt;*27_XxsL4?_MBASb-NJSW_W(C=BZlN)TC3$nUR@UKBJ#!|M1RN>F-lFk;~dE zvo`o4AW-!Ex5ew8Mdo|mq2NF1Zm;n1a>uil77^)JLjH%92F|uL!=Q^RK{?F`KAb2g!rpmIpudnZ$g+;C1 zst}d1u)e)v7O!#h;Yb+u2SV^hXwLe>>AmO!)d4>bDaM58zO1gUWZDbw_AdRjK^0_z zm8dJxhp6(aq|@#9a@U%)V-%Dpd1v+q`OsAAS7%dw(DhXUEKfD&p&^ zfc;F7oU-!XM6E?BFQ)h2C+2u__i1U+|g|v-k0XX38}I1g3HR5 z{VL2E_Is^%NB&z1;Qp)2X%3tPLD5F878CXaXyE=E_w7}7lf(J>PJ)O!Ve+YE*c_H= z7nHv84a~`W<><0ovckfG2sk49h3bh9L zflKZX+-xEZtlrDdG{jzzfF*8=YR4|dG~QwlpX)kN7`b7B)MoSSu7?gVzdZaI(@xFv z{V{zw`}nG5%ncI8z1bEm+3vIG$M@~8`6dwmoXqx+C5jF4e*=}LZ}8e_?w$Ekfr{ZW zmD?aJq1WY?QrL;ugwp4SJcC%xANv3#`r0DD)oZ+(Do`f8{qpa4=MCiTr}#Ak;=RLB zQ*(fZcGyz?Q3h5 z$KC3D6OdG0R)z22B2~kw3xZM2)%N(UuL{raNv&A%AXuI2gw=t^z;$mqM;`5y) zkjl|-*Q2^VGnM*9wuhFgDbw(?wQ#MKB4VJp(MhgvMO|$DZ^}KwAJsYJCU$CLu{WSo zgN`rpN|wf${d;`G`iokZm8?f)pqi@aWBda0<+G5G4=+icQ^Qj!3OQ~`HtNIO?Ad1b zGF_{!D_(y}$4QVvQO!88L!iwP_@AS?dc&MEWmu5tWsnK!(V@=Le_jHK`V7Tx6#!g9 z9;QD^zY-Z5-p~poFy+>m3t!XmyUMpqK>A^!E^$7+!qQtqE#MTbpCkctp6^3VO+A_6 z6~0EFewfbp14yO-2_QG!8F8%?P?e~B!eIit`&gT^@0Gtv?4yer|HdEp$L6KW@cxE= z$v5rv>_Mh7{*g&H+LZlaRxB+@Ow8!g8boi;NsF>v;2R_IqaSj@?5^lUh>U zq@UXt{mj}EJI3$Y_Hpv`+h;J!ysv3LTao1Go0lD)g1pv5sEQ!L(g(ZTM$>|D@VE9M zKvCdpP@8Fk^I5(9;1IjmUq3|9SdO}->kt@u81T)pPP93py$zmIGu z&=E9R@jk>|Ag@rPPEz~wrGFhWloRLYV5{EffowVYGWL5MHZdiY&WfKJK3>Eatz)L?KJ&@r>BIcpt_|gT| z-D#HSOPd{Se96-qauCN?%R2?+lxC1#-^BWfiL48k;uX;lHCEoXu7D#v$; zJ^K#00z#x2UJrm?uhFbH6$ukUb9su9zbj}NYN6G15~lSq>duk=xH9PMmZZB zX2=0JG$N8H5m%bOaI$^_Qdif=(J+`nKu|E8ii*l)Kx1O+>7jOqC~+D{T!8ijN^|4m zB7sIz+iF15fjrLe1Bo8MMs+e3{I;-s; znM-YjHg7T1G$iEY!WQrQNif&j%gKH1GXVHaipNEGgKW;s@h*q{CbfxW!;5+D)5d2$ehAJhbG1%H~dE(Zd7?;RfF^J24&IG9RqJ_*){4N7fpV4&Bxn zhzPsnXcQ{*SgvNRkA4(LJ?*vMd;g!LoGG-q^c!wr#wqo7TCR;r95DM~J^-P&x0mrn zSy{QMwbhwRUr1O`km-e!lk;!=*B@(s0pL6ZgDP(-pkM>74v~R@0ToUweyIi{7^c+G z$thsopB=cq>g&D43pH65UWvsh_MYrhc&okKp|-C0ug2bv<#PYEM!V|eau9H_(_e8j zy36zSYX8SrzuZqU!TYi$y}|r>H^Lt1xtXPUTlO7kD5dQtuHHMK zWXp|-DgD^8x!%*J90w0ias((!5m)`ujg0t@_S6m*MD>2WH@m z2KC_DIrg?2>bEGa9rZ6*qYH`N<{q9TTBARf+}vvK5%JR1Jukw6{|l!bDxnj*C5A?> zuTX%%@?RJD1!irjtMj3BK+Bq}GL-wOJje98A6y?Ib`2xacT&14j z^?29cyAnW?YMzp!zp?vI9|gJ;)FshyEOEgnE4r-zJ@uE@0olS{viFaY?fqjXXfpHG zVLCVytHj}eBbT{j?9&ifIBRVNBCBBH`to~#79x42*d|6AqJ919jyp{E!K3-t%RMVh zOQzAlg?_7=v|lOr#NPM1I_`kr$Zrwe%_S!3oxma;UNUG;;%Cjjs$5xW$b9}o(R)FI zv?X~~WBu?V`x6~&(D_0o1&D2YTB8@3w!cig*`SD3;LE4x$ZZV$}YMO?2cIV zK>-MS>py9$5q#CtA!>&W@t$EcNB`c9T`4imepW&N`R}tIKmf`lyl09KFB_TVP1Gyr z(Z8FCZ!JmIZ>a!Z+K^8U2gtYS&6LmD?WOp{|5wk?xRqS1;~5Slu%y5J zjolW$(NjUH{^bZd_{`1IHMEwN^3T$1+r6&#w`Ftlbrn&Gis(pQRmd`h*c43`3a>llq>!}7hqy0m_K!?KgGy-34FhJ*G#+g{~{;#I54v69l*IpJR z1f*L)x*Mfg8tIU30qGw|Nwa_;NGsjlu~II*pp<~LfYK%1xv;Qzy!ZS5nKN_d?7U~r zoP5voJbPW`cfxR-a4qSP3zq=EcyxUf&$LO1L)MlmmM8BXKoSA8ZnbN_pDeK#XX9&91`M8B>Wh>yh;szpXJSt;Gp+(jPfWKH#@#)@5v3P* z?wINLf;7vX!Gnc&n9`Tp1Oh2_CkB{2zuoL8$fK@A$kC!Nd7@SvWs}k z){*PJ=oN7Lu-%iO1=6$r%<)}J6HUHw1h7$3E*LeQrO5dTw6oZlJW)&;N!ii^TR5bZ zaOq+_yM#e0>dXU9{9*ZFGg3bLJ=$h6Vro^S61h+8_sDmZ-3||i#)iQ*`(OW)zQ33z zyru5#?JaI<62aJF=_XlQdkP871-$p%%IjhPDN_!a^i)<;T|HJiDXRM<8R782=OLrM zogO853Xo?UHzTZ%kg~q~6)hcN_^-%(7iG*eat!DH{1$Q_5po;ZE*(0$4SRQO)H>^{ zDIVS+EqbSs5xop_#SLRl?IbsDC0a9E!ovkm|Jywh&#|H*fNWR@HJf~8A z&cvZwZ9V`DXCE*5=TI>xZviqDgE-=yc*q75^zddsR+2B~$H(?+?+1q?thHZ<5Q7<* zOm=c!T7SLsdusR=bw@d&el^proR3fQSir^3(yjTm4xlVQCM2+Na^i;3bk|V}*ak|J}#{D~|&ZkH#a% zYipqAUOi|r|@LuKSPqNecoyO)(Bb!H~s%tqDc zbB}zjNNMQkf^@ETZu~=Kyp$@2C)?j>6mM*t@(R?`#-hhj3E^nphvsF?jwLI0(wnC5}`Ag z$lS9#O(Df0y@@{FnuDW$1puqm*9BHN2*Vm9Nk+QTq?KyJnrIXn6Lp)8fc624QY7OU zT`al?V0hdV41B-G*bCQV8Q^Xk>n`k3X^Fo-!)H+jWoUmVhi|%0QGQ%Gcvxd}tw77K zF`9yNjqf=nZ4|L3GBa|p_KQQy^+F#iN$mQyWhwR<>!Z{t|IjLu{6(PCob0xIbkMmd zgV}De2EFd@rvj88F|94RhPDS*Q-%KfBRctKO22KKhtp;xo$oR*I*_XeZxF?OS&y-6 zlyFAkUY!_6vsqXNiXyj5tm;jZGrvhm(Z^d@q5u_8@uz%F|HG*+7<>^|tV#t1i;Yz@ z3)0wmQw@w+Xk4V(TpizcPevjd&F#2)0aT|_ntD`P8U?^p1+Ydro7>wZMm76oSO7g~ zFVgx$QQB(ko?}C@ZT8wrlK#$YDZ;P>tyvliJo_~r?ax=N+G;iJ)~D(fi9Yl0^IFWC z+{8UpE7)gyHx04Yb_U^%0tXb{qZZYz3*>Be3n9(&$O^3-_I9{?LPxZH(f8ruSX8ic zqM4hIXv68LuTg|#3x@rg-x6qktQs|oW8q2 zw41xaGqpn6b0<&vz;IqlB9E-CBmU6ST`0%I#+L@|@Ud0@qkLjA5c!DC`E=8Mxt0H? z0jjfX?QaytT_?wjQ*)-k#K-o7x7XtB9&ug=CTNEI5^%!<;%W>c8OuGgQ7}f-gW3~i z3STAQn`A}Bzhn^)QygG=f+#Ll_-x9$r$FbF;ICq0FRx3z*^^(gk42Bk(kSd|V&V8y zNkT4DGc3%81&cMDAUupI8A~#61=4Yqq;A+wCb_#;|70w2#XHuZtGXR-?RngByyUkM z^3A|ZrSm9_@pNQ+&Q&{vYQQh*y?E%COo6*D9`rq`hp(IGXnfL3C>nuhenO7^dMHv|6Z9GyR>d)TVd=~-S{r0v2q&dyy&1Xhpw2jt zG)7umcUn0$w+NkfwP9WCk6fzbzsHWb95+WnF3wNiOa$?CUeN(%%fIvO&Zf$#{Mfo& z&$-GWj6bq`@QOL@t{`Zd2eo2)n^-vM)cOwTfrUht(4Bn=9{1WJ_Er2q>Kv!^{=-GW zuGJm(4>c}@qi&rJ6dH}1toYbuX42pXV_tR-2oL6Gpi)_0Xc*q>h%*jUzG1s*F^ke; zvEABl+8&$UtGJXzk2t$N3cLME8G65K3o7qAd2;S?#ndymvi}%VOnOrglu~%yuRJ8+ zaA5oW17UN#|B~xBf!A_ooq~;WZZ;4z=_vYwf(rMT%tlY$g=e62H?#Fibo6E^dC|!N z0xWp=!?7*6DzY~3D4>VjH(WLm!uJ%y{}_tos|k+p^urxYVx(I9F@E#}?KmB(7|^eU z^nY(!$CSt zJ>}FC2)Hu>QlLgg>B%`c8X@MYP!Z-@79wbfIeuGPn-!VDM}&68MhJvZQ5GEmux=xm z3ZT7rp|n1dd2`4GtQ_9WH}Yn;H#fSJtf82U2}Cb?|6bk_(TXPzKlBpR*9->V2mnDv zBUJD`_7k6)2YxQOZPY;nU5@{23!y)Sa#qyFng;{y@bjjQ?<-ECl8a)r307N>FWgpu z$5{?Ghxw)IlKUqi;nU7cO>afa95WcWaBiQAlhei~tvyG{P0R8bD+fmj5XDW})U~t% zV+59Oiz`P@c)7V1U~_u2%_uI0F;$miXa0C}O_xiWA$4D#x z5ZPmxX(cy0W7?WTKk=y|Y|gtRB&dA*`>kCjih4Zy<1Ud$Y6f6LO~Nbwpqc8|0^@2h zD&Y0D@P8Tq`!bpKW~v7R<^0Ise*Dv3vJaic=iliPRA$MkUW?Mo3=^%8>Feu9Hp45D z&+h`&)zybijx#~#P3+pT<0mjcgd#F`WiI9FiX2E~u!eZ<8~(-S&PY^%uc)*Xi?~b9 zxlSwi><33_%ZpFR$sjp3HN5PM^nXcyrLNvT$B)WnT2tDIaHgGz)cS%kF*Bp2t4pkP zXb%5_MW=hs_AfiU)zXvfCwdtN*k7f9CInS8=M@% zw{agoPTe=w)00N=QuDX8Eu+&s?CU$o0xPApKt%ODJBb=27NGnj5+1a$bl=y%{guy)AQ0+YO zGz2BSG(VKSXO;yuG)%MDZfq2;uCBI!Ft2u%0B+pKhSsW|xsBUaUE+ubn~nAn)6<76 zIF@ zi<0$qPmDg1(ShV z@Om^;C^a?p%Wg`M+Y{!#U&~3zoV0vtP4viFH|qUkYY+jjek5ifPNOdY){4etA<4ZI zY6-#RZy-DV^XHr2jc;s2-z8vUG7{HMlTKP|Os3WE@+>MV`J3GR_60+c3}qBd_WZ$E zVWXW%7$~r4vS`)s-5SaG zw@Xf&P;QLGkB}?N^SyV~PE#2cmbJ*Lhv7~fi)^H##U&+fT2Gco1L_%W>9&3Us1J+gCR%?+iN9qL0xe3BQnEoc1j z+nft#qNe0eO|ten)z~NDw;zrekFwX@YYuPNE)x=jp=u-ufKX7bx0Yy7->N+!}T?2&=sKG^29Sj@?U?Cer2L7 zr=o(5L&T6;UTqq&g#u)D-<Mb{ zlA)WcetS;9V+u&kh5l7zjQ{L!Nv?!9dq6-y>CfS9IO7vrOEhl2)SQrfYI^zrAOaQR zV*TZGfX<_G0G%MVJn?T7mz9P}Lg<_OOpV zc#Iw5Dr(0jIZS5rS#1=grLjeB$8edJKHM{P(5o+1Ax3)NLLyNoIEdTGq{gc=w=>an zSg845#9BgP3n)ob=kzh!F+V_MV%G<>=vI(mF$alAgZG_(!Szf_?YCV6#M+GV(AA{@ z-*SmPbxku*aMhyEINh5_w)Ve|MRN$dA?Aq>f$r*XjK2CD?)T9Os6f*nupf_!2})n_ z%RXO;x|jK3SNg(;?I+o~Z;=x6h8Xze@R|CoGC^VMPnCwBDv4$4o=X&}0!u$oCu--@ zT)dpCCAD2oP>|t2BWJ%nQbZw3`v?rl$dH|&W0wP15GJ(Xfs^R()AH7z0~6QFzsTXg z{ROuLfmo+;ftr|zb3zMVkK)x}#c`q_JQvRPk;f-VpBb0UQHM;XAji37r2^UYsgZ;B zz<+sa+~1=g4#KAz$?=t{b_4dBlBN=rK z(`o_w=u-aA@V8s1rof)S;*}NP=rm?1c*N*OsH2B}CGVkrRF%MK&Dbbq$wL^PyxRCE zQ^YZmU0OOfKAylT>E-S9iA8}jyT$^iNWMw@Gh`iIsdZPMZdd-FKV}b^TX~Ce zfcx^7+rrm`Iq=;N)b?0j&8Hg#<$Mw_stNfWS-|Rtyk@tL6B>H9;qJ-ww0*TBRP^0w z;P~SS;pdT5xnK7fftYaf`<00aIYq@|f`PH%Yx)w^#Lak1AD8WYGz{f2`_-%IYs;Xp zhr;1)hZ}~wq0!@wfy6h9^9{UeI*w}XJD#7$%7U%}Hh=Zi4XeMtZ}$aSlfJRBs--1; zSg@6u+3>CJe&+xb;2;Sv)#SZcYC?R49-+z5=4ol)&OMF_yNf>AtguIf^!LJitX3w5 zfVi9JyNB3ooYraN8WDr|v%%h%mDSbjtKpbd8<3zYHzrBRY=HVA0$^Yl&KSktJ_A5H z9Fme|zD%9dsN;(V;^kU|hGn7a)>f@m*Po&TgHYKd=`&oK<1P;C1v~1!A`!H))o$iZ z;8EK)XuiuaY3>FG8{6y9Ow}#Ls3wgs*=K2fo)ba_K%kkgrN$BG*9EB2{j-3J14E_r zq`Uj)!2G*wPvw9h=jS`sSAl~%9}y`B&_4PP1?2j{6(@?CEAp`uN~QPL#&L^G9vhyya9VNnLifk0(Q$b0Hv zMsYJP9V06g*|c(;0sMMKwzkT!a9p>%{3w{FW3l-nNCcHk3+D-_3+LmRhS$$B zd;U`<6@KnS{AiB%s7vmS@$^r>P^}S5FD&`+{026vloHg^dSf6|mPY5Fy6(nvfiXyXB z>ipfLOHf@KR|9vi=0mr3Xe8YBG+sx>EWg(^LJ4ej`E}(eLE`_Q~uSg z?Y2GByBFw6#+z)TZ2EZ_97!wWmoWm9p%dgJX9@=FC1SGdfRyp9aO zNh?*O3ZI7`6XlAZ(m0MEZ5;d#Nln{&Wt6U?_G9j;Wb-s%_SIWsJcE6Owi+yM-=alB za7(-H5qEfpB_|`X`PMoaOlr|Ys-fgEpO|cQ;+wgLgvWhO-{nqxmq1tx878oeD3hlb zyzUFH4KvywuOwkcJn04q3? z>S;YGr|+kQ!dP#ttt&I4T5nD=&h9G;Ld;~*7bQAd=aoN1sDldT|2w1SKq&6Qk&wjF4EJetwrH$ zFP{-C`9>@GtKG2q%+WX6!M>ho?9@xyk6QyeI}?_ELy2AH-q_k5a{41nDewxZ<7B0Z zCW^Oke0!i~N4$T}#mBR8H1ran_kRaazyH4TRHHBuFXQ$89Zp4h&jOHDDUDU-wT#tK zQh)OsHt{B`d|Zgn^dm5C9K-hq*qKxJyP7yShaJ)tWX}t&i}R~Q{^9#qMkW{3Vf-5) zzjisGmv}u@nq^YQm#N9FJ~I4I9;8A$ueiB39w?^TS<0ksaA+TdDwqFbYNQdVEg~>Z zasOfc1H9FfsenqXb4&Ng*u&F*JXG+IU$eYS!D7+gec5M`(5ex1mCW8hV+5|KA7ij6 ztuB%>uHZSxV)&L-)5JklW%l;(o{w*S4^7|!7z1_a!&HaS&Tq8(V}`0dwFP_UW?}c+ z!qlf#Z7NO(S}^L+s{Ch;n4NHzJ$`a#CMQt@KK{?mZN{U-R9m0zZ9m5W6QOpp2P@r( zBNXarl$uA`FErH8A^vc!8Goj2VX6%c-Q3aZMxCR*fUrWOcg%_F5bWIYP;1f!=;|K=f#$dh91I`rwP6C-1->+1p*Psr!Jo}4A8SJ5 zJ&#By=-t-oc5(3G)LcvC^ z_<)LEdY2ra>M`K*pFFIfr&2G;wxzwGaMn`Z=qG6_&k(mM*zb`kpT=tavkq6h+;;gx z^M~5tL8Fj$vh$&vBu!*;q;>Yi9`8lIf|v8`jES>5rFR%0KOyNK4hr}$>|RQJ)tTq0 zfz*0tl-}uuF-{fVtlS^@DZE~zSYKx!;e);|qN$q&F#WUv zFcUyU325RCX6Do{G=1J*?0Qonk@6!~M}MwgvUUuh>k zd}yx)0kx|0>W^6)uS^Jryu7@nMG?@?0h8n95WgCWt6B4!`Rm5c%W* z@0WaB1RXHpsHJU?QFnSrX`&Npji(jBP$+hO$!XXu;qB1qu_DV5xWgouO9m1GlNUDE zYVzOxf-(G^Z?KcTt!&iVkW>w>CYdjfama|#A&RnQ`Z-2YkpCE=pPk1dD?<@#>^%JV zL~(Qm`|a7L+STF0Ai&dl&SO+d45+TXTiE{UvBF=VG0wg9M&OH!vM)E$5vL*W#|#et z{v)8+`Tybyfe?72l<483*;i|RY2}P4L2sW3@rF0Y!iNV78Ihe*1&FC1LTWa@2%L?S zUXhwSSInjWrgug^lO5PZ*}@G)B;5T(p%c54mLw-ftHXDYa#i&902-s9&d<{*g~bK1 O2vSqlR;pL9iTED_BLJ@e diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 69d89663297c02a2a3f487ac473212829eba548d..bcde4d84f789c6c15010bf80e27eafe06ea2798c 100644 GIT binary patch delta 24116 zcmb@tcT^M6w>BJ_bP)sr=?Kz61Vp3+5JXXmQl*719qFB+N-rW!kRnL$(rf4_y@T}L zTS5&bd57P<@4EL}-+$lw*2-iiXHL${wOFsZ=g zOw)P)o?NHaZhxkZ480>rVxWHm9S;86>~ORVohX)0E7~9qYrZLZH?n((nGHP+N$4yE z+VYa*&bQccc9ktS>e2e$~{rlI-%H6|1Un0h20;_($3}F=$`!}J9 zJ89x7enPI4nw!5yUs5jNub*ji%`8*B$PIuz-H2G1iRa{a^xY4hLX)n zzLr&o;WwP9s4+eoyTz)%#dVd|SL9SwW{SfFU0roPV~;sHR?n1D-xbh>UYs=e9YO&| zsw{4lp4MI0DUEezCVP_ud+yD`LT_VJ#haEEE&(lWhVAN-9!@Rzmyi&i2o+TlYk;cw zM{2JF^XrQ`hnZ>;LJmmo=Qy+c**bl!hg;J?vTI(A({e|O1V)@%s`$nzMI3f5nuikL zYYg4TNWO7WYoYLhrR3RS4&Ufl{_ARB+Pl|QGMjlE)dAU}D*O4>VOS^lr^f5@dYH)i zCS2b19k#4at)ReHK|)UGp)#J0JP>xZD=|(j>cqpxclxj4jiXiJ)^n?P&bfNEU2tE1 zCa*~vwis((zQn$s*>KaokWt#XK&t^xxhy!>cj=$|&54%@*;7;IV|1ODTCpIW0@KvK zr`$wDME!N-yJXo{qgN-vb(Bxs;ZlPR4i0~sk6*0y-@J{&`}^?a5)c5;d_lzoK4@~( zm3kI(;s0Vox(mK=oZwnIAlVSaV9M)mrrxqqs(bexUigP&@=9TH`77ke!m9UOaDUoT z>2zEa%wec#STD+VYT=TSEEC4LW1@~R7Hc^DZmYT6O)?szzrF$+j}SFiWetC}`ABr) z57sO8@(N}e?jI3i9^1f&uVSW53-fh^Oe#M@d$3wFmW0+eZPfrwVNFb=BMYvP0lLm~pUW;2F1E5`o_L;E@K&ykKjQ7*bOq8oA{_pOJzn%Ve@<2S zvAc|qtd>yyF7)G-sDlJ_=+k1pynQHt*yQ?lsXl9#I5vd4Z?I#3lB{#-QzAicwyj+J z_it9ppMY&edf@%c!k*-^E!lU4naBL7QW>z5L>O%`(v zcOgMj;xCWgHR*t>7LhZ_Jl5-_8e5TpRgb&U3gMWIRiR=8v0&9{1lk~*OEqSy`Nm~g zcbF;Du1@`8*mk?N?g-v|(-a`dYe@UWC|QT4UQ2jN`?J-K&048$X+)2D0a?*|yq#a6 zzY0H84q01OAN?W%tAW+q)@5zt%xY42``{*)jka za=qxN60Zi@hP)Y%_0trXMyk@L|YJ8X0_CX|G8|&paPB+d3GJPNYW~V|M&(UV8P!lzywuO zJje%1|2Y3gP(wmu? zK?;iunQA{?N3iYH7ji3X`WwCC^UVHYnxm*Hx{{<{1#RwF^wszi;Y;dk9!4OCSFF!Z zl1%~R%{RKd@XcJs=QgmdONcn~v{p|dDsuzA@U*4Mc!$ZV6Hh-5TiiHS>wNOAvbz+M zb&4M3Uyn;miyCBj!7MIL_xJB#e)*DUz8>e}IvjF1-O1QoqiwovuU0E7PSn_vpvHTO zlZI6P(1Exk;WHL0Phah5yX1ZM3r(2hudhKOW|i?tVs}!p^40}11zP1eDlv3&cvJ4}(Pa)$xzU1NYyaY6V=s^SC^P?}xNA8i| zLtWJPMJjzn>DvkZ65Uj6^#?yEclC8@yE)j|qq~w|n7XJvo4ezQN#BlJpSVf_^LsdY z?$;L0XZ8NGH!(NsOXgI(W4|kQQ9FP+l||<2RH6cNohG%O?cj9SQg;?%*;K)lG0n!q z&BeAhY{=jbvB23E&ckSjv*JwopLR`-@*Y&unX5Rhx>sj}6qywj6{TIIrrw2xze@DX ztZG&8PA(mT^IS5%O=Q%Fy`CtUoOVTt1;c5O$wm21?4=pc-$Po64gL;O3n>GADq=14 z9sE-JT2%0s7!7i0te76uA_&+4QY6kZ^$e?@f*I%T13NB8=ZWg=_zxN!D z2*XT@IViCsFPi&6ALT|8F2D-GWM!8 z;bKyI{-x}b%bW9ro}#Fj?nrVm4GqYgm}~Aj#mcq-gxOX}E0Upn;QHh2*YB*|N&xf@ zBp-R8btc5wlW{pG?}TZfo^6l1;7j+t!G-K;r>dKvdzAae>`l!I=m0UPuF3^XT6plW zXp91+H9;gyWCQB%DFshIBC=)8#;uNk zp4LZ5AvMgrjTOwp%MZRmBkRJ7>S>sK2d2A2K4*|E28ENgxgzq`CxF4by#l4larI%s<8FNq@MF!-l()s zMB1Zn>=yu144O>cdjN@^ZpdXy=%m z$KF#r8}X^iU|ju0a6+A-%CN{!mZeAVqs0*qvQ$#sY2E0?;{%hDG7dTl`hpF4frlU1 zDbz-h=#X+x1%uZ;A@9cz-E5*XTY&F^d?~RRfF3? zV$nUPt3Se3j$!Pj{Bf)Ik^A@fUjMt+WiMB`hV%oZh^H%1n-#wl0D+uqh_PRYlA1X9SI5Bm2;oNica?==DrDwEF^B z+qfC@Av_ys^~Z+%=Hc0m%&@t(A74ElN_cCyqLYCko^MR;VIU_rLbtFlb1yz)O8T~{ zeYbvpChTl~7ROJetEd{g=GQM=$mfGOF=uhW0F?yz1zE!}IFwM&P6Dh}dRSaKNZ~;n zjQE<#_9uejnm+zV3U_#Tczmb*XEN>jnF-~Z!o)H$1vs9*CUw)ElWt-KAK^o4(dfki zZ4qr>^*tOz1KwI6Q=7N#H27M#t?wdwxS`G6(6+RI!2f_+?ei0ezEm9LJ|l&(Ch(~+ zT;1E!Mp)(mFR@nOlciERCl5CyvW$__&kr`0f?MC9e#gb9M za6SAo;J}Ift9bw%@foMKTQ4pHQn+4pzF#ZS(C@)TWNFYdjnm8ap_qg;i4Yt)pti%^R;%i2kYsm``(7(1H?40E7bZBT8*&l52N` z(E77gZQt7h8E9i}TU}))QhrGxX7TXE9>5-p36E1YO?szvT=!U{c+7L%t+rwx%z(xm zZw~EN*bY9A1*k_%$f~W@|G0a5pngM~3v@CrPM&+Fe~V8{%&MvyZ{puv-MFTvrp~Ub zn@+g+TTsCI_;EMT#Mh@HO`WbDrr6op$t)%^@zuMyY}NVt6<>Sx`HDPCgm&$pk7&Nn zGec>4QCC!zp7VVx6&!~YMdxr{5COcJhoW|6USiBlXwAbZc45dmMamjamrnEIyomvJ z>yX>QAE5)S^bTb9%KW-Qm((`$0GVz4#xH2CkxgznAPA`G^h{#s%}x%1UcR2y(KPQ> ziHkH!`Eme;y?D7C!sGFox_!O$MeSAHOiYY+S9OTxWyKZUe>$39O3ci13GS$76HSn= zB`@?U3JD~{$H!-a_%<>!V%~m!@iRnDTRYh!L-7vuBsPCHOBjndPbH&!d+ZV_C)pk2 z#`ml%4p=Q>wN;vuA9azCzz_|lOA-&oa|Q5!8cG*A#P{1|Lbb7?Jd~m^*N>o2cwkt} z<4Bf^y?>SN?r16|!d-Q5@z;)V-gth0RgxNzEH zyni3SkGydmvL-@aUv((A7yba^ejwfJPFeJT#4@CyIG;h7fM$0J2(>bMe3E;McWIdO zU&I~MdZnu&%(8TAp9#293>I9t#s($ybnp>!^oh*5Z*Q7@X;--R3jDV@5lhc4UCDf!6-w%zE_7|P_dhv8~C_};2)RYuO1nJ-~ z=gI)b9T^#sLTD&XPi?@SmFcRSCv_ET1oRF$ako%~+jAK0(!tvzK9epm1%M%H(Snh; z&@$0)pItV6D5)XzdR8n%yZOKjkP&RrzLB!~E_er4?7P@+d)koH69~$_9^K|^B&~;xb-jBZO-h`P+13s{a z=R;12@oV zeSP}qaXWTqI17rq(#)g+b9NQLa>+Up{!{zR;&?**vYDo}_3+^m5X5G}JEZv8Gy}gP- zU%n_JCQjsMy|&yR>oa-x@j;Yxs;s951eNMV!Y=Vc6)xOnSV% z4tJPdefv;&?9ACBh(Y>_xlWbpD-ouAVbj_GE@D}dq4xnU6bkj+b&n>RL40H8dUJC# zqUDiWD$)f!t++Ch}V4sD}Lkbjb6Wax*rhm8NH(+ z6vB#!xFH`YnyR5t|26C`hqJXjdJPnuQYSl*;C=b5$`0c)@Y#UBCcsr0QfNz&qh$Vk z3{2D92Q-dV1i!s}=|JNrfl2-d@h)Yx5^4VQAX9scc?iypBBEKv{L|k!1TuA6K4|O} zsO8;bVmdqyj?F&K_|8fMA$eP3H}&R2jnCDYIS)1!q6D;dDLqO*o;zTtiMw?lg?*Gx ze?j(VzS<;Hzn|6_yoMqg#!wb-2Yx*`hDqKXk~)6SKd?er6-|Jlp%|d{F#0 z6Nz+Of2ta7pU`I4Sw`HbNJ=I6!g(tbkcfVF3avE3Q`Ps^`S>v`Huj#nhK3PxEJqvT z_$!V~>LkU!DN_r;oYa!N+hD+qiN?!``m=a;#*amId|Bu7BMqZUU7(K;B_>Nsz{K%;sR4kS;y_)e64IK}>(2+6xSl)*Rn83Ib7U zNlZ*+t@tJP=6Xl)lpwB5-G`fa7>vntj^RF0ElWunkl9Tg=tEvZrww#h9(K*_Vhi4v z8oRAN;qZwF*n`y%xi~jQx>${#6*E@v!ZGq2SD`U6J$yLbOA+sYW^7lzUgvd0$uBcn z>^e@yKe(DLm;T6Up_TMW#;XK$6lK^Ut-FqkHl($=FD5+oX3nkB0j@~sRp#956IV6h z#O14>A7ADe=`-i)M+m8c#5Y~se=|L%Rl0;Ae-xyM^%^052mjIBy;z9qV_YKrQ2X_h z1fE<7>6mbnpl21J%I9Ce!A}U&f%Nm;2D+Vc%}Ch?{&s&=!tE2v{S(U|dgR%5eOlkg zIFz&WtI$LC?(WZJU%s?{J?)f{A91MC@sKKTYj-8e1TK0hm%bS z34aQUJ6pnu*3>nOVDfmsxp@-OF9m>}fDq^35C}8mjhu`+6y(1+uga#Lvc#IqNvUb% zNVFu}5+iY+^>8spyK3f4K`400BWSi2@6}qnqPB3T=^a;Y*HwGwabv!#nNi_Zgk4iZ zuYQ)Lq&qed|05wGVWR-!$1nd<_Mx82F!LG>8^9A~(7ze+){3`tU3e8>eBob#Q)4;F z9r3iQIceX06>qWEtvAARw9v3;hV8g7sZ_r)g~@j)O+3V;Cwd~bQhD|8w9$1x9Hfg6 zBR+@?Oj~-0Y%FGwXew=w{N2!lOdQ+mXLi5I?=g2ZV;_VyhaYQ|VM7}9T5Nc_est@g z2)2+hYpE_Q{CPi#R6GE5wr;I!^<~2IChkFn=N}9lgvM_qCPgrl53rOwj$um78yUXv zS8{Th`i-u+Cp)7#5soOu@y9S6#1*D9?7oN&MZWP?(2WRy&dPQ$oFdS|6+YF@5o1QZ z(Vfta8R3T2imu!&Zeg^EiHPn|Q-`$K&R$*%ZJECfkap;c6a*%y>e3=-uO@my}@m0uaUauSo?Fmxl*%Mg@iHzbH%T(*fvqtD|j)13{?Z;kM5XM-~QqtJa1i!{8!QPH=o|LpshSQ3o5MR z^OibL$D1RifWEjE`yQPDuF1~HH*NUiw(4Yv_k(L@T1BRS`F3szGt|RS)Zt8Z(Jn>J z$(CvTdZ4v~y~kdEjld*Z?yWC%HOr}|89`{4sCsY5@reD&n&MtuF{gK0cglQ+$a(A6 zM{y95P$BXlja6OK|1ABZUq|n^)@X*imKDwgi+N{0Ce8e~sDt76{ z_!WRW8Y!n-&>kx2>CwM%-3w(xAB9{TXJ8`R+hr*!DVN3z)Lz4?75~wYWQeJGZ;CI< z7#J|d#l?Bo+-5Td2Q?pJ(DD(Tjl|TKP3X`b#`|e6T%Pur8d(*NX86meiV{CO9LrNN zIqyx7LhLy@hj)aKWxou$o4c0HSUwJD04{j>A}x`0h+QkEVS3NjLYuB5%Z;`Rhp|&d z?T_to?)vA(x@HyIr+HFtBcGW5PC1OlU`aRa-)9JT(EOX?gEyAO$bmNm&#z!i#dtmi zH_~ehw-CMU1-s(e@x3{Lv!L9r$TlRo%h0?|AUboHu*vow`rlHlcD2MZlRRMEXivDa z$VSGHL!y9aLWz*hI~P3Tww=<}NRzFZTqRP}0|`l{ z;c@iUx|TaF#bBC~w6}bIZz7rN(e>5n=mspYToYAzNz4-dmO}IPBI_)oqFUQoC)Es# zZY{?QQvfwi%kj?_EltA{!2E}5FEwsex&RGyufy&R>2Ay&!1k#-K+qu2Ocr<^lI#P@ zPuk5FW@^602Ir2gUJkutf9eITVy}kzE$=jIuhSoB{7`Xr7M`iKkJ;L?I38{B@v5?4 zWMlvpQ}|D{*CBTq?%ls12%eIYmq)FEoT;n{yX0*We;tYgDhTvkOe!!@2?`2^Mn$<) zi<*GlhYQp=^xWoM>P|-#2E6Sq5i#i3-G%AvkcqpY_eY?5m2e!)IF+dkS)L^5ymy(TB0x6kG0lq<`T;Ja)g-mOum<@tCFkI{Y)gvGPb0m6DMWgBE4OC|hDf zE-_DB*!72E!YPFB>NghN%$fwV6-!{Yrc_YZfGDpG-J3dA7F9OfZ~=W;5K*dt$E6UY zd1z~=vu93XmT^nCD6g`Yv4?>!WP7UbBC?UcVl|(!?nrgs3(rv>84(qM5!!}t6(IH>u#_h zl(+JOwN}Q3U1TFwTsb>Cz%Ig;Pv?L&-8g(b)&|b!}xIzGd|D;X0EXyUIGS` z<6jIx`4F30APaJDauWC5*!PMhOIt8J?AqxPAZC++Me+`xh_V$U7}w5lcHHgHPG>-_ zM5Gg0td)5`AiX0FR34JLZ4>tKWo2cD3pIE$d}L%~>KxaJWC2-O)%Wjza#zvv2n$oT zwY3pERYs9_bBVUK?R4HJr>Bnu8S&iZR(4ilArY91C%Aj}Rq8WaJxRQ3jUr6~Qqr!8 zBCXrh{GoChH|wKEBMmOrP7>-0u{lIW+e!RIHdH&Yy7_%#u#N@M_@JCI0z!ld=;Xu;>OP;En&3BzFWA)%6su4C+ zf6eLFqu#|NZkYN-j4KO6re-;HsM%7FeqUSkK7@?PPH!Ye5(wH#PG^aIhK^yKrVgy4%q5nNV~tW$~MF zYG$V}o7G4hiuA=QMox>xGy@mw0Gs3zEs2F|h8v7PApsxcXdTXvJ*1cC9Ch~+^}BbF z$C~0N8V>bAi-5}gS(aLzdeqD}of{w->NJ5O2tLLvq=H(jD4>85hl85Pz*Wojl)N{} zhIiw}G^y|?cdhCh{4o&*jq8cdj$s%ZF3b4y!u6f={tT7L)pt0CoR*fbdR?W}iL4s? zp2;9w4{-_Jz)CPiQ}>=CqBx;uqEcey_yA#)hj^W+4Chb2%5}B^W1z8vHs{IVBu~V~K8U z_j+H_2ncAs7H?V*(z)>(gk2-Tq_PCZXGy?Cpf$`pC^&d|r7I#dG_>`WaDXW#FuwaP zRuCkYr%{ub0C1C9k3M51`b0$Be<7yu`yTl`Ify?!@>Vu!ao2jrW!u@zJ!3qg7$z6_ zmdidYKWnkrrElz+bSon;n_8!%kW|Dj#d0Cd?W_lLt!&GushDm42n8iQ$UEN#qD`sy z)BqSvZm=3U&aEA!sdT-n#?NdaqkZ$d;pW)vO&;LeLW1D#%1aPh5U2)4_mz$q{B&$T zDB8$cVqc5a4b)5?rYn+n*zdS;-xL+QXN)mn8Lrt$8worY|BvBwaErRuH%+a%589s? z$&+u3SS3$fr4yebbOVcdGf;r#K5WGj-dk>hZ!_jv{Eoa)vw6e`;a@WZzDREhFgYMm$ z8w(3ge*K1^%uHtQ3iGI%-3hG(G`YoMizL56Qz%H%zEhR4F^DL2XqaedYN%^!vhwow zQ#PmMqSRL#x@s4FBLpUkN2GlBMfjZdbx0wgV)fJVVR%GDLU)U*9$*o!OyP@^nxJHa zTG7FeF5YXc+@}_ZXWo3Bxa(jB&b$2JS6;oQOalpRmSq|Ogk{ur&9yU+=1Yf1wYP!8 zt%=DSyLr?8;VpK8>O@hR_e}=J+m-bRe+}c(=TO7cGthLbVsYC07@C20rEc|XX!Wq} z=J94xdOT&PYX|A^@Z+{+zrVBJCrW{dj;(({<)#P&ted+PJBkj4>v@gC0DByJ%#=Uv z&j?T<=xh`pp|74eZW?S>+S_BeGo{PkWieKW0XNox-@v43#p*`JwcPCzL$3E(jOCKv zPRXA?uf5N@=}HO1(#o2$uv+u;(kZC<^`ya|>D{*CQ+4*M1<$uv==&-l@g@R}oiRLG zrP59X7)qmkkvFTOZli2Je^UkM2j|QtWcWui{Yf4W43X~rllZVvY|T)Mka$a@fV-lG zKEKqPlzuY&b?pU0r90#D$fWtwWj6>{?RH&*Hddy7c^+x9yvM+_uEC; zZ4QCeE$KMJU_Q6wE^j`wjdBChD1tnz==uq_eYR2JM;lFq{=LBwIQMV z_re^;$hx(-B=A1ZotV(PSo)&&X>jL8**JR!AFFQ1{4|@vKh&pZKcfe@K(wks(SI-0 z)be&I&Ok%c@BjuRmQQ#+5=T`_MNB zj$hPtRjndK*4^`}I^;d-;b+tX&Ti1n&pTXgBK!OCfFemH6IX6f?3eDtj={!fB(R4N}dhY!10vH4&)UAL4VJH4~9YgY+%11)--XI=q?fGO{1x1!o_W$<&ydxih+f^#% z_?Z=sNHDT!G2T&Zy~FMMHe?esJZ`h|be$U2^0(qR*xD8R}#O!$N}ufOtrkQav~+D?eXX}|pt`0rv1hnUb= zru)=V1_h|b{a4<*Ez(_XLUvAnbN2HWLnFk2-2Z3uI*R(KoVqimV)$F>+09KdYjqnX z_h#iyw}CNU+&>IV1atRr=y|cFnj+STJL+)Z7~227(8kOs%tVp##h-s$9yf*%>5=cN zp<(;jkc-PLgI|X_(P$Z&UNm)Wcap;+DRPG^6IP!o$9Fz!G3I;uTZ7Ll%+h%>UcOM# zW>pMVNnR~KIAt;chw8;EPP?ee`hfl6T56FF3-VkmIpkj@W83UuOU%oRJxxZ~;3`mf z#ESkxNlD-9##btW4+-7<7OI9{%kuh|b7&cS8eE9>I*%=uuy*IOI=nW}2^%#FpNRZm zWv-t?$dLY{I7s`o98EUI5JGl1dNhlr!@U0X`zMpujTW)>)+*+U8~aiE1uwAD>c4)^ zjTw{M$J}`YR3&6UhL11XfaJ?ROcj_N4R%aSFS2^8AMr3LeTuC6=xb#{7YC~y@J_p@ zbul@=lOMma*D%jQd`C2E=={}E;gK=I`t3VHPYrjOt1EANxn?$7wUwUJH=S@y1@LnX@guteQhP%V6ZRHcM$w#+OS=3%6QK}Ezb?~7O1e@v*H6MGO z+|j`#Ux!QXXJuvIV`MOIRN9*S8((#rBSTf5(qnS9GCRd)43eSJaKBrYbg+%8IVUXB z(&tw(CAxN%9+*0>#prBClgYKRsWO`g@!j{uT!CQ94bHSZsH17Eluf_L5K}6+5&XY z=*0Gb5hq;8RP_A5`(wtK)<80Bx@QpNr*{DO%{4smYe}nL!BprFx`pOt3mhzJ#w+e` zm;&}J*bDX7dAe#gGJjJfuI++NHkxqk3Bcro^F|$#dwTGGA^~6`b@~;$vYYM2P!^O> z#5e2quKlNq>!VT?R-(J>sk0!8{JG9!+K^Ob*-NS|*%QfZu!0pARQS|Li%A@p5#}a_ z>h^a8ftFYGP<=2k_W1e9U%PdUe8;<#x`XoacgG!>C0>x2b*-CM7e$_;FExSoXCCCG z`_>c==O^BE9|_+gU9M8(YGt3IFOK+0RZJUT!Dn*0yGVJju18f$j6cmTeaU~CJ-mWd zU;?t(Gn+p+>BV>Tk_>BS5EMz8>z~6Ssxr@^khNE@Lg)Svyq{`G45c%z;hfH~JSTI%e>?_Q%rOz&Y%}R}C4Tu^b8i6q#hL7--p!%PrC!XCuiD+3 zd)x*iF^knE9RKDkk{D;%U;oZ^`SWV@pK0eqiYJr5Gu8~>8Z|jw+c8{Wb1k@w_RPc< zUp=#dFnZr3CLyeA{mtYX9$%_)_SM^UcRI)YN-vb7PYXhWyurKJJB+aQ0iwSplvh_X zly{UUYD*_IOW$_Z zTMB$CNq&A6Ip;oEh`I+~#GZ}TaYo3mGK5wvc*!p60O+k}^NSQ7tZIg1A5V`fwu=cu zkAnFz4eTxowZ9H>394qNMwzkZ`3f45+QNgSF(Pj?ho4QvmIDPXSCXaXRH{{JyC-7L zn$gM;*^T*1TmYFo+rs$I9%4I#?FR%FZ(PTc?VaDaj}@RH{Y29~$%~Bfvqm!O+ z?lncVk3?5=_a{!8e4n&PHBhTDp&m^(qfOWa(IE7-k1ix2PrTCOK1;ZKPOXQ7lYncP z{?M_epg;YTAV4@K<~ly-(^d4FWKpjlTx^TJ=ROL+s;*NQoTaN6JC{f=L9nFh=HMzf zHX5`~poM;QP0E!lxl7KD$SOpE90q%W#9!$9Zf+Db;KboY!AwI!201-LpIMo3B1T{Bt49K%0@fy7u>*_6=%t z1>A46=!;_xG`R=ve3WjKmkv5#MkF$%V*PqJJHxoiJ2U7aJ1YjW5EtUpO_KWs^;8+l zvDk9jF%FW->)Dc2(kFrb!ie;3x|#!6;QTI5o;}a|Yp_PX?IfACLbX_;%R0(rd*}RR z*8;EUVVU}aM_vFs_nG<6fhFHw;|r5gmg`UwNJpftZH!Y&>Z>90itNo$L}H0G>nPdk z>qzd%uXps%qKW<13=9dNVo46&H8nkA1FvEfc#qsWrTQlM$hTu;zR=9)Kj{WuZT)tO zeH)ir2#Xk`S9pUUjHkSMpslSEoYzB{CU)?eidO^vO5Uv|%08I!KGpocYVK)k+Cr&j z(9A*nz&W~e%E-P<1H26Xhe>$Q{z5Bx^EDN>#$qorNr&_YPyg}PbYy^bh}6H5VkSNf z6!w!MWpK?pym*%eu2*9sOQ1KnFfdKlPLlcMjlp^e$!SoD3YASD9`76F#@?~Lfz*Vz z72vx_T(P=OqmNRS^-A^LYBuT2qVaQWXWQpqSR|NW?Iy;s-WMc*A?z&EC!GumfqWotjT>~xD*1nv&^N=XsX^Nvz4 zc(SU&Vs{O{qS5w7l7=14--Ny0lf)jER^eV8mF^(WNBjc~%qfcIB=q@8zMqL0(@-?N zsB6}y<3aI@_2Y=6t^S@Ts5Y)-!OxjUy@n_{j!VpzLKY^*mkr`q>P9CzcnZ{L0qFYJ z9O2)3TYtYN+G6))atl_@c z*wF_H<6llASTf1V@IFI~$JJc`%qyh{Kb#4w9!*q9?DE@Yoz%Q09doSDO_Ve>C3Bxr zKSHWJdW%S5g=dHFWyJ1L=Mt-U=&E9}h!t3{^eaS(d*1p3Yr#9wP>-Kl;s!eU4mJsk z++xQgPi=P<`l?8_7O|)w*dYIzL#8iBp6*AkwEW_LIDg@nShvj_Y-Yhqn`EK$fV6yY zzlQl#z3Y4F(p911TVz@>RYZ#PtQLkWLbTa>eQGQrcRZSBjJtf^kU_SH_1$}Cakv8~ zu?e?)=$u0 zaM%<``rbQU!lC)pr9V2NY6l#fkjc-#dp#UC&jdiTvUh4V|G_KZTYcW{%?v3;dD#Hm z#^5$$`Ack%SBQ*9#yY9Jao4-Lv+wp0pn~}ukTw-B&56+Vg+rG&3kht@V}H25g{T!v zM|yz0tVUk9pLR4>C0?UB$ai(5le&1m($TU^+Pl-KNTJvaFgM)SE2v=ioAaWhwQqom z@y(ao1T9nk*%p0Xy}EnfI8=nBW;2-!9;fc)1$zDV?UsUMs9q{I;%f;pBR^^j;(`lA;( z+Vy6PFS?aFp~TOAn#{=+&pjne`-ygT4~JgaJl$~pbN1h3kU(^afM;9@Wu00~d}B3~ zHnLyHXO$35Bdg>-SZwBdZL)kMWTB3{D7Yik~Cm??KjP4LO$*W@bC4YPf z){ZV@RZG*1!|7P%= z);A4i>y03q9%V*tO(M;A=FJjNrP!``^v0F7?zHXH7 zsSBHKFk@7v5gSj)yKi&i-pRJrE?}CBMq~7dU&2<;upoeBrgDJYiMt%xBXl<@UHSC$ zbpR1aX1w}^H2K$aG`FEmEwEh)bwiC zKY5y8inY9DqVP1z_T01j)cf?Do}>NSBxPZs+#X zkiCI{{!?Z!{LM^P8g%Tg&u`r@=iHVuIA%=r^fC>31@$pG3oIdvKJ~k~+$~GXN4Ux?&BbIRBi2DDDn>WhgU&uXTDMK3mEg=qTiLU)(O_8P(bzKXJiz$!2+Zr;L!5RJ@v@Bt8wdpU!t`p=`_R_RLYvFgK?b&RvoN<>T%}6fBYCU^CoM? z-#%jb`P`uJ9Izdeq||3UeFm9nl7#qS2`axj?aDj1Tqe)3z5JB0#iD?#Jk7_ z%t&TjHqGeo9AD=eOY(b2%(dI~YrOs>{5{&U~iEcun@@v(`O{Pmz zQ7~LIXAkYM7}JM{KCVrkM#QID@Kwuq$Xx3?oz}ztSd8Q?S9>?cod6$&`Jz zi0qqwjI7oS593cy8P0twN#Cg8x=6gbIqjgn0~&pOf+DdsFal@FXDYSEDmX8V(DsTl z_fClp3c_tZx8#cf)UY&W2fqvTY(C45!|_b8+;W0k?jR?$KXXgIVCeXASK)GL7Yoir z%&>Iip3FxeJGCPgTq>e_Z|hu~4hBLYIgYyESMAW7voT;#5ZBaU zbD$CcECd+RpDYw}v+t#f!dXTmtrkfh)ll^c4lV1oU_Bvh2-?TeZy60xqm3DAFaO!` zKA{3%@&}PcM*u0EG#|kkt=PVh-MPqtn*@3^CxER?U#pLCcoF}b;fc8hmr)Ww)fG6R zFgT)+0$%;Cl65r6abqy*#^?4_uQGyZ0chAD8k?k7SJRT15E~BAjezL}+{z4fQej)i z&E$35O)k)XSSy!oEB~eVc-x($76`Ofbbn4e_{=#4+C_Q1?6fw?m|Y^81|=EUmKGl+ z)~%JtY)0$e!qi?%@l-#?w3hE0LPw=}UzxGbiNE0igB&}4S=&^w5^G9x=UcG@ie$VZ?`Q)Rn0Mck;dfr-?a0Ln!hwoeeTxKV*<9i zuUK$QN!<;aj8b!1XUaG4PgLYRm#|5rmmxg+FX`y$c8@RFQZ<+w87S2rEYyD`XMOf; z5}|E=g%ww}v7+L6$`f`G1O(wi@agSwGWYd3oc~%G-oVu!{7M-65p@_m9eXv6(r<|47p7PAwceh<-j-NEp}*OjJBBO} zeOM;KL{Vv(FQyz7JVO@i&5lsM9RR@DoQ3?y=QQqU_3d{(=`8<-5VbiHvqPPr@fc$= ztqf^J!L$>-GnVZ@NaxC!!h#L zFS}{5<$KJJRBq5gbkw&?+y=}SAc+~*CQ%d_$M*Le)S<>wQ<{Ab7woy%fcbLUHQ7GM zorC7SD!QYg>J@UUUx5_3eE@zv-mfqS>_da^5NhvK6naR=9=mtWj~%nX=Dw_akb*Gl zS>P(;s<#LSUOctqlU;M=6@T5iBJ?u+j-enYB3|odONEPgY1A4eeB{_6*c%#=&R!?V z2(llYk8NVOzt0_=JTOTf&xmRlG5!Y5N5gF$QnQKD8FZdF!#SVqOoK9K{eKMsq|LYN z_;u%tv~M*+YRR%g#bzJG6p<~hgJ%IE>qYvf)`!%~x_DmF_VP=r*C|xL zn*Dl9hFweVU)G%j9Dd-uJOiV0X(&FA(begF4wVmP5%fg@CtW>HgZcl~w$CJH7HE`H zm2EX^nGuS4huWVONnpl_C%FJZMdU>3r3fn8S4yM2=k2K`u0AV6xP1Y06tPgW&sPQY zrYr%1N%jwAckdL|Mh{^o{d2u@9Pm#Bemo^U5$gqmcF=3FR!R?Xc>y`->BpLF(W0JZ zy%dg*y^CP$D7OY`-oILnJ5&EYee)?aJkG3T{mk7`9Z)57Vgk23p$7yPwD0l${ew5E zxqbzUPB2{)_C29@7~2vv&UI+4F|pvhid-oA9i&IHcnkBi1H8Al_v82(+13yqyw4f1sA#7Chpgyq#`}+Zx<4vc1CBP z8obV9AWGft80b;i^W6u=MWz$4D8i=QI5fj)hhEP!?!7U2N4x*b9)8vGkNEr+dJRLP zP_n|f)**N-%YP}#Uw*GR&f0<*f^>i-TLy0b5YWToX)-7Q|LL;zukusW4XIB_w=s1Q z__=gLdWAg}JGY*uNFz@?9Dn14Ft1(Rlm-mgi~${9{4fW zQ}1qLaj7ef4_g1Hj4J_$s{8+AOIgbr#grx4LRlgWl8Oq6u^W3eb|U+gkR=h>v%Hnv z7}8iXV+m!CnCyzgjGc*L%>3{4zQ67HKhJ&U&dj~%-0wN}e9!qVpU){QwN5L6e-2ul zb$BS-JUbo=eim4ES!Z!nzKTJPfk8-HO@bM^6L@Oavd9twX^i!cZFf7JZ{^jEZ+9#2 zC@*9i9fLFbj-aPJ5X)A6%FzUZBVaLcY}d_b(0lwLJ_Kv^Q#S58k>a-Xdp58XYmt7} zbh)pr^1QsJV>dp&*|I1Q18>zBi`TB)!!&txERm(a1@JYvYPt5LO@25D+Pu3r%ryXN zq;D7(xSpv<7qO1KGfGEGh@!S|{ym!WItaNQ=^=2+d1Ym^se;n2m9|5Hwju%2K)|oo z@`GwM8o*2)=T(l;DM=4|2hKb9b7|E=A?uuFxHG?4x$I( zYIYvbee66^tXqQdokDq%Rw2^3j#<&HAn!k+*@f3Ol@j*z-ixVI7s2?Sbc>n!EKCc? zgqzsVed{|Dzsclw;g`B^1i$?d=d~`$ICiai)cbmT<)a)c&4BC|N-SXZ3 z%^jrP$=V?fF(Lg@lZ0VlEv^^x><-v+^y)|V;H_{&zj~;f!W-6AD{*M)9%fUo2G|rB zbomG_>>_0K-g;x17*3Jr1h#M3&JCe1q-iT-4rx**F}&We%D z4cu-(qe{Okzxjq&ShA(D2wJSG1cH%kb3sLd*6-IZq9r~K*YfeN44efP>-u~ap-A{N zV}HL^Ef*iZ`rZZ~tfn|-U04-(Sf3Q-F>E{FqWubnz{LG%v``Fw{^wB|`|j^nDESfR zt_Uhuv!z)QjQV_eu8< z$HVLrL+1&2{gTQLEMNNpZt+oxU3hDeP{ZxWp>xZydTEgyCrbLK(kBzW@kTu1bWL}Y zKTMCZxF~cWus{6q%!>3}54~9*9d!|eh8wpGl*{bFR}OE3@8sID*N|GiV@d?7=N!7>O)?fO zfuVDXf-|oJSpB=rZ6k*=lV9GK*>o$sUToe4pzpQ`qlB`nj%R=s=F%&K%#iU5D@yq@ z7GO38BUb#bk<>CRcOd}uT#DQ=<&iAe76%XHur9TiN_4TE(Mu`WogYidtlJlb-UMV9 z2MxRRY$kk~Mm&he$Dce1cG7$QUlq?Zy5x~5ody;uXuB5o%gJW|GhF5QO$(N9@K(m) zpYBe7b<~wi>DX?jNt{iLi{GIo=4;w_qHngDxWyF7bxJDKyGS7(Y{<7fqIS71|0AP6 z)OadbyDZ$+e!dz~g^FZ(rdKVT04@t-s}M|&c}juu8JPvGxeZHKN~44v#?`p`xZtpF z0~oW4retExRFSX4k*B)88ODbhv?L1Psv;s~bDF)`LFW{jf(UuiZb0g9AyA zge|W%@fcsh?2dMno<`{Ar^*1DVL#nG?Vek1FhO(EsyAGFP@4BnmU?i zx*~1fn!Q=Q0S@O>bl3~n?!AS~ujok%dqA5 z2Wemq*cvB#;R-UsO2O-8uPQ8TIz<$IyyYkcSFcM`@;2!ygaL z<#twXsvO-+J9UJJ=BcgDM6uq$3d^$q$W-*hT$o}JH+DL(|CnEEWsLYv7>cEV4G!bf zdKfwp2-d~cLC9wPG>auN`rvT zy3V(ujC!YhldX>)eShlZiNQ96|IhhDG-?;yEif8G^oava<|Fr6DtVPHTMn5-y^Esn z;9_cGV&W)^aB^}A6TQwe`T*R_CA}yScP|pLAu}Ti3^3zT>PtUufFPA4DOFMaw}hj| zkdP8|Xkl7a9O!%Nw*6-GemiYe1uV=_^mP^N<1MY{JF102bFLyB93h-p%h$0*+<6h6 z`cr+}y_?^Z1>Dl+KBr1?He6<)O3L+R=(VY8U%gw-03oG=oNwAs-H@Y#u5zEuW@Iep zd|c7yveDPeIx0AQ2Zpa<#1zXAsLeFzcUokt-CohIU${Q&*D(>LD7H~xoO@Kpfq04a zD<~c=6q7?!w_f>N^nvs;%6|!fi}-)XJFI+XL?X&GtFF> zJ$FpsB3q$6$|E+m2+pK^@Uwi1V(zm17rLB)U~$vzM=QS+oPVd2evpXNvj-iizssvA zwUc*nII@v4AfQo`TBVEt$%STB&v=<1h@RYYt{Z?^J?r6Ib{zZpHXF>^9v;%9=N8T9 zy5#~xMZrX(n-e-Rxl>a=usM5SBX;4Gw)9glNyJ2TNCxMnhT1CL?0>~jz40{z@!ZrI z+AuPtf)~^Xdysq@Xg|b#0CNSu831L743C*}^YuhL`g*Zp?#ZNK3k`ol6p4u6f7bVI zWuoI%)0*eH&Eg2!gvhYX7;K~){7{33$9GWvGqqg}_4QUl^uwD3F31h2CPVv3 zA#D^)EZ=?E%|;!DaLhEZ6rELjei!H2dqS1ybj8W1UP1X*dDuxg6e}2^SADYoSJlkg z(Ujx}hjc<^;{t8|LWtsQpY@Ao9M9*u6Dl13=TC9L%-)%@*B5#BxUsW!D7Zi& zLWdg`Th?{&bltHvzrC)eMY~y9xr*BWZVy2Msn=B^b%3cz09>@i|e~Zx3o|>CwZPG(e+8mZ0++Y%_ zQJ>dNup7awStUXNII(nQwNam)xxw9nLmd4{z~t@ zJFf6cMuE?DwV3GkczSr&2$sD$@=O;cSb~>(_6_nG|LW@m@>QfP`vpIDF|iY*3p%p) z)`+Ce^vXvw6mC;2uDFqak={~BpDbhVwVH=wV2eCQ z?uMoShcWQHq40d0!sxd9TDIswWmw4#eX*}r zK?eIjZGJ|#X{HnH7RAQ$L*I9s2j7lo0mM~}Ju{(ZFqNd_w~C$E*ac}@ZQt8f zLSC7SxUEe$_jPIT(<<-f^N)f^pP!S5rIIGN0KYFykG%4$rKP1y@8sG@Ni1LC%)*Dr zPHP+p9G&Va=DAL7Ibs1vro*C`OeFboWs(F5ShwPGwWF87I0vSoJt;Iz){dcI zi_Nw^N zxa42$OWmA&9hX)G>Y!l@KmEkP3sFvz8kDB1<=@A-!Fj!UaP|G4BZLlQH24S2_*Tg% z7{st0;}?le`N1dKg{LB_^vl<_jhe4)+!3wFohPmg$K6ZQSx*H@s z!l|P-s~hmm1TPj4+haH{?A&v9&cvH_N-cOyo&|yKwsB@qSCp0H>o;$zorfgyfIOhk zCyWMdNx((y^l666A-}g@NEmhjs|~-_C;bNg0%+7vpFSxn zfOoS_70bYsyymXm@!or%#hV!If6G*?>+PKU#W3M5RnK|yFS0q~0M77c?!O?Q4#yX? za)QlT#?3-UYt76O2}amP%V^=)lYd&?dto56PR(;Nb}WGgjR#aKzc`+`E!ZQdnV_F~ z#!QP^nBiVN4{k~{zpw!AAmXV4UGolg94#|@{q8lR7nTGkVJ&Oc`@2H=s?UzsUt6Nw zeU_;|+`&}G-5Jj>+q*Biw`6o|yeM%lEeK?b{yFgd6u3|}3FfZYBZY3mqGN|gn6){;Z$Jafdk ztB_f9FBB`}dlYkZXA(#P1-TC3WOi{~ncpR%IblLf$wP-yMrbvIqqO|W9C8VUBMk_4ox8+erdTwlTv}PLiQ{~nv z=IvVpTQfro`Triq4XP#P?2Kj072KfAAl#&YrKMy%{ao2xcXh>qm)UxG-KhBI3(R$t zS=ig+Vx~d8uDANBRqkWw>GEr3UWPU_G~6&U>XHYv>bdpvPD|*VOhTBvh7zOM1=pX9 zZPDpEkQR`HQ7(b)C0fI@^L8#s1jWoEXnTSnTTIENn~(BC5T{Mp-B?V|TnxM=3;mUL z%AXQQ|F`9(^xdOELUDA$I@k&wu)sbMJoH(w@+%}7MIk{T2I~1I=*gjrRa8T?vBI*EcC3Dl+?=B zE9?isARw@Rzj3PerdI7-kW&`P%cC)jdg~LPNUy6}(a{TviUsCeA}=JGeHUX*N?%$Z zUMJp}Y}@_pY{JXS8{{K(=FG#TAxYVd=HIx+n_VGXZi~b9hIY5gP^iA<-$VVm-Oe@P zPvr=?+yf2hiShA=n~o;B`JMhBepP`5dg?AhC4kiak=6l{;vC?=?iZGP3pNybRsc7- zu_GRSx-)+RUAzG%^&yZ7sEdC~_PODuI9#{YzRIE`!-t$FEUoSr1zt}48idXBb z0KT$8i6<@!Wn3;yZbVFfs~gBavNVn{exyv;4?{Hg>Rt9~u4EOW<<;3eN_ZIFm0^&C z%imyMStOWksE*jLdfr|tgR}#Lg%9I zZLj?7(eqok*2sm+q;)6U>E9LHzpOQvAq?Pt2>KDWAJp-_&+gPpGg$h%G>q+Zq?nie zyUQfizMs!Ql1NEuq>B#_w9KXl8Jw=oX2TnVl{QWThhOL*4?jTOLZN2t_IF}Ipc812 z;cZ!mYP~O3JdrZISZ#4D#re6(>aqE?@ZHv6t}J)B!ph`QUYDbiWXw|$Y4fNDUS2!$ z@b8|4i8`;0xEhxp0sV$*#SS&U1DyZ|;M=a9n%DGu9-Q&Tll>?B+8;(AQl}Q}S1aa! z`EqB*5%n98Q=tJKi9mH`#{#ZzBLhwyDD3VB#M2BK)EVg=IE!&*80Ax+ncgwIk@EaE z)$HA2H`oMTYhibag=m{J`cYi~T8&*LTCuI+T~B}Gt1l`po??8ZzGKHNMzz9wSd~Kr z-#RA2K#39T-qAx#?V0%mQ&Y!5Cg`-! zaM5jH5s{H5fw>tRfWUEZq5^?%ht{1RJIJ>0Ra~N)XZ4ZKuEK4+ChgH%`DDb*7L+cr zanq<=OZJZ+?SU_6Z2NM1MMPlR?=d7jXov5M@#$;!e6xf)2)=qPVtD9FY3BmG4;XO$ zy6bg=Nh{w*12>1A0WVz`0or!d9e*JDU`6DZ#J#5VK%C{4(L<}GwP|45XNf8W;7b*j zKPu!tQSV=z#0U7=Q}Jt*KYH@DHs$6~(;TObV_kd>J+=a^MOdnmREg*00G6hILO30_ z%}t>+y}LWNN}l`?34?h9Emo8hSu8HpdMOq6uV0}%FAx0ScR6qVqEU*ivsm1!C6`ha za4+6|pgoqrtOdeTl*tF?!CpI_uI&u@-rm*Y-rMJ zO@9kJaO$t#jpe<{B`=b@Y7~IfT+=)}R_ddoT31%xV3sn8pT3eTPghg@hAU5{1L`|6 zzC)*owSJi=sY(j9YS0tvnf*8Qv-A7-4xRDbSk8$tXS#VgjW~3YinP2`nw7MsW+D6{g+0?=mx*3 zltn3LY$V@TC;Uhr6M=OLuvF=7Mt=G;nHe7}Mxc~BG_aA&j7=(3Ys=c**G|` z2-t`T6mgT>%GtH$itzM~?$DP|SLDjokS=-KbEht=(+kwxIE_c@72~Nv%k@Ja(%Mnm z;eF4kaC76}s2|7!p7(ucj>D@Mn}c-c-?Oinhpjim~49SNC9EUS19l4=*>i{HdAF z!OqT3#>`yyxFm)TSXa}|r<#!W_7*d$bBbA6u_`US7g_80Br+;$q`|}9aaHCtN?F() zdghz+LHF7Uqw73YB9~dbK@>5MQ|vIpxQBN9V|+Im=qhXPrBxbkJfNs%rHA<5XW$9^ z%3+~6?R;_|<41foLVv-f7>cVR2)XoMY%yA6MEo8UWn4U*6=hvuGHsx1C^Dyi$i{{x zOaHj5!0{Cybys&cn}`T?XDCUhRw%J>C<$Ze*qB~vDSk$8$rH~X~0Z+!D1 z@|C`S%YmftbMM_}TOZLb5SwoMHxBI4`mf$mlRF(6yzHKalh0NVu^ZJ@09KNo^4+hc zsey7@wKMpMwz>O;zP>(9`MB!NPu1_ETO;4!%|819o;#*#UyE?~KS*y6N=^E-b57I< zR8lnB>VK=Rr|a(So~m_FnHrhLf0-@>MLQ-0f?q-0%=kvDcNZi?@yPMkh` zTa1Ig8(p$vULqIgU$xIO7pwTk+ThnE?b*uyZ5Ja^yl7uPmOf{B4J)01H!bjC=Xjlc zSJL-r=!)dh<@k-%9Y{NFHmB?%(&h0TzsFsPW+k2|62^eO#C@@b70SAP1b?iN@oVp* z_|}?rvQvM;v=7@93w{@-&y|($X1J0uF~xW-`q6?%T}nuOz)lKIQL*&8E^-~OZc8Eu zewBQ=^y!|E%^y0c-QR@m9LuSwqs^^a|pZnfIFfwAE{mOKK2Ii!X;?PnKapmM?~%!hja&L<_vsZ@2(o zw%XCS^9Y%R^*3Ur^=3-L7R63%k2Wdad`CF8>Tw~bdr3ozTfitlEpuvkBQk{6T4Wtw zA|)~mwWQ0_S2>^_uA#|Df5zxzZ;-a)nlKhNUW9$7^IQj7IKSzkQ*-o_aBk&S3go~b z;N0AsT0B0@-|I_M4Dj-aFMMOaFa=&MEoCss{w81=XQB+Z_KnxVPwH_i?@}nq?lOW! z!X1B~w0o6V;~D2Wrn!^lH`T_Baf)K@(5}1pDe9RK%_*&eoM9=Ng0#P2rz=WrLfS?~ zMY-5C1x~+Q!MeNse8bRv`X1gJF|_CE5azYuTL0$nEziqU;B+?Tn-;)utVG~JNr)s& z!!}DPmzX+<;$}kw-%p-mHZpL?W~7WHZ#Ju)<{6+2Lk;f)5P@yyINyRMr2l&F9d8S` zAvY&uXWiFwMEnoT2ft^1dq>i_>8lxu5eZ;lzK{)@E+tR=I-9fk7HdF=xD$8%h$ImE zsq??c0Nn*iKmcB*Q8P>7{Rm6-{NKsIKK^lehm*VD~`C*5u)qMtRz= z?)RFKAh2|?FQhV!;Fr>MKUcIXypHR{*OsKtvR(9n4(xI2FJ=>+nT16i%DK5%(guY) z7Q?!whQRMNlTY*{ZkEW*kavs!s)&fz$=U{1F==!#l&>s+@ z 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 yb-Z7a Date: Thu, 20 Feb 2020 22:46:37 -0600 Subject: [PATCH 045/175] man FUCK psychs --- code/__DEFINES/jobs.dm | 24 ++++++------ .../modules/events/wizard/departmentrevolt.dm | 2 +- code/modules/jobs/access.dm | 2 +- code/modules/jobs/job_types/paramedic.dm | 6 +-- code/modules/jobs/job_types/psychologist.dm | 36 ------------------ code/modules/jobs/jobs.dm | 1 - icons/mob/hud.dmi | Bin 18046 -> 17961 bytes icons/mob/landmarks.dmi | Bin 27103 -> 26300 bytes strings/ion_laws.json | 1 - 9 files changed, 16 insertions(+), 56 deletions(-) delete mode 100644 code/modules/jobs/job_types/psychologist.dm diff --git a/code/__DEFINES/jobs.dm b/code/__DEFINES/jobs.dm index 52642ffe48..d45762ee34 100644 --- a/code/__DEFINES/jobs.dm +++ b/code/__DEFINES/jobs.dm @@ -23,8 +23,7 @@ #define DOCTOR (1<<4) #define GENETICIST (1<<5) #define VIROLOGIST (1<<6) -#define PSYCH (1<<7) -#define PARAMEDIC (1<<8) +#define PARAMEDIC (1<<7) #define CIVILIAN (1<<2) @@ -80,14 +79,13 @@ #define JOB_DISPLAY_ORDER_CHEMIST 21 #define JOB_DISPLAY_ORDER_GENETICIST 22 #define JOB_DISPLAY_ORDER_VIROLOGIST 23 -#define JOB_DISPLAY_ORDER_PSYCH 24 -#define JOB_DISPLAY_ORDER_PARAMEDIC 25 -#define JOB_DISPLAY_ORDER_RESEARCH_DIRECTOR 26 -#define JOB_DISPLAY_ORDER_SCIENTIST 27 -#define JOB_DISPLAY_ORDER_ROBOTICIST 28 -#define JOB_DISPLAY_ORDER_HEAD_OF_SECURITY 29 -#define JOB_DISPLAY_ORDER_WARDEN 30 -#define JOB_DISPLAY_ORDER_DETECTIVE 31 -#define JOB_DISPLAY_ORDER_SECURITY_OFFICER 32 -#define JOB_DISPLAY_ORDER_AI 33 -#define JOB_DISPLAY_ORDER_CYBORG 34 +#define JOB_DISPLAY_ORDER_PARAMEDIC 24 +#define JOB_DISPLAY_ORDER_RESEARCH_DIRECTOR 27 +#define JOB_DISPLAY_ORDER_SCIENTIST 28 +#define JOB_DISPLAY_ORDER_ROBOTICIST 29 +#define JOB_DISPLAY_ORDER_HEAD_OF_SECURITY 30 +#define JOB_DISPLAY_ORDER_WARDEN 31 +#define JOB_DISPLAY_ORDER_DETECTIVE 32 +#define JOB_DISPLAY_ORDER_SECURITY_OFFICER 33 +#define JOB_DISPLAY_ORDER_AI 34 +#define JOB_DISPLAY_ORDER_CYBORG 35 diff --git a/code/modules/events/wizard/departmentrevolt.dm b/code/modules/events/wizard/departmentrevolt.dm index ce6b4802fa..b82cd91323 100644 --- a/code/modules/events/wizard/departmentrevolt.dm +++ b/code/modules/events/wizard/departmentrevolt.dm @@ -19,7 +19,7 @@ jobs_to_revolt = list("Assistant") nation_name = pick("Assa", "Mainte", "Tunnel", "Gris", "Grey", "Liath", "Grigio", "Ass", "Assi") if("white") - jobs_to_revolt = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Paramedic", "Psychologist", "Virologist") + jobs_to_revolt = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Paramedic", "Virologist") nation_name = pick("Mede", "Healtha", "Recova", "Chemi", "Geneti", "Viro", "Psych") if("yellow") jobs_to_revolt = list("Chief Engineer", "Station Engineer", "Atmospheric Technician") diff --git a/code/modules/jobs/access.dm b/code/modules/jobs/access.dm index b0467b36ad..9bd5dc1684 100644 --- a/code/modules/jobs/access.dm +++ b/code/modules/jobs/access.dm @@ -357,7 +357,7 @@ /proc/get_all_jobs() return list("Assistant", "Captain", "Head of Personnel", "Bartender", "Cook", "Botanist", "Quartermaster", "Cargo Technician", "Shaft Miner", "Clown", "Mime", "Janitor", "Curator", "Lawyer", "Chaplain", "Chief Engineer", "Station Engineer", - "Atmospheric Technician", "Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Virologist", "Psychologist", "Paramedic", + "Atmospheric Technician", "Chief Medical Officer", "Medical Doctor", "Chemist", "Geneticist", "Virologist", "Paramedic", "Research Director", "Scientist", "Roboticist", "Head of Security", "Warden", "Detective", "Security Officer") /proc/get_all_job_icons() //For all existing HUD icons diff --git a/code/modules/jobs/job_types/paramedic.dm b/code/modules/jobs/job_types/paramedic.dm index 5c1b219824..3dd6687b24 100644 --- a/code/modules/jobs/job_types/paramedic.dm +++ b/code/modules/jobs/job_types/paramedic.dm @@ -11,8 +11,8 @@ outfit = /datum/outfit/job/paramedic - access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) - minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_CLONING, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) + access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) + minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) display_order = JOB_DISPLAY_ORDER_PARAMEDIC @@ -34,7 +34,7 @@ r_pocket = /obj/item/pinpointer/crew l_pocket = /obj/item/pda/medical backpack_contents = list(/obj/item/roller=1) - pda_slot = ITEM_SLOT_LPOCKET + pda_slot = ITEM_SLOT_POCKET backpack = /obj/item/storage/backpack/medic satchel = /obj/item/storage/backpack/satchel/med diff --git a/code/modules/jobs/job_types/psychologist.dm b/code/modules/jobs/job_types/psychologist.dm deleted file mode 100644 index da1a290fbd..0000000000 --- a/code/modules/jobs/job_types/psychologist.dm +++ /dev/null @@ -1,36 +0,0 @@ -/datum/job/psych - title = "Psychologist" - flag = PSYCH - department_head = list("Chief Medical Officer") - department_flag = MEDSCI - faction = "Station" - total_positions = 1 - spawn_positions = 1 - supervisors = "the chief medical officer" - selection_color = "#74b5e0" - - outfit = /datum/outfit/job/psych - - access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM) - minimal_access = list(ACCESS_MEDICAL, ACCESS_SURGERY, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM) - - display_order = JOB_DISPLAY_ORDER_PSYCH - -/datum/outfit/job/psych - name = "Psychologist" - jobtype = /datum/job/psych - - ears = /obj/item/radio/headset/headset_med - uniform = /obj/item/clothing/under/suit_jacket/green - shoes = /obj/item/clothing/shoes/laceup - l_hand = /obj/item/storage/briefcase/medical - r_hand = /obj/item/clipboard - l_pocket = /obj/item/laser_pointer - r_pocket = /obj/item/pda/medical - pda_slot = ITEM_SLOT_RPOCKET - - backpack = /obj/item/storage/backpack/medic - satchel = /obj/item/storage/backpack/satchel/med - duffelbag = /obj/item/storage/backpack/duffelbag/med - - chameleon_extras = /obj/item/gun/syringe diff --git a/code/modules/jobs/jobs.dm b/code/modules/jobs/jobs.dm index 2d95b4b3c6..78b7dd3964 100644 --- a/code/modules/jobs/jobs.dm +++ b/code/modules/jobs/jobs.dm @@ -18,7 +18,6 @@ GLOBAL_LIST_INIT(medical_positions, list( "Medical Doctor", "Geneticist", "Virologist", - "Psychologist", "Paramedic", "Chemist")) diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index 58209a312ba88da1dd0ffeec7b84a1bbcbb5aaa3..c21fa47b9c022ab9c2d8b14389f610058d53a494 100644 GIT binary patch literal 17961 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 Date: Fri, 21 Feb 2020 00:26:42 -0800 Subject: [PATCH 056/175] fixed temp flavor text (for real) --- code/__HELPERS/_cit_helpers.dm | 11 +++++++++++ code/modules/mob/living/carbon/human/examine.dm | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/code/__HELPERS/_cit_helpers.dm b/code/__HELPERS/_cit_helpers.dm index 26910a916b..84cbe5abeb 100644 --- a/code/__HELPERS/_cit_helpers.dm +++ b/code/__HELPERS/_cit_helpers.dm @@ -139,6 +139,17 @@ GLOBAL_VAR_INIT(miscreants_allowed, FALSE) else return "[html_encode(copytext_char(msg, 1, 37))]... More..." +/mob/proc/print_flavor_text_2(flavor) + if(!flavor) + return + // We are decoding and then encoding to not only get correct amount of characters, but also to prevent partial escaping characters being shown. + var/msg = html_decode(replacetext(flavor, "\n", " ")) + if(length_char(msg) <= 40) + return "[html_encode(msg)]" + else + return "[html_encode(copytext_char(msg, 1, 37))]... More..." + + //LOOC toggles /client/verb/listen_looc() set name = "Show/Hide LOOC" diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 8e19fa7776..e93340b71e 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -397,7 +397,7 @@ var/flavor = print_flavor_text(flavor_text) if(flavor) . += flavor - var/temp_flavor = print_flavor_text(flavor_text_2) + var/temp_flavor = print_flavor_text_2(flavor_text_2) if(temp_flavor) . += temp_flavor SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE, user, .) From 9ae903187f43746b75f595646c4cf127ccbe9992 Mon Sep 17 00:00:00 2001 From: TrilbySpaceClone Date: Fri, 21 Feb 2020 04:18:24 -0500 Subject: [PATCH 057/175] always abuzz --- code/game/objects/structures/barsigns.dm | 12 +++++------- icons/obj/barsigns.dmi | Bin 695604 -> 702385 bytes 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/code/game/objects/structures/barsigns.dm b/code/game/objects/structures/barsigns.dm index b72a4b816e..55583be1c0 100644 --- a/code/game/objects/structures/barsigns.dm +++ b/code/game/objects/structures/barsigns.dm @@ -308,28 +308,26 @@ icon = "Meow Mix" desc = "No, we don't serve catnip, officer!" +/datum/barsign/the_hive + name = "The Hive" + icon = "thehive" + desc = "Comb in for some sweet drinks! Not known for serving any sappy drinks." + /datum/barsign/hiddensigns hidden = TRUE - //Hidden signs list below this point - - /datum/barsign/hiddensigns/empbarsign name = "Haywire Barsign" icon = "empbarsign" desc = "Something has gone very wrong." - - /datum/barsign/hiddensigns/syndibarsign name = "Syndi Cat Takeover" icon = "syndibarsign" desc = "Syndicate or die." - - /datum/barsign/hiddensigns/signoff name = "Bar Sign" icon = "empty" diff --git a/icons/obj/barsigns.dmi b/icons/obj/barsigns.dmi index 1fffa2e540b5e00d18372025aab5681a55bcf6ab..22f307186220b71073ee83b466b678b5520f9b10 100644 GIT binary patch delta 43672 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 delta 36854 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�*~Zd#niPlOviNz%%}rQvHv55p^Jln$(ga&VCiz>}y&3D|$wwij>;j;Loti z=9|XujpQ%87FY~$)ER#iCjgx=aO^Jdv86d4H;e2Q5z#YXgDp<;8?L4>#;0m?cB&Qc zO=;?=i_}#~oTrqcK@*|_0qI1^`Ufu%r~R$CZ)Z_6K2#vf{mRMNUU7RQd)hf4X0H9h zmG&*ZNXpOwn}kQNt52Ty;vgp~nkz1L((?Lz-0+c(b}kt=Lx^cra$^1B8}@0Luo9Et#HFu zBL4t_@5#iRoYSQg6oRK&hXqa1suor9G<7*vVc`xSUZ|7?Tq3AxQx`|A+0Y9=#S;xd zVad!A;HZFuBQl(!L}gM!p3AES_y`}TVAtw0Ji}{tNj*Kocjl4m zM=Uv^x->g8dD^H+zI}Fn|F19mzu)w0fBrd`l2J~{wcOYH#U!{k-|uo@VR@x7Lb@0V zny$`V1k0CjD|eQD0iCiG1AN^~{e=F0n)_B$KYx`j*Jt$K>W_DcK(U$W$wiW7%3@!q zuEcA8&JTOy%;Q-c%z^}Fqo~H!HJtqh`?E+)@qUeBefEEbVJ%+s8UhYsoqZU z)qYQ@P8LzAKo?E(Sq|ta6)h802zz~0HxS%@DYCRa{vKMob_rH;MDP1KoI=`q$-Rs< zw+w1^w0ybsHstEP)d6FD+gZ|GO{g%EavQdPhj0FpUnyIq*R4gAm~YPWrIEe2$9HuZ zf+@+#pzMnrifZyVztKTh*w}c2t8?llP(?+hDQJkd+rB(E;}tL?LiUfk*~~MqgW2Y* zAs5>|yD=3A!}`ob<3|1-KOZ$mgK&O);BfNsVR&lr>u15Q8yJ{8a(f6ZP`dXZ`IH^k z)bSPnQ*^qk@q z!$fWt8gLl+fV-v&M>{=fOdO2O14yug@FV8$Le9$LFI*)3*uwHWV*eR1pOuW&xL5l` z9#Lnwe1Usj6Pch|GyHTL1?U_auIKc zpX0|O>b!$*U})Cbs5Ef1&VCPs(gHwsuJn@6Xrz<;n!=crW=R(kLTujK5jSI^_a)@K zAT&|X4@~Tigy-wf1d-5eMQTMExN$c1PX*$%^t;?UAihW@wl1WzBcq%pGFAks#jowm z7W?EtzKJd}F*@bG-=EhEVP@4C-6Nv$|G9W5PNTm*7=U^edHZ<0Cz#@TU%meS&H}?+>`A=wsM;g zMq`k@Ft!*>xGlpyy*VuYpQ}Xb(|0mNV!7hkTyYE$G z8@hF!zk5>c0{AOgBo!Hs+B6L4PAz3D26zFo&pQ|9_mVb~2Ge}MS|qVB4aYy2XANmo zc+mX#;RxI&r1L)&?PqM$)mJ22fbCO@v`-bTTx#L4eV4i&4+E`3T4DkTKsRTftVLzjM1>AWPv0QQ@E&^}CWk()y2Tt$XGW7Qh z0j-JX#NXRCRyyrtCQavKedqP_Z?Q~T$cU!Zue{S!+mSL05Ld$2b|ioOTIJI6rN=*v z)=5aamMC#ztYA+1jJS7fY^Hz5_OF^g>5FGVPJ1 znqD@tU&h>lyu0<(>ayyc=-&Fc_mK##g06F0J4jO_AvP05e1EzOoPnF*H0Dq|v?(s9 z&B^jraXE8vC2Ohmnmc87bLxL+{f{t3udC^uzM;0P9yssenl{z4$co-y`D)zQT0dY` zp#mgnV?1*dWnG+6;ep(@re~k^1W(j8lEE+WC|xIbZ-FG$-0neuLf~@RVP;>{TPeJzpko`2)rTJ<+cXgFM zv2{QHo=&`9C}Xz@`7YY8U?I@rZpO{UA^-*UA+ZH6+b3T|@WV`q-B5P36at4ecI3R4 zDKs%Jy-uz7UE50TBw&?89WktCrpJHqmoXHou=RgZSyE=|s?&}}lqaL-;+C7(1;0?^ zs^9*IL~ecpS5L~bWV{UK-(pU*GTsV(K5GuXQjyZZE)lE{Z#(Zt75{ku6mJS(SXFhH ze6VLG&;v}|rhX>tGe8WU}|Y+^v1?LNUv{c7hq|$> z=&(j=*`YQRWmme{(<^^}4hwk0aGD1QEDW?Xi2DUhjHfV&_B-@V1ls7+UHr>iGo52m zQ8WqcAk`(v$U+@@%tzUEbENPEHfkfgrB9rY5sy{%&JM`TgQEk^=PJ<#>xfFAyDgfc z!R;f&_k#xEK$(O0u#}u5rv^>kuJ8brrW}MLLW1wVMLP55S1#hpLsW~!mGtUn|*1z>8EP;cT|~@78{>A z6NKahZ^Yb~4g#Z%4`9>tgC1r<+rq35Cj zVg^I9;cVzcqsu9o^Y{<9UTr_x(d1Y z!H?kVpLLgfBm$C>p_;H4ud{R>22}K6+@6qje(Ss|8Bn5}5UCi(o^zYs&99Hss;_~{ zJRA!O`nm9XF-yjUTQ9beyca}LNe0R*@^IVIJINRFs5y2lM*i9^ Date: Fri, 21 Feb 2020 04:45:19 -0500 Subject: [PATCH 058/175] the chair now looks better --- icons/obj/chairs.dmi | Bin 34758 -> 35228 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/chairs.dmi b/icons/obj/chairs.dmi index 9e8fb64aba811fa784ad44c8e0dfab010b103384..80a722e79d1510e8b58463bd24a37ee603115bd6 100644 GIT binary patch delta 11600 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 delta 11140 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

    PgjAA`*2d|U5- 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 Date: Fri, 21 Feb 2020 10:36:57 +0000 Subject: [PATCH 059/175] legion heads now swarm --- .../mob/living/simple_animal/hostile/mining_mobs/hivelord.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm index 11de9df70b..4a5e0b625e 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm @@ -81,11 +81,12 @@ throw_message = "falls right through the strange body of the" obj_damage = 0 environment_smash = ENVIRONMENT_SMASH_NONE - pass_flags = PASSTABLE + pass_flags = PASSTABLE | PASSMOB //they shouldn't get stuck behind hivelords. del_on_death = 1 /mob/living/simple_animal/hostile/asteroid/hivelordbrood/Initialize() . = ..() + AddComponent(/datum/component/swarming) //oh god not the bees addtimer(CALLBACK(src, .proc/death), 100) //Legion @@ -174,7 +175,7 @@ speak_emote = list("echoes") attack_sound = 'sound/weapons/pierce.ogg' throw_message = "is shrugged off by" - pass_flags = PASSTABLE + pass_flags = PASSTABLE | PASSMOB del_on_death = TRUE stat_attack = UNCONSCIOUS robust_searching = 1 From 2f2ddbad5a3378b6c09670ae574c56814dd141af Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Fri, 21 Feb 2020 12:07:58 +0000 Subject: [PATCH 060/175] removes density from skulls --- .../mob/living/simple_animal/hostile/mining_mobs/hivelord.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm index 4a5e0b625e..227e70bdf4 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm @@ -82,6 +82,7 @@ obj_damage = 0 environment_smash = ENVIRONMENT_SMASH_NONE pass_flags = PASSTABLE | PASSMOB //they shouldn't get stuck behind hivelords. + density = FALSE del_on_death = 1 /mob/living/simple_animal/hostile/asteroid/hivelordbrood/Initialize() From 79967b0ac50ecdfd14c7cec79d385858bd304576 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Fri, 21 Feb 2020 07:16:39 -0500 Subject: [PATCH 061/175] Resolving some convos. Rename Pastries to Pastry & Sweets Move all sweets to Pastry & Sweets Revert Weight Class Changes Add Whitelist to trays. Glasswear, Drinks, Foods, Kitchen Items, ect. Move Brioche Cake item/recipe Move Scotch Egg item/recipe --- code/__DEFINES/construction.dm | 3 +- code/game/objects/items/storage/bags.dm | 2 + .../food_and_drinks/food/customizables.dm | 2 +- .../food_and_drinks/food/snacks_cake.dm | 14 + .../food_and_drinks/food/snacks_egg.dm | 12 +- .../food_and_drinks/food/snacks_other.dm | 23 -- .../food_and_drinks/food/snacks_salad.dm | 2 +- .../food_and_drinks/food/snacks_soup.dm | 2 +- .../recipes/tablecraft/recipes_cake.dm | 9 + .../recipes/tablecraft/recipes_egg.dm | 11 + .../recipes/tablecraft/recipes_pastry.dm | 299 ++++++++++++------ .../recipes/tablecraft/recipies_sweets.dm | 117 ------- tgstation.dme | 1 - 13 files changed, 249 insertions(+), 248 deletions(-) delete mode 100644 code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index a46e2ed7b7..27be53d8c9 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -97,14 +97,13 @@ #define CAT_MEAT "Meats" #define CAT_MEXICAN "Mexican" #define CAT_MISCFOOD "Misc. Food" -#define CAT_PASTRY "Pastries" +#define CAT_PASTRY "Pastries & Sweets" #define CAT_PIE "Pies" #define CAT_PIZZA "Pizzas" #define CAT_SALAD "Salads" #define CAT_SANDWICH "Sandwiches" #define CAT_SOUP "Soups" #define CAT_SPAGHETTI "Spaghettis" -#define CAT_SWEETS "Sweets" #define CAT_ICE "Frozen" #define RCD_FLOORWALL 1 diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index 67e54128a4..c265bfb408 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -326,6 +326,8 @@ /obj/item/storage/bag/tray/ComponentInitialize() . = ..() var/datum/component/storage/STR = GetComponent(/datum/component/storage) + STR.max_w_class = WEIGHT_CLASS_NORMAL + STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food, /obj/item/reagent_containers/glass, /datum/reagent/consumable, /obj/item/kitchen/knife, /obj/item/kitchen/rollingpin, /obj/item/kitchen/fork, /obj/item/storage/box)) //Should cover: Bottles, Beakers, Bowls, Booze, Glasses, Food, Kitchen Tools, and ingredient boxes. STR.insert_preposition = "on" /obj/item/storage/bag/tray/attack(mob/living/M, mob/living/user) diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm index 7cc1152962..016e37a5c4 100644 --- a/code/modules/food_and_drinks/food/customizables.dm +++ b/code/modules/food_and_drinks/food/customizables.dm @@ -294,7 +294,7 @@ icon_state = "bowl" reagent_flags = OPENCONTAINER materials = list(MAT_GLASS = 500) - w_class = WEIGHT_CLASS_SMALL + w_class = WEIGHT_CLASS_NORMAL /obj/item/reagent_containers/glass/bowl/attackby(obj/item/I,mob/user, params) if(istype(I, /obj/item/reagent_containers/food/snacks)) diff --git a/code/modules/food_and_drinks/food/snacks_cake.dm b/code/modules/food_and_drinks/food/snacks_cake.dm index bb37ec9b5d..89c4637ed9 100644 --- a/code/modules/food_and_drinks/food/snacks_cake.dm +++ b/code/modules/food_and_drinks/food/snacks_cake.dm @@ -85,6 +85,20 @@ tastes = list("cake" = 4, "cream cheese" = 3) foodtype = GRAIN | DAIRY +/obj/item/reagent_containers/food/snacks/store/cake/brioche + name = "brioche cake" + desc = "A ring of sweet, glazed buns." + icon_state = "briochecake" + slice_path = /obj/item/reagent_containers/food/snacks/cakeslice/brioche + slices_num = 6 + bonus_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/vitamin = 2) + +/obj/item/reagent_containers/food/snacks/cakeslice/brioche + name = "brioche cake slice" + desc = "Delicious sweet-bread. Who needs anything else?" + icon_state = "briochecake_slice" + filling_color = "#FFD700" + /obj/item/reagent_containers/food/snacks/cakeslice/cheese name = "cheese cake slice" desc = "Slice of pure cheestisfaction." diff --git a/code/modules/food_and_drinks/food/snacks_egg.dm b/code/modules/food_and_drinks/food/snacks_egg.dm index b2a474adac..c3d71093b5 100644 --- a/code/modules/food_and_drinks/food/snacks_egg.dm +++ b/code/modules/food_and_drinks/food/snacks_egg.dm @@ -101,7 +101,7 @@ desc = "A fried egg with a side of bacon. Delicious!" icon_state = "baconegg" bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1) - bitesize = 1 + bitesize = 2 filling_color = "#FFFFF0" tastes = list("egg" = 2, "bacon" = 2, "salt" = 1, "pepper" = 1) foodtype = MEAT | FRIED | BREAKFAST @@ -150,7 +150,17 @@ desc = "There is only one egg on this, how rude." icon_state = "benedict" bonus_reagents = list(/datum/reagent/consumable/nutriment/vitamin = 4) + w_class = WEIGHT_CLASS_NORMAL trash = /obj/item/trash/plate list_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/vitamin = 4) tastes = list("egg" = 1, "bacon" = 1, "bun" = 1) foodtype = MEAT | BREAKFAST + +/obj/item/reagent_containers/food/snacks/scotchegg + name = "scotch egg" + desc = "A boiled egg wrapped in a delicious, seasoned meatball." + icon_state = "scotchegg" + bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 2) + bitesize = 3 + filling_color = "#FFFFF0" + list_reagents = list(/datum/reagent/consumable/nutriment = 6) \ No newline at end of file diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm index 1fff57395b..7dc2188100 100644 --- a/code/modules/food_and_drinks/food/snacks_other.dm +++ b/code/modules/food_and_drinks/food/snacks_other.dm @@ -685,29 +685,6 @@ list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/sugar = 2, /datum/reagent/consumable/coco = 2) filling_color = "#A0522D" -/obj/item/reagent_containers/food/snacks/store/cake/brioche - name = "brioche cake" - desc = "A ring of sweet, glazed buns." - icon_state = "briochecake" - slice_path = /obj/item/reagent_containers/food/snacks/cakeslice/brioche - slices_num = 6 - bonus_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/vitamin = 2) - -/obj/item/reagent_containers/food/snacks/cakeslice/brioche - name = "brioche cake slice" - desc = "Delicious sweet-bread. Who needs anything else?" - icon_state = "briochecake_slice" - filling_color = "#FFD700" - -/obj/item/reagent_containers/food/snacks/scotchegg - name = "scotch egg" - desc = "A boiled egg wrapped in a delicious, seasoned meatball." - icon_state = "scotchegg" - bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 2) - bitesize = 3 - filling_color = "#FFFFF0" - list_reagents = list(/datum/reagent/consumable/nutriment = 6) - /obj/item/reagent_containers/food/snacks/soup/mammi name = "Mammi" desc = "A bowl of mushy bread and milk. It reminds you, not too fondly, of a bowel movement." diff --git a/code/modules/food_and_drinks/food/snacks_salad.dm b/code/modules/food_and_drinks/food/snacks_salad.dm index aa4cf44f4e..e272733235 100644 --- a/code/modules/food_and_drinks/food/snacks_salad.dm +++ b/code/modules/food_and_drinks/food/snacks_salad.dm @@ -4,7 +4,7 @@ icon = 'icons/obj/food/soupsalad.dmi' trash = /obj/item/reagent_containers/glass/bowl bitesize = 3 - w_class = WEIGHT_CLASS_SMALL + w_class = WEIGHT_CLASS_NORMAL list_reagents = list(/datum/reagent/consumable/nutriment = 7, /datum/reagent/consumable/nutriment/vitamin = 2) tastes = list("leaves" = 1) foodtype = VEGETABLES diff --git a/code/modules/food_and_drinks/food/snacks_soup.dm b/code/modules/food_and_drinks/food/snacks_soup.dm index 796cff9b65..a0e1ebcb39 100644 --- a/code/modules/food_and_drinks/food/snacks_soup.dm +++ b/code/modules/food_and_drinks/food/snacks_soup.dm @@ -1,5 +1,5 @@ /obj/item/reagent_containers/food/snacks/soup - w_class = WEIGHT_CLASS_SMALL + w_class = WEIGHT_CLASS_NORMAL icon = 'icons/obj/food/soupsalad.dmi' trash = /obj/item/reagent_containers/glass/bowl bitesize = 5 diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm index 492d5c2db3..f6441210f6 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm @@ -80,6 +80,15 @@ result = /obj/item/reagent_containers/food/snacks/store/cake/birthday subcategory = CAT_CAKE +/datum/crafting_recipe/food/briochecake + name = "Brioche cake" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, + /datum/reagent/consumable/sugar = 2 + ) + result = /obj/item/reagent_containers/food/snacks/store/cake/brioche + subcategory = CAT_CAKE + /datum/crafting_recipe/food/carrotcake name = "Carrot cake" reqs = list( diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm index c049cd7563..108307119d 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm @@ -59,4 +59,15 @@ /obj/item/reagent_containers/food/snacks/grown/corn = 1 ) result = /obj/item/reagent_containers/food/snacks/salad/eggbowl + subcategory = CAT_EGG + +/datum/crafting_recipe/food/scotchegg + name = "Scotch egg" + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /datum/reagent/consumable/blackpepper = 1, + /obj/item/reagent_containers/food/snacks/boiledegg = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1 + ) + result = /obj/item/reagent_containers/food/snacks/scotchegg subcategory = CAT_EGG \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index b19a2a8a67..012fa65706 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -254,6 +254,110 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/matcha +////////////////////////////////////////////////MUFFINS//////////////////////////////////////////////// + +/datum/crafting_recipe/food/muffin + time = 15 + name = "Muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/muffin + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/berrymuffin + name = "Berry muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/berries = 1 + ) + result = /obj/item/reagent_containers/food/snacks/muffin/berry + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/booberrymuffin + name = "Booberry muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/berries = 1, + /obj/item/ectoplasm = 1 + ) + result = /obj/item/reagent_containers/food/snacks/muffin/booberry + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/poppymuffin + name = "Poppy muffin" + reqs = list( + /datum/reagent/consumable/milk = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/citrus/lemon = 1, + /obj/item/seeds/poppy = 1 + ) + result = /obj/item/reagent_containers/food/snacks/muffin/poppy + subcategory = CAT_PASTRY + +////////////////////////////////////////////CUPCAKES//////////////////////////////////////////// + +/datum/crafting_recipe/food/cherrycupcake + name = "Cherry cupcake" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/cherries = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cherrycupcake + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/bluecherrycupcake + name = "Blue cherry cupcake" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/bluecherries = 1 + ) + result = /obj/item/reagent_containers/food/snacks/bluecherrycupcake + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/strawberrycupcake + name = "Strawberry cherry cupcake" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 + ) + result = /obj/item/reagent_containers/food/snacks/strawberrycupcake + subcategory = CAT_PASTRY + +////////////////////////////////////////////COOKIES//////////////////////////////////////////// + +/datum/crafting_recipe/food/raisincookie + name = "Raisin cookie" + reqs = list( + /obj/item/reagent_containers/food/snacks/no_raisin = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/oat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/raisincookie + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/oatmealcookie + name = "Oatmeal cookie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/reagent_containers/food/snacks/grown/oat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/oatmealcookie + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/sugarcookie + time = 15 + name = "Sugar cookie" + reqs = list( + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/sugarcookie + subcategory = CAT_PASTRY + ////////////////////////////////////////////////WAFFLES AND PANCAKES//////////////////////////////////////////////// /datum/crafting_recipe/food/waffles @@ -320,7 +424,6 @@ datum/crafting_recipe/food/donut/meat result = /obj/item/reagent_containers/food/snacks/pancakes/chocolatechip subcategory = CAT_PASTRY - ////////////////////////////////////////////////DONKPOCCKETS//////////////////////////////////////////////// /datum/crafting_recipe/food/donkpocket @@ -343,108 +446,8 @@ datum/crafting_recipe/food/donut/meat result = /obj/item/reagent_containers/food/snacks/dankpocket subcategory = CAT_PASTRY -////////////////////////////////////////////////MUFFINS//////////////////////////////////////////////// - -/datum/crafting_recipe/food/muffin - time = 15 - name = "Muffin" - reqs = list( - /datum/reagent/consumable/milk = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/muffin - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/berrymuffin - name = "Berry muffin" - reqs = list( - /datum/reagent/consumable/milk = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/berries = 1 - ) - result = /obj/item/reagent_containers/food/snacks/muffin/berry - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/booberrymuffin - name = "Booberry muffin" - reqs = list( - /datum/reagent/consumable/milk = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/berries = 1, - /obj/item/ectoplasm = 1 - ) - result = /obj/item/reagent_containers/food/snacks/muffin/booberry - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/poppymuffin - name = "Poppy muffin" - reqs = list( - /datum/reagent/consumable/milk = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/citrus/lemon = 1, - /obj/item/seeds/poppy = 1 - ) - result = /obj/item/reagent_containers/food/snacks/muffin/poppy - subcategory = CAT_PASTRY - ////////////////////////////////////////////OTHER//////////////////////////////////////////// -/datum/crafting_recipe/food/cherrycupcake - name = "Cherry cupcake" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/cherries = 1 - ) - result = /obj/item/reagent_containers/food/snacks/cherrycupcake - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/bluecherrycupcake - name = "Blue cherry cupcake" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/bluecherries = 1 - ) - result = /obj/item/reagent_containers/food/snacks/bluecherrycupcake - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/strawberrycupcake - name = "Strawberry cherry cupcake" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 - ) - result = /obj/item/reagent_containers/food/snacks/strawberrycupcake - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/raisincookie - name = "Raisin cookie" - reqs = list( - /obj/item/reagent_containers/food/snacks/no_raisin = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/oat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/raisincookie - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/oatmealcookie - name = "Oatmeal cookie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/grown/oat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/oatmealcookie - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/sugarcookie - time = 15 - name = "Sugar cookie" - reqs = list( - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/sugarcookie - subcategory = CAT_PASTRY - /datum/crafting_recipe/food/chococornet name = "Choco cornet" reqs = list( @@ -474,6 +477,25 @@ datum/crafting_recipe/food/donut/meat result = /obj/item/reagent_containers/food/snacks/honeybun subcategory = CAT_PASTRY +/datum/crafting_recipe/food/hotcrossbun + name = "Hot-Cross Bun" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /datum/reagent/consumable/sugar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/hotcrossbun + subcategory = CAT_PASTRY + +/datum/crafting_recipe/food/mammi + name = "Mammi" + reqs = list( + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /datum/reagent/consumable/milk = 5 + ) + result = /obj/item/reagent_containers/food/snacks/soup/mammi + subcategory = CAT_PASTRY + /datum/crafting_recipe/food/poppypretzel time = 15 name = "Poppy pretzel" @@ -493,3 +515,78 @@ datum/crafting_recipe/food/donut/meat ) result = /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit subcategory = CAT_PASTRY + +////////////////////////////////////////////SWEETS//////////////////////////////////////////// + +/datum/crafting_recipe/food/candiedapple + name = "Candied apple" + reqs = list(/datum/reagent/water = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/grown/apple = 1 + ) + result = /obj/item/reagent_containers/food/snacks/candiedapple + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chococoin + name = "Choco coin" + reqs = list( + /obj/item/coin = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/chococoin + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chocoorange + name = "Choco orange" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/chocoorange + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chocolatebunny + name = "Chocolate bunny" + reqs = list( + /datum/reagent/consumable/sugar = 2, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chocolatebunny + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/chocolatestrawberry + name = "Chocolate Strawberry" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/fudgedice + name = "Fudge dice" + reqs = list( + /obj/item/dice = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/fudgedice + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/honeybar + name = "Honey nut bar" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/oat = 1, + /datum/reagent/consumable/honey = 5 + ) + result = /obj/item/reagent_containers/food/snacks/honeybar + subcategory = CAT_SWEETS + +/datum/crafting_recipe/food/spiderlollipop + name = "Spider Lollipop" + reqs = list(/obj/item/stack/rods = 1, + /datum/reagent/consumable/sugar = 5, + /datum/reagent/water = 5, + /obj/item/reagent_containers/food/snacks/spiderling = 1 + ) + result = /obj/item/reagent_containers/food/snacks/spiderlollipop + subcategory = CAT_SWEETS diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm deleted file mode 100644 index a06bfb880b..0000000000 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipies_sweets.dm +++ /dev/null @@ -1,117 +0,0 @@ -// see code/module/crafting/table.dm - -// SWEETS - -/datum/crafting_recipe/food/candiedapple - name = "Candied apple" - reqs = list(/datum/reagent/water = 5, - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/grown/apple = 1 - ) - result = /obj/item/reagent_containers/food/snacks/candiedapple - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/chococoin - name = "Choco coin" - reqs = list( - /obj/item/coin = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/chococoin - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/chocoorange - name = "Choco orange" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/chocoorange - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/chocolatestrawberry - name = "Chocolate Strawberry" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/fudgedice - name = "Fudge dice" - reqs = list( - /obj/item/dice = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/fudgedice - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/honeybar - name = "Honey nut bar" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/oat = 1, - /datum/reagent/consumable/honey = 5 - ) - result = /obj/item/reagent_containers/food/snacks/honeybar - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/spiderlollipop - name = "Spider Lollipop" - reqs = list(/obj/item/stack/rods = 1, - /datum/reagent/consumable/sugar = 5, - /datum/reagent/water = 5, - /obj/item/reagent_containers/food/snacks/spiderling = 1 - ) - result = /obj/item/reagent_containers/food/snacks/spiderlollipop - subcategory = CAT_SWEETS - -//Easter Stuff - -/datum/crafting_recipe/food/chocolatebunny - name = "Chocolate bunny" - reqs = list( - /datum/reagent/consumable/sugar = 2, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chocolatebunny - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/hotcrossbun - name = "Hot-Cross Bun" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /datum/reagent/consumable/sugar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/hotcrossbun - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/briochecake - name = "Brioche cake" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/cake/plain = 1, - /datum/reagent/consumable/sugar = 2 - ) - result = /obj/item/reagent_containers/food/snacks/store/cake/brioche - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/scotchegg - name = "Scotch egg" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /datum/reagent/consumable/blackpepper = 1, - /obj/item/reagent_containers/food/snacks/boiledegg = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 - ) - result = /obj/item/reagent_containers/food/snacks/scotchegg - subcategory = CAT_SWEETS - -/datum/crafting_recipe/food/mammi - name = "Mammi" - reqs = list( - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /datum/reagent/consumable/milk = 5 - ) - result = /obj/item/reagent_containers/food/snacks/soup/mammi - subcategory = CAT_SWEETS diff --git a/tgstation.dme b/tgstation.dme index de3bd872f3..44ad72f766 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1847,7 +1847,6 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_soup.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_spaghetti.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_sushi.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipies_sweets.dm" #include "code\modules\games\cas.dm" #include "code\modules\goonchat\browserOutput.dm" #include "code\modules\holiday\easter.dm" From 34c8315c2fb647fe44a1f4d0c02d41430b5d4a69 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Fri, 21 Feb 2020 07:26:32 -0500 Subject: [PATCH 062/175] I forgot to hit save. --- .../recipes/tablecraft/recipes_pastry.dm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 012fa65706..191013281c 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -525,7 +525,7 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/grown/apple = 1 ) result = /obj/item/reagent_containers/food/snacks/candiedapple - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/chococoin name = "Choco coin" @@ -534,7 +534,7 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/chocolatebar = 1, ) result = /obj/item/reagent_containers/food/snacks/chococoin - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/chocoorange name = "Choco orange" @@ -543,7 +543,7 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/chocolatebar = 1, ) result = /obj/item/reagent_containers/food/snacks/chocoorange - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/chocolatebunny name = "Chocolate bunny" @@ -552,7 +552,7 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/chocolatebar = 1 ) result = /obj/item/reagent_containers/food/snacks/chocolatebunny - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/chocolatestrawberry name = "Chocolate Strawberry" @@ -561,7 +561,7 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 ) result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/fudgedice name = "Fudge dice" @@ -570,7 +570,7 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/chocolatebar = 1, ) result = /obj/item/reagent_containers/food/snacks/fudgedice - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/honeybar name = "Honey nut bar" @@ -579,7 +579,7 @@ datum/crafting_recipe/food/donut/meat /datum/reagent/consumable/honey = 5 ) result = /obj/item/reagent_containers/food/snacks/honeybar - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY /datum/crafting_recipe/food/spiderlollipop name = "Spider Lollipop" @@ -589,4 +589,4 @@ datum/crafting_recipe/food/donut/meat /obj/item/reagent_containers/food/snacks/spiderling = 1 ) result = /obj/item/reagent_containers/food/snacks/spiderlollipop - subcategory = CAT_SWEETS + subcategory = CAT_PASTRY From e08c89ce48711114cf75ad53d7cbb5584377c7a7 Mon Sep 17 00:00:00 2001 From: Artur Date: Fri, 21 Feb 2020 15:10:39 +0200 Subject: [PATCH 063/175] Reverts some --- code/modules/power/solar.dm | 32 +++++++++++++++----------------- code/modules/power/tracker.dm | 24 ++---------------------- 2 files changed, 17 insertions(+), 39 deletions(-) diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index e31c0c905b..021b575fef 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -27,15 +27,16 @@ /obj/machinery/power/solar/Initialize(mapload, obj/item/solar_assembly/S) . = ..() - panel = new() -#if DM_VERSION >= 513 - panel.vis_flags = VIS_INHERIT_ID|VIS_INHERIT_ICON|VIS_INHERIT_PLANE - vis_contents += panel -#endif - panel.icon = icon - panel.icon_state = "solar_panel" - panel.layer = FLY_LAYER - Make(S) + if(!S) + assembly = new /obj/item/solar_assembly + assembly.glass_type = new /obj/item/stack/sheet/glass(null, 2) + assembly.anchored = TRUE + else + S.moveToNullspace() + assembly = S + assembly.glass_type.on_solar_construction(src) + obj_integrity = max_integrity + update_icon() connect_to_network() RegisterSignal(SSsun, COMSIG_SUN_MOVED, .proc/queue_update_solar_exposure) @@ -78,7 +79,7 @@ /obj/machinery/power/solar/obj_break(damage_flag) if(!(stat & BROKEN) && !(flags_1 & NODECONSTRUCT_1)) - playsound(loc, 'sound/effects/glassbr3.ogg', 100, 1) + playsound(loc, 'sound/effects/glassbr3.ogg', 100, TRUE) stat |= BROKEN unset_control() update_icon() @@ -324,16 +325,13 @@ if(!T.control) //i.e unconnected T.set_control(src) -/obj/machinery/power/solar_control/update_icon() +/obj/machinery/power/solar/update_icon() + ..() cut_overlays() - if(stat & NOPOWER) - add_overlay("[icon_keyboard]_off") - return - add_overlay(icon_keyboard) if(stat & BROKEN) - add_overlay("[icon_state]_broken") + add_overlay(mutable_appearance(icon, "solar_panel-b", FLY_LAYER)) else - add_overlay(icon_screen) + add_overlay(mutable_appearance(icon, "solar_panel", FLY_LAYER)) /obj/machinery/power/solar_control/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, \ datum/tgui/master_ui = null, datum/ui_state/state = GLOB.default_state) diff --git a/code/modules/power/tracker.dm b/code/modules/power/tracker.dm index 3ee75ea130..69d2564892 100644 --- a/code/modules/power/tracker.dm +++ b/code/modules/power/tracker.dm @@ -18,15 +18,7 @@ /obj/machinery/power/tracker/Initialize(mapload, obj/item/solar_assembly/S) . = ..() - if(!S) - assembly = new /obj/item/solar_assembly - assembly.glass_type = new /obj/item/stack/sheet/glass(null, 2) - assembly.tracker = TRUE - assembly.anchored = TRUE - else - S.moveToNullspace() - assembly = S - update_icon() + Make(S) connect_to_network() RegisterSignal(SSsun, COMSIG_SUN_MOVED, .proc/sun_update) @@ -47,16 +39,6 @@ control.connected_tracker = null control = null -//updates the tracker icon and the facing angle for the control computer -/obj/machinery/power/tracker/proc/set_angle(angle) - sun_angle = angle - - //set icon dir to show sun illumination - setDir(turn(NORTH, -angle - 22.5) )// 22.5 deg bias ensures, e.g. 67.5-112.5 is EAST - - if(powernet && (powernet == control.powernet)) //update if we're still in the same powernet - control.currentdir = angle - ///Tell the controller to turn the solar panels /obj/machinery/power/tracker/proc/sun_update(datum/source, azimuth) setDir(angle2dir(azimuth)) @@ -69,9 +51,7 @@ S.glass_type = new /obj/item/stack/sheet/glass(null, 2) S.tracker = TRUE S.anchored = TRUE - else - S.moveToNullspace() - update_icon() + S.forceMove(src) /obj/machinery/power/tracker/crowbar_act(mob/user, obj/item/I) playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) From d112556ea3ac7deb03ff041232dd42a7f370bca5 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Fri, 21 Feb 2020 09:34:13 -0500 Subject: [PATCH 064/175] Fix, New Category, file renames. Remove Sweets Category Add Donut Category Rename recipies_sushi.dm to recipies_eastern_fish.dm (for sorting in the UI) Rename recipies_pie.dm to recipies_pie_sweets.dm Remove Onigiri from Misc (It's in Eastern) --- code/__DEFINES/construction.dm | 7 +- code/datums/components/crafting/craft.dm | 2 +- .../recipes/tablecraft/recipes_donut.dm | 255 ++++++++++++++ ...cipes_sushi.dm => recipes_eastern_fish.dm} | 33 +- .../recipes/tablecraft/recipes_meat.dm | 31 -- .../recipes/tablecraft/recipes_misc.dm | 10 - .../recipes/tablecraft/recipes_pastry.dm | 328 ------------------ ...{recipes_pie.dm => recipes_pies_sweets.dm} | 75 ++++ tgstation.dme | 5 +- 9 files changed, 370 insertions(+), 376 deletions(-) create mode 100644 code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm rename code/modules/food_and_drinks/recipes/tablecraft/{recipes_sushi.dm => recipes_eastern_fish.dm} (81%) rename code/modules/food_and_drinks/recipes/tablecraft/{recipes_pie.dm => recipes_pies_sweets.dm} (75%) diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index 27be53d8c9..d022fd932d 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -92,13 +92,14 @@ #define CAT_BREAD "Breads" #define CAT_BURGER "Burgers" #define CAT_CAKE "Cakes" -#define CAT_EASTERN "Eastern" +#define CAT_DONUT "Donuts" +#define CAT_EASTERN "Eastern & Fish" #define CAT_EGG "Egg-Based Food" #define CAT_MEAT "Meats" #define CAT_MEXICAN "Mexican" #define CAT_MISCFOOD "Misc. Food" -#define CAT_PASTRY "Pastries & Sweets" -#define CAT_PIE "Pies" +#define CAT_PASTRY "Pastries" +#define CAT_PIE "Pies & Sweets" #define CAT_PIZZA "Pizzas" #define CAT_SALAD "Salads" #define CAT_SANDWICH "Sandwiches" diff --git a/code/datums/components/crafting/craft.dm b/code/datums/components/crafting/craft.dm index 1caf7d9489..187c896938 100644 --- a/code/datums/components/crafting/craft.dm +++ b/code/datums/components/crafting/craft.dm @@ -27,6 +27,7 @@ CAT_BREAD, CAT_BURGER, CAT_CAKE, + CAT_DONUT, CAT_EGG, CAT_EASTERN, CAT_ICE, @@ -40,7 +41,6 @@ CAT_SANDWICH, CAT_SOUP, CAT_SPAGHETTI, - CAT_SWEETS, ), CAT_DRINK = CAT_NONE, CAT_CLOTHING = CAT_NONE, diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm new file mode 100644 index 0000000000..ac5576ac25 --- /dev/null +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm @@ -0,0 +1,255 @@ +// see code/module/crafting/table.dm + +////////////////////////////////////////////////DONUTS//////////////////////////////////////////////// + +/datum/crafting_recipe/food/donut + time = 15 + name = "Donut" + reqs = list( + /datum/reagent/consumable/sugar = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/plain + subcategory = CAT_DONUT + +/datum/crafting_recipe/food/donut/chaos + name = "Chaos donut" + reqs = list( + /datum/reagent/consumable/frostoil = 5, + /datum/reagent/consumable/capsaicin = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/chaos + +datum/crafting_recipe/food/donut/meat + time = 15 + name = "Meat donut" + reqs = list( + /obj/item/reagent_containers/food/snacks/meat/slab = 1, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/meat + +/datum/crafting_recipe/food/donut/jelly + name = "Jelly donut" + reqs = list( + /datum/reagent/consumable/berryjuice = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/plain + +/datum/crafting_recipe/food/donut/slimejelly + name = "Slime jelly donut" + reqs = list( + /datum/reagent/toxin/slimejelly = 5, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain + +/datum/crafting_recipe/food/donut/glaze + time = 15 + name = "glaze donut" + reqs = list( + /datum/reagent/consumable/sugar = 10, + /obj/item/reagent_containers/food/snacks/pastrybase = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/glaze + subcategory = CAT_DONUT + +/datum/crafting_recipe/food/donut/berry + name = "Berry Donut" + reqs = list( + /datum/reagent/consumable/berryjuice = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/berry + +/datum/crafting_recipe/food/donut/trumpet + name = "Spaceman's Donut" + reqs = list( + /datum/reagent/medicine/polypyr = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + + result = /obj/item/reagent_containers/food/snacks/donut/trumpet + +/datum/crafting_recipe/food/donut/apple + name = "Apple Donut" + reqs = list( + /datum/reagent/consumable/applejuice = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/apple + +/datum/crafting_recipe/food/donut/caramel + name = "Caramel Donut" + reqs = list( + /datum/reagent/consumable/caramel = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/caramel + +/datum/crafting_recipe/food/donut/choco + name = "Chocolate Donut" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/choco + +/datum/crafting_recipe/food/donut/blumpkin + name = "Blumpkin Donut" + reqs = list( + /datum/reagent/consumable/blumpkinjuice = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/blumpkin + +/datum/crafting_recipe/food/donut/bungo + name = "Bungo Donut" + reqs = list( + /datum/reagent/consumable/bungojuice = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/bungo + +/datum/crafting_recipe/food/donut/matcha + name = "Matcha Donut" + reqs = list( + /datum/reagent/toxin/teapowder = 3, + /obj/item/reagent_containers/food/snacks/donut/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/matcha + +////////////////////////////////////////////////////JELLY DONUTS/////////////////////////////////////////////////////// + +/datum/crafting_recipe/food/donut/jelly/apple + name = "Apple Jelly Donut" + reqs = list( + /datum/reagent/consumable/applejuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/apple + +/datum/crafting_recipe/food/donut/jelly/berry + name = "Berry Jelly Donut" + reqs = list( + /datum/reagent/consumable/berryjuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/berry + +/datum/crafting_recipe/food/donut/jelly/blumpkin + name = "Blumpkin Jelly Donut" + reqs = list( + /datum/reagent/consumable/blumpkinjuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/blumpkin + +/datum/crafting_recipe/food/donut/jelly/bungo + name = "Bungo Jelly Donut" + reqs = list( + /datum/reagent/consumable/bungojuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/bungo + +/datum/crafting_recipe/food/donut/jelly/caramel + name = "Caramel Jelly Donut" + reqs = list( + /datum/reagent/consumable/caramel = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/caramel + +/datum/crafting_recipe/food/donut/jelly/choco + name = "Chocolate Jelly Donut" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/choco + +/datum/crafting_recipe/food/donut/jelly/matcha + name = "Matcha Jelly Donut" + reqs = list( + /datum/reagent/toxin/teapowder = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/matcha + +/datum/crafting_recipe/food/donut/jelly/trumpet + name = "Spaceman's Jelly Donut" + reqs = list( + /datum/reagent/medicine/polypyr = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/trumpet + +////////////////////////////////////////////////////SLIME DONUTS/////////////////////////////////////////////////////// + +/datum/crafting_recipe/food/donut/slimejelly/apple + name = "Apple Slime Donut" + reqs = list( + /datum/reagent/consumable/applejuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/apple + +/datum/crafting_recipe/food/donut/slimejelly/berry + name = "Berry Slime Donut" + reqs = list( + /datum/reagent/consumable/berryjuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/berry + +/datum/crafting_recipe/food/donut/slimejelly/blumpkin + name = "Blumpkin Slime Donut" + reqs = list( + /datum/reagent/consumable/blumpkinjuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/blumpkin + +/datum/crafting_recipe/food/donut/slimejelly/bungo + name = "Bungo Slime Donut" + reqs = list( + /datum/reagent/consumable/bungojuice = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/bungo + +/datum/crafting_recipe/food/donut/slimejelly/caramel + name = "Caramel Slime Donut" + reqs = list( + /datum/reagent/consumable/caramel = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/caramel + +/datum/crafting_recipe/food/donut/slimejelly/choco + name = "Chocolate Slime Donut" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/choco + +/datum/crafting_recipe/food/donut/slimejelly/trumpet + name = "Spaceman's Slime Donut" + reqs = list( + /datum/reagent/medicine/polypyr = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/trumpet + +/datum/crafting_recipe/food/donut/slimejelly/matcha + name = "Matcha Slime Donut" + reqs = list( + /datum/reagent/toxin/teapowder = 3, + /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/matcha diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_eastern_fish.dm similarity index 81% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm rename to code/modules/food_and_drinks/recipes/tablecraft/recipes_eastern_fish.dm index 3a77181d8f..e69b1dfd36 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sushi.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_eastern_fish.dm @@ -94,7 +94,7 @@ result = /obj/item/reagent_containers/food/snacks/sushie_pro subcategory = CAT_EASTERN -//////////////////Not-Fish////////////////////// +//////////////////Eastern Not-Fish////////////////////// /datum/crafting_recipe/food/chawanmushi name = "Chawanmushi" @@ -149,3 +149,34 @@ ) result = /obj/item/reagent_containers/food/snacks/fortunecookie subcategory = CAT_EASTERN + +//////////////////////////////////////////////FISH/////////////////////////////////////////// + +/datum/crafting_recipe/food/fishfingers + name = "Fish fingers" + reqs = list( + /datum/reagent/consumable/flour = 5, + /obj/item/reagent_containers/food/snacks/bun = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fishfingers + subcategory = CAT_EASTERN + +/datum/crafting_recipe/food/cubancarp + name = "Cuban carp" + reqs = list( + /datum/reagent/consumable/flour = 5, + /obj/item/reagent_containers/food/snacks/grown/chili = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/cubancarp + subcategory = CAT_EASTERN + +/datum/crafting_recipe/food/fishandchips + name = "Fish and chips" + reqs = list( + /obj/item/reagent_containers/food/snacks/fries = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fishandchips + subcategory = CAT_EASTERN \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm index 03020b8ba9..d2b04b7f99 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm @@ -62,37 +62,6 @@ result = /obj/item/reagent_containers/food/snacks/spidereggsham subcategory = CAT_MEAT -//////////////////////////////////////////////FISH/////////////////////////////////////////// - -/datum/crafting_recipe/food/fishfingers - name = "Fish fingers" - reqs = list( - /datum/reagent/consumable/flour = 5, - /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/fishfingers - subcategory = CAT_MEAT - -/datum/crafting_recipe/food/cubancarp - name = "Cuban carp" - reqs = list( - /datum/reagent/consumable/flour = 5, - /obj/item/reagent_containers/food/snacks/grown/chili = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/cubancarp - subcategory = CAT_MEAT - -/datum/crafting_recipe/food/fishandchips - name = "Fish and chips" - reqs = list( - /obj/item/reagent_containers/food/snacks/fries = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 - ) - result = /obj/item/reagent_containers/food/snacks/fishandchips - subcategory = CAT_MEAT - ////////////////////////////////////////////////MISC RECIPE's//////////////////////////////////////////////// /datum/crafting_recipe/food/ribs diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index b2d79e10f9..d72363dcee 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -128,13 +128,3 @@ ) result = /obj/item/reagent_containers/food/snacks/salad/ricepudding subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/riceball - name = "Onigiri" - reqs = list( - /datum/reagent/consumable/soysauce = 1, - /obj/item/reagent_containers/food/snacks/grown/kudzupod = 1, - /obj/item/reagent_containers/food/snacks/salad/boiledrice = 1 - ) - result = /obj/item/reagent_containers/food/snacks/riceball - subcategory = CAT_MISCFOOD diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 191013281c..2458a0e085 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -1,259 +1,5 @@ // see code/module/crafting/table.dm -////////////////////////////////////////////////DONUTS//////////////////////////////////////////////// - -/datum/crafting_recipe/food/donut - time = 15 - name = "Donut" - reqs = list( - /datum/reagent/consumable/sugar = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/plain - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/donut/chaos - name = "Chaos donut" - reqs = list( - /datum/reagent/consumable/frostoil = 5, - /datum/reagent/consumable/capsaicin = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/chaos - -datum/crafting_recipe/food/donut/meat - time = 15 - name = "Meat donut" - reqs = list( - /obj/item/reagent_containers/food/snacks/meat/slab = 1, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/meat - -/datum/crafting_recipe/food/donut/jelly - name = "Jelly donut" - reqs = list( - /datum/reagent/consumable/berryjuice = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/plain - -/datum/crafting_recipe/food/donut/slimejelly - name = "Slime jelly donut" - reqs = list( - /datum/reagent/toxin/slimejelly = 5, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain - -/datum/crafting_recipe/food/donut/glaze - time = 15 - name = "glaze donut" - reqs = list( - /datum/reagent/consumable/sugar = 10, - /obj/item/reagent_containers/food/snacks/pastrybase = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/glaze - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/donut/berry - name = "Berry Donut" - reqs = list( - /datum/reagent/consumable/berryjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/berry - -/datum/crafting_recipe/food/donut/trumpet - name = "Spaceman's Donut" - reqs = list( - /datum/reagent/medicine/polypyr = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - - result = /obj/item/reagent_containers/food/snacks/donut/trumpet - -/datum/crafting_recipe/food/donut/apple - name = "Apple Donut" - reqs = list( - /datum/reagent/consumable/applejuice = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/apple - -/datum/crafting_recipe/food/donut/caramel - name = "Caramel Donut" - reqs = list( - /datum/reagent/consumable/caramel = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/caramel - -/datum/crafting_recipe/food/donut/choco - name = "Chocolate Donut" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/choco - -/datum/crafting_recipe/food/donut/blumpkin - name = "Blumpkin Donut" - reqs = list( - /datum/reagent/consumable/blumpkinjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/blumpkin - -/datum/crafting_recipe/food/donut/bungo - name = "Bungo Donut" - reqs = list( - /datum/reagent/consumable/bungojuice = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/bungo - -/datum/crafting_recipe/food/donut/matcha - name = "Matcha Donut" - reqs = list( - /datum/reagent/toxin/teapowder = 3, - /obj/item/reagent_containers/food/snacks/donut/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/matcha - -////////////////////////////////////////////////////JELLY DONUTS/////////////////////////////////////////////////////// - -/datum/crafting_recipe/food/donut/jelly/apple - name = "Apple Jelly Donut" - reqs = list( - /datum/reagent/consumable/applejuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/apple - -/datum/crafting_recipe/food/donut/jelly/berry - name = "Berry Jelly Donut" - reqs = list( - /datum/reagent/consumable/berryjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/berry - -/datum/crafting_recipe/food/donut/jelly/blumpkin - name = "Blumpkin Jelly Donut" - reqs = list( - /datum/reagent/consumable/blumpkinjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/blumpkin - -/datum/crafting_recipe/food/donut/jelly/bungo - name = "Bungo Jelly Donut" - reqs = list( - /datum/reagent/consumable/bungojuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/bungo - -/datum/crafting_recipe/food/donut/jelly/caramel - name = "Caramel Jelly Donut" - reqs = list( - /datum/reagent/consumable/caramel = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/caramel - -/datum/crafting_recipe/food/donut/jelly/choco - name = "Chocolate Jelly Donut" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/choco - -/datum/crafting_recipe/food/donut/jelly/matcha - name = "Matcha Jelly Donut" - reqs = list( - /datum/reagent/toxin/teapowder = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/matcha - -/datum/crafting_recipe/food/donut/jelly/trumpet - name = "Spaceman's Jelly Donut" - reqs = list( - /datum/reagent/medicine/polypyr = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/trumpet - -////////////////////////////////////////////////////SLIME DONUTS/////////////////////////////////////////////////////// - -/datum/crafting_recipe/food/donut/slimejelly/apple - name = "Apple Slime Donut" - reqs = list( - /datum/reagent/consumable/applejuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/apple - -/datum/crafting_recipe/food/donut/slimejelly/berry - name = "Berry Slime Donut" - reqs = list( - /datum/reagent/consumable/berryjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/berry - -/datum/crafting_recipe/food/donut/slimejelly/blumpkin - name = "Blumpkin Slime Donut" - reqs = list( - /datum/reagent/consumable/blumpkinjuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/blumpkin - -/datum/crafting_recipe/food/donut/slimejelly/bungo - name = "Bungo Slime Donut" - reqs = list( - /datum/reagent/consumable/bungojuice = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/bungo - -/datum/crafting_recipe/food/donut/slimejelly/caramel - name = "Caramel Slime Donut" - reqs = list( - /datum/reagent/consumable/caramel = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/caramel - -/datum/crafting_recipe/food/donut/slimejelly/choco - name = "Chocolate Slime Donut" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/choco - -/datum/crafting_recipe/food/donut/slimejelly/trumpet - name = "Spaceman's Slime Donut" - reqs = list( - /datum/reagent/medicine/polypyr = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/trumpet - -/datum/crafting_recipe/food/donut/slimejelly/matcha - name = "Matcha Slime Donut" - reqs = list( - /datum/reagent/toxin/teapowder = 3, - /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/donut/jelly/slimejelly/matcha - ////////////////////////////////////////////////MUFFINS//////////////////////////////////////////////// /datum/crafting_recipe/food/muffin @@ -516,77 +262,3 @@ datum/crafting_recipe/food/donut/meat result = /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit subcategory = CAT_PASTRY -////////////////////////////////////////////SWEETS//////////////////////////////////////////// - -/datum/crafting_recipe/food/candiedapple - name = "Candied apple" - reqs = list(/datum/reagent/water = 5, - /datum/reagent/consumable/sugar = 5, - /obj/item/reagent_containers/food/snacks/grown/apple = 1 - ) - result = /obj/item/reagent_containers/food/snacks/candiedapple - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/chococoin - name = "Choco coin" - reqs = list( - /obj/item/coin = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/chococoin - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/chocoorange - name = "Choco orange" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/chocoorange - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/chocolatebunny - name = "Chocolate bunny" - reqs = list( - /datum/reagent/consumable/sugar = 2, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chocolatebunny - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/chocolatestrawberry - name = "Chocolate Strawberry" - reqs = list( - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/fudgedice - name = "Fudge dice" - reqs = list( - /obj/item/dice = 1, - /obj/item/reagent_containers/food/snacks/chocolatebar = 1, - ) - result = /obj/item/reagent_containers/food/snacks/fudgedice - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/honeybar - name = "Honey nut bar" - reqs = list( - /obj/item/reagent_containers/food/snacks/grown/oat = 1, - /datum/reagent/consumable/honey = 5 - ) - result = /obj/item/reagent_containers/food/snacks/honeybar - subcategory = CAT_PASTRY - -/datum/crafting_recipe/food/spiderlollipop - name = "Spider Lollipop" - reqs = list(/obj/item/stack/rods = 1, - /datum/reagent/consumable/sugar = 5, - /datum/reagent/water = 5, - /obj/item/reagent_containers/food/snacks/spiderling = 1 - ) - result = /obj/item/reagent_containers/food/snacks/spiderlollipop - subcategory = CAT_PASTRY diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm similarity index 75% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm rename to code/modules/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm index eabad73138..52becf81df 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm @@ -228,3 +228,78 @@ ) result = /obj/item/reagent_containers/food/snacks/pie/cocolavatart subcategory = CAT_PIE + +////////////////////////////////////////////SWEETS//////////////////////////////////////////// + +/datum/crafting_recipe/food/candiedapple + name = "Candied apple" + reqs = list(/datum/reagent/water = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/reagent_containers/food/snacks/grown/apple = 1 + ) + result = /obj/item/reagent_containers/food/snacks/candiedapple + subcategory = CAT_PIE + +/datum/crafting_recipe/food/chococoin + name = "Choco coin" + reqs = list( + /obj/item/coin = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/chococoin + subcategory = CAT_PIE + +/datum/crafting_recipe/food/chocoorange + name = "Choco orange" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/chocoorange + subcategory = CAT_PIE + +/datum/crafting_recipe/food/chocolatebunny + name = "Chocolate bunny" + reqs = list( + /datum/reagent/consumable/sugar = 2, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chocolatebunny + subcategory = CAT_PIE + +/datum/crafting_recipe/food/chocolatestrawberry + name = "Chocolate Strawberry" + reqs = list( + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + /obj/item/reagent_containers/food/snacks/grown/strawberry = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chocolatestrawberry + subcategory = CAT_PIE + +/datum/crafting_recipe/food/fudgedice + name = "Fudge dice" + reqs = list( + /obj/item/dice = 1, + /obj/item/reagent_containers/food/snacks/chocolatebar = 1, + ) + result = /obj/item/reagent_containers/food/snacks/fudgedice + subcategory = CAT_PIE + +/datum/crafting_recipe/food/honeybar + name = "Honey nut bar" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/oat = 1, + /datum/reagent/consumable/honey = 5 + ) + result = /obj/item/reagent_containers/food/snacks/honeybar + subcategory = CAT_PIE + +/datum/crafting_recipe/food/spiderlollipop + name = "Spider Lollipop" + reqs = list(/obj/item/stack/rods = 1, + /datum/reagent/consumable/sugar = 5, + /datum/reagent/water = 5, + /obj/item/reagent_containers/food/snacks/spiderling = 1 + ) + result = /obj/item/reagent_containers/food/snacks/spiderlollipop + subcategory = CAT_PIE \ No newline at end of file diff --git a/tgstation.dme b/tgstation.dme index 44ad72f766..850df585d9 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1834,19 +1834,20 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_bread.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_burger.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_cake.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_donut.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_eastern_fish.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_egg.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_frozen.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_meat.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_mexican.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_misc.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pastry.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pie.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pies_sweets.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pizza.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_salad.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_sandwich.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_soup.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_spaghetti.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_sushi.dm" #include "code\modules\games\cas.dm" #include "code\modules\goonchat\browserOutput.dm" #include "code\modules\holiday\easter.dm" From 418374be06b0c15f0b41f2ad761c0ec9b8472f79 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Fri, 21 Feb 2020 17:56:14 +0000 Subject: [PATCH 065/175] beegion --- .../mob/living/simple_animal/hostile/mining_mobs/hivelord.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm index 227e70bdf4..f949df8012 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm @@ -176,7 +176,6 @@ speak_emote = list("echoes") attack_sound = 'sound/weapons/pierce.ogg' throw_message = "is shrugged off by" - pass_flags = PASSTABLE | PASSMOB del_on_death = TRUE stat_attack = UNCONSCIOUS robust_searching = 1 From 8e865a508180d5a3107e7c071368e29c8cc8c535 Mon Sep 17 00:00:00 2001 From: Putnam Date: Fri, 21 Feb 2020 11:37:17 -0800 Subject: [PATCH 066/175] Made power increase with raw damage. --- code/modules/power/supermatter/supermatter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index 21003b5e86..52a836e717 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -345,7 +345,7 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_crystal) else // Pass all the gas related code an empty gas container removed = new() - + matter_power += damage - damage_archived damage = min(damage_archived + (DAMAGE_HARDCAP * explosion_point),damage) // hardcap any direct damage taken before doing atmos damage damage_archived = damage if(!removed || !removed.total_moles() || isspaceturf(T)) //we're in space or there is no gas to process From 0f9bda8f909c1e99ec827bc798add26f4d1f3fc1 Mon Sep 17 00:00:00 2001 From: Putnam Date: Fri, 21 Feb 2020 11:53:16 -0800 Subject: [PATCH 067/175] wow okay make it do this instead --- code/modules/power/supermatter/supermatter.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index 52a836e717..858adc0d66 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -345,9 +345,9 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_crystal) else // Pass all the gas related code an empty gas container removed = new() + damage_archived = min(damage_archived + (DAMAGE_HARDCAP * explosion_point),damage) matter_power += damage - damage_archived - damage = min(damage_archived + (DAMAGE_HARDCAP * explosion_point),damage) // hardcap any direct damage taken before doing atmos damage - damage_archived = damage + damage = damage_archived if(!removed || !removed.total_moles() || isspaceturf(T)) //we're in space or there is no gas to process if(takes_damage) damage += max((power / 1000) * DAMAGE_INCREASE_MULTIPLIER, 0.1) // always does at least some damage From 6dbd58b5df84aba1720a451b914c5330a211e3e0 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Fri, 21 Feb 2020 16:07:41 -0600 Subject: [PATCH 068/175] i really fucked this up please advise --- code/controllers/subsystem/shuttle.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 5952c77298..5929e7e113 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -55,6 +55,8 @@ SUBSYSTEM_DEF(shuttle) var/lockdown = FALSE //disallow transit after nuke goes off + var/extendvote_passed = FALSE + var/realtimeofstart = 0 /datum/controller/subsystem/shuttle/Initialize(timeofday) @@ -648,3 +650,4 @@ SUBSYSTEM_DEF(shuttle) log_game("Round end vote passed. Shuttle has been auto-called.") message_admins("Round end vote passed. Shuttle has been auto-called.") emergencyNoRecall = TRUE + extendvote_passed = TRUE From ca2924687804c3ab32f936e77f444243a3f3d91c Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Sat, 22 Feb 2020 00:02:49 -0600 Subject: [PATCH 069/175] adds the loudness booster(instruments) and Encryption key slot to pAIs. (lazy tg port 2.) --- code/datums/action.dm | 7 ++-- code/game/machinery/announcement_system.dm | 2 +- .../game/objects/items/devices/instruments.dm | 6 ++++ .../objects/items/devices/radio/headset.dm | 9 +++-- code/modules/mob/living/silicon/ai/ai.dm | 2 +- code/modules/mob/living/silicon/pai/pai.dm | 17 ++++++++- .../mob/living/silicon/pai/software.dm | 36 +++++++++++++++++++ 7 files changed, 69 insertions(+), 10 deletions(-) diff --git a/code/datums/action.dm b/code/datums/action.dm index 04d9c706ed..602dd2c37a 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -301,10 +301,7 @@ /datum/action/item_action/synthswitch/Trigger() if(istype(target, /obj/item/instrument/piano_synth)) var/obj/item/instrument/piano_synth/synth = target - var/chosen = input("Choose the type of instrument you want to use", "Instrument Selection", "piano") as null|anything in synth.insTypes - if(!synth.insTypes[chosen]) - return - return synth.changeInstrument(chosen) + return synth.selectInstrument() return ..() /datum/action/item_action/vortex_recall @@ -827,4 +824,4 @@ for(var/datum/action/A in M.actions) if(istype(A, action_type)) return A - return \ No newline at end of file + return diff --git a/code/game/machinery/announcement_system.dm b/code/game/machinery/announcement_system.dm index 5a597f7280..84e5910731 100644 --- a/code/game/machinery/announcement_system.dm +++ b/code/game/machinery/announcement_system.dm @@ -29,7 +29,7 @@ GLOBAL_LIST_EMPTY(announcement_systems) /obj/machinery/announcement_system/Initialize() . = ..() GLOB.announcement_systems += src - radio = new /obj/item/radio/headset/ai(src) + radio = new /obj/item/radio/headset/silicon/ai(src) update_icon() /obj/machinery/announcement_system/update_icon() diff --git a/code/game/objects/items/devices/instruments.dm b/code/game/objects/items/devices/instruments.dm index dd7c5b15d9..4c46d064c4 100644 --- a/code/game/objects/items/devices/instruments.dm +++ b/code/game/objects/items/devices/instruments.dm @@ -108,6 +108,12 @@ song.instrumentDir = name song.instrumentExt = insTypes[name] +/obj/item/instrument/piano_synth/proc/selectInstrument() // Moved here so it can be used by the action and PAI software panel without copypasta + var/chosen = input("Choose the type of instrument you want to use", "Instrument Selection", song.instrumentDir) as null|anything in insTypes + if(!insTypes[chosen]) + return + return changeInstrument(chosen) + /obj/item/instrument/banjo name = "banjo" desc = "A 'Mura' brand banjo. It's pretty much just a drum with a neck and strings." diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index e04501144e..1b9cea37f3 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -254,12 +254,17 @@ GLOBAL_LIST_INIT(channel_tokens, list( keyslot = null bowman = TRUE -/obj/item/radio/headset/ai +/obj/item/radio/headset/silicon/pai + name = "\proper mini Integrated Subspace Transceiver " + subspace_transmission = FALSE + + +/obj/item/radio/headset/silicon/ai name = "\proper Integrated Subspace Transceiver " keyslot2 = new /obj/item/encryptionkey/ai command = TRUE -/obj/item/radio/headset/ai/can_receive(freq, level) +/obj/item/radio/headset/silicon/can_receive(freq, level) return ..(freq, level, TRUE) /obj/item/radio/headset/attackby(obj/item/W, mob/user, params) diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index ed0d0d02e8..3b15c47bcb 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -146,7 +146,7 @@ aiPDA.name = name + " (" + aiPDA.ownjob + ")" aiMulti = new(src) - radio = new /obj/item/radio/headset/ai(src) + radio = new /obj/item/radio/headset/silicon/ai(src) aicamera = new/obj/item/camera/siliconcam/ai_camera(src) deploy_action.Grant(src) diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index daaf9afbe2..074e637120 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -10,6 +10,7 @@ health = 500 maxHealth = 500 layer = BELOW_MOB_LAYER + var/obj/item/instrument/piano_synth/internal_instrument silicon_privileges = PRIVILEDGES_PAI var/datum/element/mob_holder/current_mob_holder //because only a few of their chassis can be actually held. @@ -27,6 +28,7 @@ var/speakDoubleExclamation = "alarms" var/speakQuery = "queries" + var/obj/item/radio/headset // The pAI's headset var/obj/item/pai_cable/cable // The cable we produce and use when door or camera jacking var/master // Name of the one who commands us @@ -54,6 +56,7 @@ var/obj/item/integrated_signaler/signaler // AI's signaller + var/encryptmod = FALSE var/holoform = FALSE var/canholo = TRUE var/obj/item/card/id/access_card = null @@ -84,6 +87,7 @@ var/icon/custom_holoform_icon /mob/living/silicon/pai/Destroy() + QDEL_NULL(internal_instrument) if (loc != card) card.forceMove(drop_location()) card.pai = null @@ -106,7 +110,7 @@ card = P signaler = new(src) if(!radio) - radio = new /obj/item/radio(src) + radio = new /obj/item/radio/headset/silicon/pai(src) //PDA pda = new(src) @@ -296,6 +300,17 @@ /mob/living/silicon/pai/process() emitterhealth = CLAMP((emitterhealth + emitterregen), -50, emittermaxhealth) +/obj/item/paicard/attackby(obj/item/W, mob/user, params) + ..() + user.set_machine(src) + if(pai.encryptmod == TRUE) + if(W.tool_behaviour == TOOL_SCREWDRIVER) + pai.radio.attackby(W, user, params) + else if(istype(W, /obj/item/encryptionkey)) + pai.radio.attackby(W, user, params) + else + to_chat(user, "Encryption Key ports not configured.") + /mob/living/silicon/pai/proc/short_radio() if(radio_short_timerid) deltimer(radio_short_timerid) diff --git a/code/modules/mob/living/silicon/pai/software.dm b/code/modules/mob/living/silicon/pai/software.dm index 55f4bdd65d..7751632813 100644 --- a/code/modules/mob/living/silicon/pai/software.dm +++ b/code/modules/mob/living/silicon/pai/software.dm @@ -20,6 +20,8 @@ "universal translator" = 35, //"projection array" = 15 "remote signaller" = 5, + "loudness booster" = 25, + "encryption keys" = 20 ) /mob/living/silicon/pai/proc/paiInterface() @@ -50,6 +52,8 @@ left_part = softwareMedicalRecord() if("securityrecord") left_part = softwareSecurityRecord() + if("encryptionkeys") + left_part = softwareEncryptionKeys() if("translator") left_part = softwareTranslator() if("atmosensor") @@ -64,6 +68,8 @@ left_part = softwareCamera() if("signaller") left_part = softwareSignal() + if("loudness") + left_part = softwareLoudness() //usr << browse_rsc('windowbak.png') // This has been moved to the mob's Login() proc @@ -256,6 +262,9 @@ else var/datum/atom_hud/med = GLOB.huds[med_hud] med.remove_hud_from(src) + if("encryptionkeys") + if(href_list["toggle"]) + encryptmod = TRUE if("translator") if(href_list["toggle"]) grant_all_languages(TRUE) @@ -271,6 +280,12 @@ var/turf/T = get_turf(loc) cable = new /obj/item/pai_cable(T) T.visible_message("A port on [src] opens to reveal [cable], which promptly falls to the floor.", "You hear the soft click of something light and hard falling to the ground.") + if("loudness") + if(subscreen == 1) // Open Instrument + internal_instrument.interact(src) + if(subscreen == 2) // Change Instrument type + internal_instrument.selectInstrument() + //updateUsrDialog() We only need to account for the single mob this is intended for, and he will *always* be able to call this window paiInterface() // So we'll just call the update directly rather than doing some default checks return @@ -306,6 +321,8 @@ dat += "Camera Jack
    " if(s == "remote signaller") dat += "Remote Signaller
    " + if(s == "loudness booster") + dat += "Loudness Booster
    " dat += "
    " // Advanced @@ -319,6 +336,8 @@ dat += "Facial Recognition Suite[(secHUD) ? " On" : " Off"]
    " if(s == "medical HUD") dat += "Medical Analysis Suite[(medHUD) ? " On" : " Off"]
    " + if(s == "encryption keys") + dat += "Channel Encryption Firmware[(encryptmod) ? " On" : " Off"]
    " if(s == "universal translator") var/datum/language_holder/H = get_language_holder() dat += "Universal Translator[H.omnitongue ? " On" : " Off"]
    " @@ -469,6 +488,14 @@ . += "

    Requested security record not found,

    " . += "
    \nBack
    " return . +// Encryption Keys +// Encryption kets +/mob/living/silicon/pai/proc/softwareEncryptionKeys() + var/dat = {"

    Encryption Key Firmware


    + When enabled, this device will be able to use up to two (2) encryption keys for departmental channel access.

    + The device is currently [encryptmod ? "en" : "dis" ]abled.
    [encryptmod ? "" : "Activate Encryption Key Ports
    "]"} + return dat + // Universal Translator /mob/living/silicon/pai/proc/softwareTranslator() @@ -630,3 +657,12 @@ dat += "

    " dat += "Messages:
    [pda.tnote]" return dat + +// Loudness Booster +/mob/living/silicon/pai/proc/softwareLoudness() + if(!internal_instrument) + internal_instrument = new(src) + var/dat = "

    Sound Synthetizer

    " + dat += "Open Synthesizer Interface
    " + dat += "Choose Instrument Type" + return dat From d328d554ba6d9e16575347dd021ae344ba6ab616 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sat, 22 Feb 2020 02:38:57 -0800 Subject: [PATCH 070/175] Reduced copypasta --- code/__HELPERS/_cit_helpers.dm | 15 ++------------- code/modules/mob/living/carbon/human/examine.dm | 2 +- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/code/__HELPERS/_cit_helpers.dm b/code/__HELPERS/_cit_helpers.dm index 84cbe5abeb..a26b9285d4 100644 --- a/code/__HELPERS/_cit_helpers.dm +++ b/code/__HELPERS/_cit_helpers.dm @@ -129,7 +129,7 @@ GLOBAL_VAR_INIT(miscreants_allowed, FALSE) flavor_text_2 = new_flavor to_chat(src, "Your temporary flavor text has been updated.") -/mob/proc/print_flavor_text(flavor) +/mob/proc/print_flavor_text(flavor,temp = FALSE) if(!flavor) return // We are decoding and then encoding to not only get correct amount of characters, but also to prevent partial escaping characters being shown. @@ -137,18 +137,7 @@ GLOBAL_VAR_INIT(miscreants_allowed, FALSE) if(length_char(msg) <= 40) return "[html_encode(msg)]" else - return "[html_encode(copytext_char(msg, 1, 37))]... More..." - -/mob/proc/print_flavor_text_2(flavor) - if(!flavor) - return - // We are decoding and then encoding to not only get correct amount of characters, but also to prevent partial escaping characters being shown. - var/msg = html_decode(replacetext(flavor, "\n", " ")) - if(length_char(msg) <= 40) - return "[html_encode(msg)]" - else - return "[html_encode(copytext_char(msg, 1, 37))]... More..." - + return "[html_encode(copytext_char(msg, 1, 37))]... More..." //LOOC toggles /client/verb/listen_looc() diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index e93340b71e..fec82b357f 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -397,7 +397,7 @@ var/flavor = print_flavor_text(flavor_text) if(flavor) . += flavor - var/temp_flavor = print_flavor_text_2(flavor_text_2) + var/temp_flavor = print_flavor_text(flavor_text_2,TRUE) if(temp_flavor) . += temp_flavor SEND_SIGNAL(src, COMSIG_PARENT_EXAMINE, user, .) From 2e5a829e6c856c16dea0da25bb3cbd4a40249397 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 22 Feb 2020 08:10:01 -0600 Subject: [PATCH 071/175] Automatic changelog generation for PR #11186 [ci skip] --- html/changelogs/AutoChangeLog-pr-11186.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11186.yml diff --git a/html/changelogs/AutoChangeLog-pr-11186.yml b/html/changelogs/AutoChangeLog-pr-11186.yml new file mode 100644 index 0000000000..7a0c97379a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11186.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - bugfix: "temporary flavor text can now be of reasonable length" From e1ec2497b1c8d97b02ac4c35be443d853b1900e7 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 22 Feb 2020 08:53:30 -0600 Subject: [PATCH 072/175] Automatic changelog generation for PR #11172 [ci skip] --- html/changelogs/AutoChangeLog-pr-11172.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11172.yml diff --git a/html/changelogs/AutoChangeLog-pr-11172.yml b/html/changelogs/AutoChangeLog-pr-11172.yml new file mode 100644 index 0000000000..83deba9652 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11172.yml @@ -0,0 +1,5 @@ +author: "Linzolle" +delete-after: True +changes: + - bugfix: "Bows now will not delete an arrow if it cant fire it." + - bugfix: "bows now like and respect sprite changes" From 0cd936e33e8ea791501ca308625da0fec52e5f70 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Feb 2020 15:02:07 -0600 Subject: [PATCH 073/175] bowstrings --- icons/obj/guns/projectile.dmi | Bin 44010 -> 43982 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/guns/projectile.dmi b/icons/obj/guns/projectile.dmi index 58e427a3fb543046f9c73bffe881988f1be8d48b..f859e8b1e7b40e89fd165856310535fe780789d3 100644 GIT binary patch delta 3226 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 delta 3254 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 Date: Sat, 22 Feb 2020 15:14:09 -0600 Subject: [PATCH 074/175] slab spawns and grammar shidd --- _maps/map_files/Mining/Lavaland.dmm | 17 +++++++++++++++-- code/game/objects/items/granters.dm | 6 +++--- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index 13dd939ad7..dcfdc3408c 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -2034,6 +2034,13 @@ /obj/structure/stone_tile, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"DQ" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/item/book/granter/crafting_recipe/bone_bow, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/ruin/unpowered/ash_walkers) "Ef" = ( /obj/structure/stone_tile/block/cracked, /turf/open/lava/smooth{ @@ -2401,6 +2408,7 @@ }, /obj/structure/table/wood, /obj/item/kitchen/knife/combat/bone, +/obj/item/book/granter/crafting_recipe/bone_bow, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) "TN" = ( @@ -2507,6 +2515,11 @@ /obj/structure/stone_tile/surrounding_tile/cracked, /turf/closed/mineral/volcanic/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"WA" = ( +/obj/structure/stone_tile/block/cracked, +/obj/item/book/granter/crafting_recipe/bone_bow, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/ruin/unpowered/ash_walkers) "WL" = ( /obj/structure/stone_tile{ dir = 4 @@ -57415,7 +57428,7 @@ Ds Ds KV nI -Ad +DQ Si aa ab @@ -57915,7 +57928,7 @@ aa aa Rk Si -sR +WA rz qh pq diff --git a/code/game/objects/items/granters.dm b/code/game/objects/items/granters.dm index 986090212e..8c21348b6e 100644 --- a/code/game/objects/items/granters.dm +++ b/code/game/objects/items/granters.dm @@ -491,12 +491,12 @@ remarks = list("Looks like these would sell much better in a plasma fire...", "Using glass bowls rather then cones?", "Mixing soda and ice-cream?", "Tall glasses with of liquids and solids...", "Just add a bit of icecream and cherry on top?") /obj/item/book/granter/crafting_recipe/bone_bow //Bow crafting for non-ashwalkers - name = "Sandstone manual on bows" - desc = "A standstone slab with everything you need to know for making bows and arrows just like an ashwalker would." + name = "bowyery sandstone slab" // this is an actual word + desc = "A sandstone slab with inscriptions describing the Ash Walkers of Lavaland's bowyery." crafting_recipe_types = list(/datum/crafting_recipe/bone_arrow, /datum/crafting_recipe/bone_bow, /datum/crafting_recipe/ashen_arrow, /datum/crafting_recipe/quiver, /datum/crafting_recipe/bow_tablet) icon_state = "stone_tablet" oneuse = FALSE - remarks = list("Sticking burning arrows into the sand makes them stronger?", "Breaking the bone apart to get shards, not sharpening the bone.", "Sinew is just like rope?") + remarks = list("Sticking burning arrows into the sand makes them stronger?", "Breaking the bone apart to get shards, not sharpening the bone...", "Sinew is just like rope?") /obj/item/book/granter/crafting_recipe/under_the_oven //Illegal cook book name = "Under The Oven" From 75a5a6cd4576369a688c90447817f02b9f3692a9 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Feb 2020 15:21:12 -0600 Subject: [PATCH 075/175] ellipses. dot dot dot. --- code/game/objects/items/granters.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/granters.dm b/code/game/objects/items/granters.dm index 8c21348b6e..24fc1043d8 100644 --- a/code/game/objects/items/granters.dm +++ b/code/game/objects/items/granters.dm @@ -496,7 +496,7 @@ crafting_recipe_types = list(/datum/crafting_recipe/bone_arrow, /datum/crafting_recipe/bone_bow, /datum/crafting_recipe/ashen_arrow, /datum/crafting_recipe/quiver, /datum/crafting_recipe/bow_tablet) icon_state = "stone_tablet" oneuse = FALSE - remarks = list("Sticking burning arrows into the sand makes them stronger?", "Breaking the bone apart to get shards, not sharpening the bone...", "Sinew is just like rope?") + remarks = list("Sticking burning arrows into the sand makes them stronger...", "Breaking the bone apart to get shards, not sharpening the bone...", "Sinew is just like rope...") /obj/item/book/granter/crafting_recipe/under_the_oven //Illegal cook book name = "Under The Oven" From 8dbf2b9a7d52ac02624d37a7b4516dd5ce007da7 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 22 Feb 2020 15:24:22 -0600 Subject: [PATCH 076/175] Automatic changelog generation for PR #11191 [ci skip] --- html/changelogs/AutoChangeLog-pr-11191.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11191.yml diff --git a/html/changelogs/AutoChangeLog-pr-11191.yml b/html/changelogs/AutoChangeLog-pr-11191.yml new file mode 100644 index 0000000000..12b80bf1c3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11191.yml @@ -0,0 +1,4 @@ +author: "YakumoChen" +delete-after: True +changes: + - tweak: "Legion skulls behave like bees!!!!" From 9e37f30aeddc17aa2b59771f8c32abf58a7c996d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 22 Feb 2020 15:30:36 -0600 Subject: [PATCH 077/175] Automatic changelog generation for PR #11182 [ci skip] --- html/changelogs/AutoChangeLog-pr-11182.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11182.yml diff --git a/html/changelogs/AutoChangeLog-pr-11182.yml b/html/changelogs/AutoChangeLog-pr-11182.yml new file mode 100644 index 0000000000..a5f8d5081e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11182.yml @@ -0,0 +1,5 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - balance: "Removes some armored Russian hats from box station round start" + - bugfix: "Doner items spawning" From accc4ce776941caa247fbfda9734e1279899d862 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Feb 2020 15:33:07 -0600 Subject: [PATCH 078/175] grammar shit, silkstring buff, arrow costs, yikes --- code/datums/components/crafting/guncrafting.dm | 4 ++-- .../crafting/recipes/recipes_weapon_and_ammo.dm | 14 +++++++++----- .../objects/items/stacks/sheets/sheet_types.dm | 4 ++-- .../projectiles/ammunition/caseless/arrow.dm | 6 +++--- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/code/datums/components/crafting/guncrafting.dm b/code/datums/components/crafting/guncrafting.dm index d421a6e42a..89868c2332 100644 --- a/code/datums/components/crafting/guncrafting.dm +++ b/code/datums/components/crafting/guncrafting.dm @@ -16,6 +16,6 @@ /obj/item/weaponcrafting/silkstring name = "silkstring" - desc = "A long pice of silk looks like cable coil." + desc = "A long piece of silk with some resemblance to cable coil." icon = 'icons/obj/improvised.dmi' - icon_state = "silkstring" \ No newline at end of file + icon_state = "silkstring" diff --git a/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm b/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm index 76f8f119e0..99487b53fd 100644 --- a/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm +++ b/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm @@ -204,7 +204,7 @@ result = /obj/item/gun/ballistic/bow/pipe reqs = list(/obj/item/pipe = 5, /obj/item/stack/sheet/plastic = 15, - /obj/item/weaponcrafting/silkstring = 10) + /obj/item/weaponcrafting/silkstring = 5) time = 450 category = CAT_WEAPONRY subcategory = CAT_WEAPON @@ -291,9 +291,9 @@ /datum/crafting_recipe/arrow name = "Arrow" result = /obj/item/ammo_casing/caseless/arrow - time = 40 + time = 20 reqs = list(/obj/item/stack/sheet/mineral/wood = 1, - /obj/item/weaponcrafting/silkstring = 1, + /obj/item/stack/sheet/cloth = 1, /obj/item/stack/rods = 3) // 1 metal sheet is worth 1.5 arrows category = CAT_WEAPONRY subcategory = CAT_AMMO @@ -301,7 +301,7 @@ /datum/crafting_recipe/bone_arrow name = "Bone Arrow" result = /obj/item/ammo_casing/caseless/arrow/bone - time = 40 + time = 20 always_availible = FALSE reqs = list(/obj/item/stack/sheet/bone = 1, /obj/item/stack/sheet/sinew = 1, @@ -310,7 +310,7 @@ subcategory = CAT_AMMO /datum/crafting_recipe/ashen_arrow - name = "Harden Arrow" + name = "Bonfire-Hardened Arrow" result = /obj/item/ammo_casing/caseless/arrow/ashen tools = list(/obj/structure/bonfire) time = 20 @@ -319,6 +319,10 @@ category = CAT_WEAPONRY subcategory = CAT_AMMO +/datum/crafting_recipe/ashen_arrow/welder + name = "Welder-Hardened Arrow" + tools = list(TOOL_WELDER) + /datum/crafting_recipe/smartdart name = "Medical smartdart" result = /obj/item/reagent_containers/syringe/dart diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 0e50ef2fb9..0eefb88417 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -381,12 +381,12 @@ GLOBAL_LIST_INIT(cloth_recipes, list ( \ new/datum/stack_recipe("white jumpsuit", /obj/item/clothing/under/color/white, 4, time = 40), \ new/datum/stack_recipe("white gloves", /obj/item/clothing/gloves/color/white, 2, time = 40), \ null, \ - new/datum/stack_recipe("silk string", /obj/item/weaponcrafting/silkstring, 2, time = 40), \ + new/datum/stack_recipe("silk string", /obj/item/weaponcrafting/silkstring, 1, time = 40), \ )) /obj/item/stack/sheet/silk name = "silk" - desc = "A long soft material. This one is just made out of cotton rather then any spiders or wyrms" + desc = "A long, soft material. Made out of refined cotton, instead of relying on the habits of spiders or silkworms." singular_name = "silk sheet" icon_state = "sheet-silk" item_state = "sheet-cloth" diff --git a/code/modules/projectiles/ammunition/caseless/arrow.dm b/code/modules/projectiles/ammunition/caseless/arrow.dm index df4941aa6a..0543e48f96 100644 --- a/code/modules/projectiles/ammunition/caseless/arrow.dm +++ b/code/modules/projectiles/ammunition/caseless/arrow.dm @@ -9,18 +9,18 @@ /obj/item/ammo_casing/caseless/arrow/ashen name = "ashen arrow" - desc = "Fire harderned wooden arrow." + desc = "An arrow made of wood, hardened by fire." icon_state = "ashenarrow" projectile_type = /obj/item/projectile/bullet/reusable/arrow/ashen /obj/item/ammo_casing/caseless/arrow/bone name = "bone arrow" - desc = "Arrow made of bone and sinew. The tip is sharp enough to pierce into a goliath plate." + desc = "An arrow made of bone and sinew. The tip is sharp enough to pierce through a goliath plate." icon_state = "bonearrow" projectile_type = /obj/item/projectile/bullet/reusable/arrow/bone /obj/item/ammo_casing/caseless/arrow/bronze name = "bronze arrow" - desc = "Bronze tipped arrow." + desc = "An arrow made of wood, tipped with bronze. The tip is dense enough to provide some armor penetration." icon_state = "bronzearrow" projectile_type = /obj/item/projectile/bullet/reusable/arrow/bronze From 99475488d3edb264b918170781ec92b512dab42a Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Feb 2020 15:45:06 -0600 Subject: [PATCH 079/175] mistake --- .../mob/living/simple_animal/hostile/mining_mobs/hivelord.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm index 11de9df70b..1837f5b216 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm @@ -135,6 +135,11 @@ crusher_drop_mod = 20 dwarf_mob = TRUE +/mob/living/simple_animal/hostile/asteroid/hivelord/legion/beegion + name = "beegion" + desc = "You can still see what was once a human under the shifting mass of - oh my God, those are bees." + brood_type = /mob/living/simple_animal/hostile/poison/bees/toxin + /mob/living/simple_animal/hostile/asteroid/hivelord/legion/death(gibbed) visible_message("The skulls on [src] wail in anger as they flee from their dying host!") var/turf/T = get_turf(src) From 214cd92fef198ff4b40f51f577564fc3be006f0d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 22 Feb 2020 15:49:11 -0600 Subject: [PATCH 080/175] Automatic changelog generation for PR #11179 [ci skip] --- html/changelogs/AutoChangeLog-pr-11179.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11179.yml diff --git a/html/changelogs/AutoChangeLog-pr-11179.yml b/html/changelogs/AutoChangeLog-pr-11179.yml new file mode 100644 index 0000000000..6c538d5476 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11179.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - bugfix: "AIs now understand the old ways of drunken dwarfs" From b89a2314a2cc552e6a4261b58674464b2431c456 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Feb 2020 16:17:51 -0600 Subject: [PATCH 081/175] mmm that's compiling i don't like that --- code/controllers/configuration/entries/game_options.dm | 4 ---- code/controllers/subsystem/autotransfer.dm | 4 +++- code/controllers/subsystem/shuttle.dm | 4 ++-- code/datums/elements/ghost_role_eligibility.dm | 3 ++- code/game/gamemodes/dynamic/dynamic.dm | 4 ++-- code/game/machinery/computer/communications.dm | 2 +- code/modules/mob/dead/observer/observer.dm | 6 ++++-- 7 files changed, 14 insertions(+), 13 deletions(-) diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm index a3bc47ac91..52d7c02177 100644 --- a/code/controllers/configuration/entries/game_options.dm +++ b/code/controllers/configuration/entries/game_options.dm @@ -403,10 +403,6 @@ lowercase = FALSE splitter = "," -/datum/config_entry/number/auto_transfer_delay - config_entry_value = 72000 - min_val = 0 - /datum/config_entry/flag/pai_custom_holoforms /datum/config_entry/number/marauder_delay_non_reebe diff --git a/code/controllers/subsystem/autotransfer.dm b/code/controllers/subsystem/autotransfer.dm index b80211c354..4f8fc3631d 100644 --- a/code/controllers/subsystem/autotransfer.dm +++ b/code/controllers/subsystem/autotransfer.dm @@ -5,12 +5,14 @@ SUBSYSTEM_DEF(autotransfer) var/starttime var/targettime + var/voteinterval var/maxvotes var/curvotes /datum/controller/subsystem/autotransfer/Initialize(timeofday) starttime = world.time targettime = starttime + CONFIG_GET(number/vote_autotransfer_initial) + voteinterval = CONFIG_GET(number/vote_autotransfer_interval) maxvotes = CONFIG_GET(number/vote_autotransfer_maximum) curvotes = 0 return ..() @@ -19,7 +21,7 @@ SUBSYSTEM_DEF(autotransfer) if(maxvotes > curvotes) if(world.time > targettime) SSvote.initiate_vote("transfer",null) //TODO figure out how to not use null as the user - targettime = targettime + CONFIG_GET(number/vote_autotransfer_interval) + targettime = targettime + voteinterval curvotes += 1 else SSshuttle.autoEnd() diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 5929e7e113..ff64732317 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -55,7 +55,7 @@ SUBSYSTEM_DEF(shuttle) var/lockdown = FALSE //disallow transit after nuke goes off - var/extendvote_passed = FALSE + var/endvote_passed = FALSE var/realtimeofstart = 0 @@ -650,4 +650,4 @@ SUBSYSTEM_DEF(shuttle) log_game("Round end vote passed. Shuttle has been auto-called.") message_admins("Round end vote passed. Shuttle has been auto-called.") emergencyNoRecall = TRUE - extendvote_passed = TRUE + endvote_passed = TRUE diff --git a/code/datums/elements/ghost_role_eligibility.dm b/code/datums/elements/ghost_role_eligibility.dm index e57aaddd5a..ab87d7f1d2 100644 --- a/code/datums/elements/ghost_role_eligibility.dm +++ b/code/datums/elements/ghost_role_eligibility.dm @@ -17,7 +17,8 @@ penalty += roundstart_quit_limit - world.time if(penalty) penalty += world.realtime - if(penalty - SSshuttle.realtimeofstart > SSshuttle.auto_call + SSshuttle.emergencyCallTime + SSshuttle.emergencyDockTime + SSshuttle.emergencyEscapeTime) + var/maximumRoundEnd = SSautotransfer.starttime + SSautotransfer.voteinterval * SSautotransfer.maxvotes + if(penalty - SSshuttle.realtimeofstart > maximumRoundEnd + SSshuttle.emergencyCallTime + SSshuttle.emergencyDockTime + SSshuttle.emergencyEscapeTime) penalty = CANT_REENTER_ROUND if(!(M.ckey in timeouts)) timeouts += M.ckey diff --git a/code/game/gamemodes/dynamic/dynamic.dm b/code/game/gamemodes/dynamic/dynamic.dm index 6ea357163f..4c3ef824b9 100644 --- a/code/game/gamemodes/dynamic/dynamic.dm +++ b/code/game/gamemodes/dynamic/dynamic.dm @@ -672,7 +672,7 @@ GLOBAL_VAR_INIT(dynamic_storyteller_type, /datum/dynamic_storyteller/classic) // Time to inject some threat into the round if(EMERGENCY_ESCAPED_OR_ENDGAMED) // Unless the shuttle is gone return - if((world.realtime - SSshuttle.realtimeofstart) > SSshuttle.auto_call) // no rules after shuttle is auto-called + if(SSshuttle.endvote_passed) // no rules after shuttle call is voted return message_admins("DYNAMIC: Checking for midround injection.") log_game("DYNAMIC: Checking for midround injection.") @@ -748,7 +748,7 @@ GLOBAL_VAR_INIT(dynamic_storyteller_type, /datum/dynamic_storyteller/classic) return if(EMERGENCY_ESCAPED_OR_ENDGAMED) // No more rules after the shuttle has left return - if((world.realtime - SSshuttle.realtimeofstart) > SSshuttle.auto_call) // no rules after shuttle is auto-called + if(SSshuttle.endvote_passed) // no rules after shuttle is auto-called return update_playercounts() diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 9d0053c9b2..5fe141d2cd 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -194,7 +194,7 @@ state = STATE_CANCELSHUTTLE if("cancelshuttle2") if(authenticated) - if((world.realtime - SSshuttle.realtimeofstart) > SSshuttle.auto_call) //Citadel Edit Removing auto_call caused recall. + if(SSshuttle.endvote_passed) //Citadel Edit - endvote passing = no recalls say("Warning: Emergency shuttle recalls have been blocked by Central Command due to ongoing crew transfer procedures.") else SSshuttle.cancelEvac(usr) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 325ea6e8ed..d2cf3608e6 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -289,7 +289,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/roundstart_quit_limit = CONFIG_GET(number/roundstart_suicide_time_limit) MINUTES if(world.time < roundstart_quit_limit) penalty += roundstart_quit_limit - world.time - if(penalty + world.realtime - SSshuttle.realtimeofstart > SSshuttle.auto_call + SSshuttle.emergencyCallTime + SSshuttle.emergencyDockTime + SSshuttle.emergencyEscapeTime) + var/maximumRoundEnd = SSautotransfer.starttime + SSautotransfer.voteinterval * SSautotransfer.maxvotes + if(penalty - SSshuttle.realtimeofstart > maximumRoundEnd + SSshuttle.emergencyCallTime + SSshuttle.emergencyDockTime + SSshuttle.emergencyEscapeTime) penalty = CANT_REENTER_ROUND if(SEND_SIGNAL(src, COMSIG_MOB_GHOSTIZE, (stat == DEAD) ? TRUE : FALSE, FALSE, (stat == DEAD)? penalty : 0, (stat == DEAD)? TRUE : FALSE) & COMPONENT_BLOCK_GHOSTING) @@ -323,7 +324,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/roundstart_quit_limit = CONFIG_GET(number/roundstart_suicide_time_limit) MINUTES if(world.time < roundstart_quit_limit) penalty += roundstart_quit_limit - world.time - if(penalty + world.realtime - SSshuttle.realtimeofstart > SSshuttle.auto_call + SSshuttle.emergencyCallTime + SSshuttle.emergencyDockTime + SSshuttle.emergencyEscapeTime) + var/maximumRoundEnd = SSautotransfer.starttime + SSautotransfer.voteinterval * SSautotransfer.maxvotes + if(penalty - SSshuttle.realtimeofstart > maximumRoundEnd + SSshuttle.emergencyCallTime + SSshuttle.emergencyDockTime + SSshuttle.emergencyEscapeTime) penalty = CANT_REENTER_ROUND var/response = alert(src, "Are you -sure- you want to ghost?\n(You are alive. If you ghost whilst alive you won't be able to re-enter this round [penalty ? "or play ghost roles [penalty == CANT_REENTER_ROUND ? "until the round is over" : "for the next [DisplayTimeText(penalty)]"]" : ""]! You can't change your mind so choose wisely!!)","Are you sure you want to ghost?","Ghost","Stay in body") From aeacb06dfcb3d9d404ea10523e74133cec35615e Mon Sep 17 00:00:00 2001 From: TrilbySpaceClone Date: Sat, 22 Feb 2020 18:21:47 -0500 Subject: [PATCH 082/175] charrrries --- icons/obj/chairs.dmi | Bin 35101 -> 35860 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/chairs.dmi b/icons/obj/chairs.dmi index afedc69ecad23e5894d9fc8aa76ceea3c8a8f3ab..1c09cf94dc382c3985970af0dc04022a1c917056 100644 GIT binary patch delta 12710 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 E0g_Ad4*&oF delta 11945 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 Date: Sat, 22 Feb 2020 19:02:43 -0500 Subject: [PATCH 083/175] Fish Category, Misc Moves --- code/__DEFINES/construction.dm | 2 +- code/datums/components/crafting/craft.dm | 2 +- .../food_and_drinks/food/snacks_egg.dm | 1 + ...ecipes_eastern_fish.dm => recipes_fish.dm} | 113 +++++------------- .../recipes/tablecraft/recipes_meat.dm | 2 + .../recipes/tablecraft/recipes_misc.dm | 45 ++++++- .../recipes/tablecraft/recipes_pastry.dm | 13 ++ tgstation.dme | 2 +- 8 files changed, 92 insertions(+), 88 deletions(-) rename code/modules/food_and_drinks/recipes/tablecraft/{recipes_eastern_fish.dm => recipes_fish.dm} (63%) diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index d022fd932d..9c2ea526fa 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -93,8 +93,8 @@ #define CAT_BURGER "Burgers" #define CAT_CAKE "Cakes" #define CAT_DONUT "Donuts" -#define CAT_EASTERN "Eastern & Fish" #define CAT_EGG "Egg-Based Food" +#define CAT_FISH "Fish" #define CAT_MEAT "Meats" #define CAT_MEXICAN "Mexican" #define CAT_MISCFOOD "Misc. Food" diff --git a/code/datums/components/crafting/craft.dm b/code/datums/components/crafting/craft.dm index 187c896938..c381f827c0 100644 --- a/code/datums/components/crafting/craft.dm +++ b/code/datums/components/crafting/craft.dm @@ -29,7 +29,7 @@ CAT_CAKE, CAT_DONUT, CAT_EGG, - CAT_EASTERN, + CAT_FISH, CAT_ICE, CAT_MEAT, CAT_MEXICAN, diff --git a/code/modules/food_and_drinks/food/snacks_egg.dm b/code/modules/food_and_drinks/food/snacks_egg.dm index c3d71093b5..0f2856c090 100644 --- a/code/modules/food_and_drinks/food/snacks_egg.dm +++ b/code/modules/food_and_drinks/food/snacks_egg.dm @@ -124,6 +124,7 @@ bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 2) list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 1) bitesize = 1 + w_class = WEIGHT_CLASS_NORMAL tastes = list("egg" = 1, "cheese" = 1) foodtype = MEAT | BREAKFAST diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_eastern_fish.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_fish.dm similarity index 63% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_eastern_fish.dm rename to code/modules/food_and_drinks/recipes/tablecraft/recipes_fish.dm index e69b1dfd36..ad1278978a 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_eastern_fish.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_fish.dm @@ -1,4 +1,5 @@ -/////////////Recategorizing this as -Eastern- foods/////////////// +// see code/module/crafting/table.dm + ///////////////////////Sushi Components/////////////////////////// /datum/crafting_recipe/food/sushi_rice @@ -8,7 +9,7 @@ /datum/reagent/consumable/rice = 10 ) result = /obj/item/reagent_containers/food/snacks/sushi_rice - subcategory = CAT_EASTERN + subcategory = CAT_FISH /datum/crafting_recipe/food/sea_weed name = "Sea Weed Sheet" @@ -18,17 +19,7 @@ /obj/item/reagent_containers/food/snacks/grown/kudzupod = 1, ) result = /obj/item/reagent_containers/food/snacks/sea_weed - subcategory = CAT_EASTERN - -/datum/crafting_recipe/food/tuna_can - name = "Can of Tuna" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 15, - /datum/reagent/consumable/cooking_oil = 5, - /obj/item/reagent_containers/food/snacks/carpmeat = 1, - ) - result = /obj/item/reagent_containers/food/snacks/tuna - subcategory = CAT_EASTERN + subcategory = CAT_FISH //////////////////////////Sushi///////////////////////////////// @@ -40,7 +31,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/sashimi - subcategory = CAT_EASTERN + subcategory = CAT_FISH /datum/crafting_recipe/food/riceball name = "Onigiri" @@ -50,7 +41,7 @@ /obj/item/reagent_containers/food/snacks/sushi_rice = 1 ) result = /obj/item/reagent_containers/food/snacks/riceball - subcategory = CAT_EASTERN + subcategory = CAT_FISH /datum/crafting_recipe/food/sushie_egg name = "Tobiko" @@ -60,7 +51,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 2, ) result = /obj/item/reagent_containers/food/snacks/tobiko - subcategory = CAT_EASTERN + subcategory = CAT_FISH /datum/crafting_recipe/food/sushie_basic name = "Funa Hosomaki" @@ -71,7 +62,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 3, ) result = /obj/item/reagent_containers/food/snacks/sushie_basic - subcategory = CAT_EASTERN + subcategory = CAT_FISH /datum/crafting_recipe/food/sushie_adv name = "Funa Nigiri" @@ -81,7 +72,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/sushie_adv - subcategory = CAT_EASTERN + subcategory = CAT_FISH /datum/crafting_recipe/food/sushie_pro name = "Well made Funa Nigiri" @@ -92,75 +83,19 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 1 ) result = /obj/item/reagent_containers/food/snacks/sushie_pro - subcategory = CAT_EASTERN - -//////////////////Eastern Not-Fish////////////////////// - -/datum/crafting_recipe/food/chawanmushi - name = "Chawanmushi" - reqs = list( - /datum/reagent/water = 5, - /datum/reagent/consumable/soysauce = 5, - /obj/item/reagent_containers/food/snacks/boiledegg = 2, - /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 - ) - result = /obj/item/reagent_containers/food/snacks/chawanmushi - subcategory = CAT_EASTERN - -/datum/crafting_recipe/food/khachapuri - name = "Khachapuri" - reqs = list( - /datum/reagent/consumable/eggyolk = 5, - /obj/item/reagent_containers/food/snacks/cheesewedge = 1, - /obj/item/reagent_containers/food/snacks/store/bread/plain = 1 - ) - result = /obj/item/reagent_containers/food/snacks/khachapuri - subcategory = CAT_EASTERN - -/datum/crafting_recipe/food/rawkhinkali - name = "Raw Khinkali" - reqs = list( - /obj/item/reagent_containers/food/snacks/doughslice = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 - ) - result = /obj/item/reagent_containers/food/snacks/rawkhinkali - subcategory = CAT_EASTERN - -/datum/crafting_recipe/food/meatbun - name = "Meat bun" - reqs = list( - /datum/reagent/consumable/soysauce = 5, - /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1, - /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 - ) - result = /obj/item/reagent_containers/food/snacks/meatbun - subcategory = CAT_EASTERN - -/datum/crafting_recipe/food/fortunecookie - time = 15 - name = "Fortune cookie" - reqs = list( - /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/paper = 1 - ) - parts = list( - /obj/item/paper = 1 - ) - result = /obj/item/reagent_containers/food/snacks/fortunecookie - subcategory = CAT_EASTERN + subcategory = CAT_FISH //////////////////////////////////////////////FISH/////////////////////////////////////////// -/datum/crafting_recipe/food/fishfingers - name = "Fish fingers" +/datum/crafting_recipe/food/tuna_can + name = "Can of Tuna" reqs = list( - /datum/reagent/consumable/flour = 5, - /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/carpmeat = 1 + /datum/reagent/consumable/sodiumchloride = 15, + /datum/reagent/consumable/cooking_oil = 5, + /obj/item/reagent_containers/food/snacks/carpmeat = 1, ) - result = /obj/item/reagent_containers/food/snacks/fishfingers - subcategory = CAT_EASTERN + result = /obj/item/reagent_containers/food/snacks/tuna + subcategory = CAT_FISH /datum/crafting_recipe/food/cubancarp name = "Cuban carp" @@ -170,7 +105,17 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/cubancarp - subcategory = CAT_EASTERN + subcategory = CAT_FISH + +/datum/crafting_recipe/food/fishfingers + name = "Fish fingers" + reqs = list( + /datum/reagent/consumable/flour = 5, + /obj/item/reagent_containers/food/snacks/bun = 1, + /obj/item/reagent_containers/food/snacks/carpmeat = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fishfingers + subcategory = CAT_FISH /datum/crafting_recipe/food/fishandchips name = "Fish and chips" @@ -179,4 +124,4 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/fishandchips - subcategory = CAT_EASTERN \ No newline at end of file + subcategory = CAT_FISH \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm index d2b04b7f99..efb773159d 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm @@ -1,3 +1,5 @@ +// see code/module/crafting/table.dm + ////////////////////////////////////////////////KEBABS//////////////////////////////////////////////// /datum/crafting_recipe/food/humankebab diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index d72363dcee..6a622d6719 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -1,7 +1,50 @@ // see code/module/crafting/table.dm -// MISC +//////////////////Eastern Foods////////////////////// + +/datum/crafting_recipe/food/chawanmushi + name = "Chawanmushi" + reqs = list( + /datum/reagent/water = 5, + /datum/reagent/consumable/soysauce = 5, + /obj/item/reagent_containers/food/snacks/boiledegg = 2, + /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle = 1 + ) + result = /obj/item/reagent_containers/food/snacks/chawanmushi + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/khachapuri + name = "Khachapuri" + reqs = list( + /datum/reagent/consumable/eggyolk = 5, + /obj/item/reagent_containers/food/snacks/cheesewedge = 1, + /obj/item/reagent_containers/food/snacks/store/bread/plain = 1 + ) + result = /obj/item/reagent_containers/food/snacks/khachapuri + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/rawkhinkali + name = "Raw Khinkali" + reqs = list( + /obj/item/reagent_containers/food/snacks/doughslice = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1 + ) + result = /obj/item/reagent_containers/food/snacks/rawkhinkali + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/meatbun + name = "Meat bun" + reqs = list( + /datum/reagent/consumable/soysauce = 5, + /obj/item/reagent_containers/food/snacks/bun = 1, + /obj/item/reagent_containers/food/snacks/faggot = 1, + /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 + ) + result = /obj/item/reagent_containers/food/snacks/meatbun + subcategory = CAT_MISCFOOD + +/////////////////////////////////MISC///////////////////////////////////// /datum/crafting_recipe/food/beans name = "Beans" diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 2458a0e085..8a393476a2 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -214,6 +214,19 @@ result = /obj/item/reagent_containers/food/snacks/cracker subcategory = CAT_PASTRY +/datum/crafting_recipe/food/fortunecookie + time = 15 + name = "Fortune cookie" + reqs = list( + /obj/item/reagent_containers/food/snacks/pastrybase = 1, + /obj/item/paper = 1 + ) + parts = list( + /obj/item/paper = 1 + ) + result = /obj/item/reagent_containers/food/snacks/fortunecookie + subcategory = CAT_PASTRY + /datum/crafting_recipe/food/honeybun name = "Honey bun" reqs = list( diff --git a/tgstation.dme b/tgstation.dme index 850df585d9..b235b08375 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1835,8 +1835,8 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_burger.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_cake.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_donut.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_eastern_fish.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_egg.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_fish.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_frozen.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_meat.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_mexican.dm" From 342f1cd4c1e3505ddb311efc11cf4355718060d5 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sat, 22 Feb 2020 23:17:30 -0500 Subject: [PATCH 084/175] Update snacks_meat.dm --- code/modules/food_and_drinks/food/snacks_meat.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/snacks_meat.dm b/code/modules/food_and_drinks/food/snacks_meat.dm index 5103418e6b..9bf95f65db 100644 --- a/code/modules/food_and_drinks/food/snacks_meat.dm +++ b/code/modules/food_and_drinks/food/snacks_meat.dm @@ -325,7 +325,7 @@ /obj/item/reagent_containers/food/snacks/corndog name = "corndog plate" desc = "A plate with two small corn dogs, with two dimples of ketchup and mustard to dip them in." - icon_state = "dorndog" + icon_state = "corndog" trash = /obj/item/trash/plate/alt tastes = list("hotdog" = 2, "mustard and ketchup" = 1, "fryed bread" = 1) bonus_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/mustard = 5, /datum/reagent/consumable/ketchup = 5) @@ -359,4 +359,4 @@ list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/bbqsauce = 5) bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1) tastes = list("meat" = 3, "smokey sauce" = 1) - foodtype = MEAT \ No newline at end of file + foodtype = MEAT From 2dea3cf15c4d36b4560649efee8e72adc0e2e77e Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sun, 23 Feb 2020 00:53:42 -0500 Subject: [PATCH 085/175] Gives ash sandstone --- code/modules/mining/ores_coins.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mining/ores_coins.dm b/code/modules/mining/ores_coins.dm index 8240724d66..42a8fd2ca6 100644 --- a/code/modules/mining/ores_coins.dm +++ b/code/modules/mining/ores_coins.dm @@ -131,6 +131,10 @@ GLOBAL_LIST_INIT(sand_recipes, list(\ icon_state = "volcanic_sand" singular_name = "volcanic ash pile" +/obj/item/stack/ore/glass/basalt/Initialize(mapload, new_amount, merge = TRUE) + recipes = GLOB.sand_recipes + . = ..() + /obj/item/stack/ore/plasma name = "plasma ore" icon_state = "Plasma ore" From 845e719ade2d999e4e16a38998f6145485657463 Mon Sep 17 00:00:00 2001 From: TrilbySpaceClone Date: Sun, 23 Feb 2020 01:52:36 -0500 Subject: [PATCH 086/175] But what if we did it right? --- code/modules/mining/ores_coins.dm | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/code/modules/mining/ores_coins.dm b/code/modules/mining/ores_coins.dm index 42a8fd2ca6..7fc4728329 100644 --- a/code/modules/mining/ores_coins.dm +++ b/code/modules/mining/ores_coins.dm @@ -94,12 +94,12 @@ w_class = WEIGHT_CLASS_TINY GLOBAL_LIST_INIT(sand_recipes, list(\ - new /datum/stack_recipe("sandstone", /obj/item/stack/sheet/mineral/sandstone, 1, 1, 50)\ - )) + new/datum/stack_recipe("sandstone", /obj/item/stack/sheet/mineral/sandstone, 1, 1, 50),\ + )) -/obj/item/stack/ore/glass/Initialize(mapload, new_amount, merge = TRUE) - recipes = GLOB.sand_recipes +/obj/item/stack/ore/glass/get_main_recipes() . = ..() + . += GLOB.sand_recipes /obj/item/stack/ore/glass/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum) if(..() || !ishuman(hit_atom)) @@ -131,10 +131,6 @@ GLOBAL_LIST_INIT(sand_recipes, list(\ icon_state = "volcanic_sand" singular_name = "volcanic ash pile" -/obj/item/stack/ore/glass/basalt/Initialize(mapload, new_amount, merge = TRUE) - recipes = GLOB.sand_recipes - . = ..() - /obj/item/stack/ore/plasma name = "plasma ore" icon_state = "Plasma ore" @@ -148,7 +144,6 @@ GLOBAL_LIST_INIT(sand_recipes, list(\ to_chat(user, "You can't hit a high enough temperature to smelt [src] properly!") return TRUE - /obj/item/stack/ore/silver name = "silver ore" icon_state = "Silver ore" From f15540c473f7dd0002fa7d7e527f29e7f23aac00 Mon Sep 17 00:00:00 2001 From: Persi Date: Sun, 23 Feb 2020 01:56:31 -0500 Subject: [PATCH 087/175] Should fix the merge conflict from the pool having its own area --- icons/turf/areas.dmi | Bin 39472 -> 39465 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index 9e37bb1a000814b881021782f7522b50ce9714e3..e2508cd64efb61682e5b29459f036868d1c3cbba 100644 GIT binary patch delta 10609 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 a$m?|U>#LDL-X)R^nYQLbjWRX6u>S=iC5$@& delta 10608 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 Nr>feI;L29v{|nE|qHq8J From 1dbf2023e78937295e6ada8827b9474a5409eac3 Mon Sep 17 00:00:00 2001 From: Persi Date: Sun, 23 Feb 2020 02:19:46 -0500 Subject: [PATCH 088/175] Maybe I should remember to rename the areas after pasting them in --- icons/turf/areas.dmi | Bin 39465 -> 39481 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index e2508cd64efb61682e5b29459f036868d1c3cbba..a35837eedd8be6640df6ddaa0444c4aece7a9d57 100644 GIT binary patch delta 1762 zcmV<81|9jSv;w)b0+1wszIs$xbVOxyV{&P5bZKvH004NLm7Bqi+(r(D&ofWaNUrTg zy2nnkhdE^9c-H}(1W14!1**iBYNu3`SycD*+vgzJBhO}*f8A{06T4JD$zqY3uXq3Y z>EG{v*}eVn{`SmTqU7EE?)5*uxxKl>&W7Fn?(TSdGjQw&TmDmjjEr~pyRW{wz3HNs z-Tm%xdvj76dHMHepw-y*>|!Ic#oUADnt@Wf(ACA~{E+36U5;}fv%kvUC6NZnrjp+M zR)zoYdmZjupD1%G?|i!}h*|_zx`K5(fUH!-#I6%Jpdbs@tiOQbqvU9!h`$*po9)vA@=T1(VY$26!Kei4qWPD~?9dl~a<7i%}^}LR9OO*^kM>Vb*B=@(PD$ z(pUtt*$h(P-)_p>`aU9$i69Ks$K=tt7{ZOQ1i+VgbfJ!eWTP==vIy*DP`)%DXHsMJ zcXZ@VxiD!M05%LQ;FqIlKl{6h?)u6#7bG#1VKz%Zs69r1U&mskKGi)mU?fhnPQcn) z^0Qi?6B}zJpOk!J*#TA<$$L zf#8!_O-1~$rr69=66z50Bv;_1qu7Lj#uh+3HVzigzE6aK!^0#o+o6JOXnw50je$Vh z@SOWt!;kEL@AC#%_8oSEmr%8sGEY<0%OXd~TujE&OcFD&lUo|niqC$gd59JUpn@2= zgN_mITDtlPVd4CIFlih~ujsL}6w_$YT~~A0T{?W*L2@yj15_Z;3>Q2+vi6(~604H7^=tO~%ZD9jxFCYsQP@hq#owUF} zeY=oY>9|VF{wcZc0d~`0;88LaW2DY)DR+{&Yx<@Gj=^U<5KRN6^dm&QgDC$P8Yrb7 zAj&^~qy|bzcW$7Bbmaz0NH=bvgmk#L1e%ZrjRB6Z7;BQu8HkC2Qfdn88EGheoRJ&p z$C=c?7S+d@)X?KSkoM9b#oI!5oZ=aYodv&;@*s2Z7xG`q(FC~?`B$M>CMig=jTz}c zELbzCbYMZYJ^>vj3!35?SqeW+NffyH%o#?1JIXz9J_Z8rmczAE|1e6iRRVk{k>7za zc^spE+gW=Iy#lSv&nVowK(_e__08t_0q-%Nqe_zA-_9RD{OU4)k|HPFI+yS-J&D=B z8JEO7HGx{7AM?fR2JnuU*iWx-e+J}}3)BYsV_-5x`js>`ki{}4G$W%jkl%%IHGZ*DeJePHmcjrhc1deg)fmrQE&p z&(Kfk--E~7n~oD*clWzD`!`Qd#eDXQ#x~6?snYU`OL_hDz;S=vANQLtIXY6`jXKhY z!?)jH-0^!L1?o!!-tYfst^4Etus`gd?T-7VchBFnO*3bHp@w^DPqV1`lgliBY6Fx% zvZxJE_9!v~zg%Pnf4RsE{xW0^%Yd91X^oYMfc#%33fyFVxxI5Uh?PlfcfWhHKYX`; z{&0|Nj7*xgG*EYMXg~RFX+H^W={HsMw^j6aRkR=CTl$|>^ufmumadD(DlLHwyQQnN1oG>auF?|7u3NfFOCYy@Zd01CS&04i`ZX*?6q=nA92R!4!&4lfU0t}{={(nM$z5D5xx4X9=-rxQOtH;bJ2xg{dv)cwv Ell6>sR{#J2 delta 1746 zcmV;@1}*uyv;wKL0+1wsu6k5hbVOxyV{&P5bZKvH004NLwVOeY+%^)0&ojTGkzCtB zy2nnkhdCs1yz2#=ERY3q6soCekr|357fapK|9%f@d*n$5^?2Bu4ScGm_==CkqUP(( zPrv;0{jZz1AKu@dSZk89x!=70=G)twbLuT_?l*V)+ndN~h_?KHry3b=?l)h3b$in% zt(*JJ?)K)WH1hKA&%i-bKd_69%$CXkhU+5be5Q+w&*h=WxwsscAr*g=ze^?!QcNYk z`%e@8Fw!g7HUr2=RZQ$MaR&;rVBPf>P<)hiV_h&g9#eqlp_(WGtL=)TtLVZx%h|=K)-EHe4a)4V$;x5YWd86f zhi=kT1&Y~4sqk-ibw2nxB9ECM4AsZv(YPAIjj0A8mw0rco`V#lF%_}|%wX06QI}E<_p+0NS&0uypcsB18@klcZw12DYR5u?05< z7TSvEGNcxNeq?{1SGcmDuq(WVroq&Cnwnk~*-GYWGS+UARDhXW(~wqt@}1@(S%^Rd zF>()WBitY8;v2%k`F=2I8c8qcwzCw|XwltPbGIEj{MbQCHJt-gAkYjKJUp@vTmn34 zS;7NgKgVQ+tG~t~Q{Pa_P%0L#|aAvVgz#F+foY#ye)yh zyOfL_2y=g+3knnJ&@B$;QcqNey>xyO$rYQhPygbm00wvqR2GT)57Al}Vqfk3( zfr0vVA+gf&Dlz-JcE1TwDW9NQ1_JL|B4#S>^()iAXtjmGy))ls?YL ziS*-4YG8}%<4kJk_8v$F>5$@WA$!j0gshzfKa+Blx%vb7lS(o{jzs=ZDAh?SVz#Lu z9f$?%CY2s6$gWR7o5_OabV7#0k5d)}jy`jLfzh7I0PK%}fU{-1^y+U$IUSUM9LnT( zU`!sz#L{atAJKDFBUs zjx3PzRn`;W44>{qMxe)HaV|aLHe4(Ka})I9`^`j_xERo~yp%ris~QuKv$)Bw&%f*zC_VJa^0$jQ*Xf*+H|I;`Kxq4aHGjvUJoeLR# z{XV}NRMY)Svh*At{Q3mB=c6-S{N^ivosni4osm`%{s+JU^`#5mAO14d?S8x4?zYcn$9>bg=Wlw*GZ%iLhI?sFi>Ud3HBlM-)FwS+tl2($+>IO zbJr&5u1(Qho20uoO?Pdg?%Gs;-M6W_Z(O5os_xrV-M6W_Z&P*Ors}>;RbV&%0&i3G z&R3Prbb)<$1!J`)?7A!1S91mXTCQMU$rbGDxPpBZSFo?)T9h^kn=}N>c1<^_2w3f! zZqgAj+BMyzBw({^x=BmGWY=`tdTi1XaM(57q$S|5Yr08Gz+KmLla_#gx2`SC*YXK? zy#nr@jxx{AO?dCjB_Fv6c0taM9A-;Wu=e7BwR{72;009RZqjrjpwSgZfuoKBhmA6! zVWUh9VJjZC!eO;XqiPQa9h6Sp0O-nPNbp^QDV3V6v-tpj{0@HVXrom0uMt)k?O^gI z?T}B$DRqHHR>GDJRb!Pz1YG{i)08ih^j#L}q2BwaCmLc$$x!T=@`2TA6hpt7fWBbX oi&W^sXA+=e{{I8M-u&|G+s)e#?{EJHU}3u?w+E^Mv+D* Date: Sun, 23 Feb 2020 02:24:27 -0500 Subject: [PATCH 089/175] idk what else to do at this point... --- icons/turf/areas.dmi | Bin 39481 -> 39679 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index a35837eedd8be6640df6ddaa0444c4aece7a9d57..7f9f0039bbff3efcca7db8a995f142d6f64bed91 100644 GIT binary patch delta 10769 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

    P{sVqpnqBeP*O4wrM;#!IE^$ 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 delta 10477 zcma)hcUV))*Df6?g3?i{3W78Nr56EFY0`TMU4Z~XK%|6C6+!6`I*1w+DWQfEARMJh zXd*onrAkLikc7Yuo^yWp`|k7I=iWc|Gc)g6v(}nDv)`FD`?Q{-sg5G$8hKl)kkI{y zHF1ir3(v;M^Qj(0@KAs3fO)<*%dj>(+{dm6OkN#yhXFI-@2n^@^)Jq;xrm@s{Oa5` zFxg7nIl=YWyjh$fZXKw%HKnFhkqr*q3D1Km0D3#_*N!l#Y zBKCAAly}RvNCa|YI}9cE!iLJCIVw;&qTH;rqmotrwE)9dIXYtg?c(D%FVNiA3-2b5 zYKO|)3zK2IRgE5_PX8uK^Nc?sp5=nKSkk?(nWkwkUmA-VXqv5OP9}f(|V3{{_gEWOk@|w9c4Ktj=?s=n8?qcuSsKzqr4x7 zm;aR*c?Y|bPq6x&ys^DUV~OK^8l7cSpDkl(I*Pe+|BIb|*RVc|Y*o7LrQw9Z@RHyc z95k<^xSFDqE^gU0;w_)8a1nh6Xsa;m7* z;PNS3Jaj%$ri4HID#NMXMN?Aw23DLc@kCAtourX^7)@t#ihoHLdGcdW^I znih#jG%DlO`E!u*VfI+M{vigskR6Jv)_y{%lwR7bwBNYMt~>Dkyc-Fmc{@>hNC_~o z8xw0<~ztEx`Y1ZBl2zOqPMzf!0g-rzxwf-43Ku^`ixT6 zj+AQrB$_*`L*;g)&1?R>&JCKKr0fYpgfBp|n9eXlgLiS1(Z*-ql1u57@k)L-T_|hI zc<1d^x{TkXvGp((xnH?DxA)aI7}T!J8C%r0}din}@q01XzfT2aBxg-k;VMthFBY_hgf58jwp4jed&M31r7 zl&|C4dnk?DGr%>S?jL_43{w>O?SHPxgI1$%VSYx{_5RcxAD5)&edwJVSrVS-9!`x7 zg-^Hc4h|XqoQv+p<|VP(2OXm13G#-9ong3_U2^?^cpNtOCW(Pk2%BxrE1&Or82c=7X455w9IN9h=G zPs$ASnh)oVa3V64XggOLps9!PM8=f~6Oqs5k(e1DaSRfspLPvzYK6$Y$kYJ`p+jrc z!y3eZlP4+QSNgfgTSh^?kJXR7J=E!ZR^`q28_f5E%QynV}DK}+TNJO`>JF_`@YW^JHI|Io)?l04-an8y0 zVU+UU$!^Ka)(cJ8jO5K8|T{WWQ&e%_x)HlvqI?-%uum|A%$7 z=n_jsbyKW*IIVhMoiROr{9K-f^3N9I%ZuOq5)59aW>yUqJD0OW{uop-Hds~C8NXJ{ zwAKoQy!nI^psP{s7^$)0?ifM{zn02AxIumCw?0Kc-yoZaEvqY!i)c^F6DS2^N#+Tl z3A7Scvl>th{Ihc>)Med$BIn#o9@TEp6!`*qMw2ybN!xqF5;Vh!35gvVkFgqB%pFGW zZSSW=Dhxj?iIO_MTTX$}-akL}dZ$@~GD`l6hoHF{?ItU)@aofROb#&-6Dw&$(a*Cw zk~P@wUY%fKJ67OsnGHO&4+8RuemJ$j^~31-krTW3vrzK`ME$sf?eI3TS&bopX8)E zM_wFe-!oRlt_Bd7W6oL~r4Md&J$**tWJi{M)S|b=C3h|VkUoUa(T&JA#A7Rn+S%}a*j3-(y5XMndrDoGIZ+OyW;<{d)0=m3^ zSI)}rNxMhugQYGe%M&hL06a-2M{8B^(J#;$GL-%QEU*86>it)H!17RC_~|JAWHVzb zTm`>HUo%@Gw#WjuTtyr8rkpU;Qx)hQ8f7?UHs7;*@$DNUr!l#OR&!h>mDU3Kw9?m0 zy<5vR%KmxWM=I<$ByRNMCK_nm^6hh5UhVxPYnogo$Ne{6ll&D=U_{MEjFjrSi#QuoBD{}ysB_b9SOiyg#B1a|WDk?`k={^6aDdfHA7EAC18An8BY z*fu&%QT}CcyC*#Yo{GXs&xJ4hbnD&O0+PDz{DV}MQ&8Ays@t(yiI+a=4*-uYE>McWR2K? zmNumB99tYy)TP!gR8uJ`^GQ*b9<}MF=5C9{j!bL9AM|gUCrpGn!sGjC0gFqvK8TSp zkm!Ve=+efsSDi4d*rRS2@rpSBxs4s!cBHZrv@6sbiI>67o?M2FKfa z34VJx@_Jdy=dy&Vqi$w@NKupozmIugZh=4)j__$vE~_{e=r$v98oK4X>`0$ZykNw$ctmPhgpI` zB|qQX`ltWcLKX0{rUgF*;qE>-DaP!sc@4TXD2D!xtpfOe&12{OaS6uvPyTK5OBL_o zKL!_`;Qo%nf2u$=z}f-2DL735=E__{p_mP%-0L&lfXPQ!7H;N;x`+n;GH?^aoCwXn zz}BCtn|@Hu3jB@{A1Ty(jL+#W^V>X?p{rjRrtQ!tNq{lnRB{Kex!JTIIhbM;Dv266 zJ!=INoMKc)3NcDg>^w+nL&-m<`6rzSk%L8dLglo+^DB%L>Y(XbPAN8C8{s5sisfu6a<_NKA$-GqOd6|aS&_(t8w+1cF$eVRrvfsy>oN@TIQ74v^}N1gm|Fv*BL z^Px~~KEB}D@P4e`p@@86n`kG$8o1#6Qq3!Pk%FaMAA9FU&p);&eC)x5jt$rxNnJQ!d zS>|qp&N7Fc;PT0*^Is>9H=@KkrlZ8}lGY!oIII4j4;a0RCb>-cD0nGqhrjx1!2pXE#NHG`doR+xKY; z4PW%X2>*N(GvRh0ScT~}a=$z|@#aaM$#7xn8h=w}_Gy$Ypf}#)X9g>vcZa^(MHAQ> zKmG-sJ;C25crSdh@$ZW~vI#ISX!A_lCf^(F?~taG;H-$ra;N)LW`-n~)p3?*UifxO zYqOmI*4Fz4H){ePrra0%5$Fz(e=0Lt{#V1db4>Y~i%v4REF{crnUDZC3rA=@YURy^ z9{I!}S4FxGfMyS+gz#_t^|WBRI{o|A>-gnWk?*gXOqdL6TYd6!ohRfB48Hm{zr{r? zr7V-1uJtXL`>h(ggudl{YgrDbb*1C0f@LVJOUI2l42{+8M@aM&0?RSUmu#(cRj~{^ z5x3usG$kvFZ)_@X??#YVwG{fNAd%};W-C1#Cg3!c_LYj`*<{_Prbw@hy-K1+TCISE zM$cSY@OVRi^sr2Hm5J`AocG=k*zof8i{O0Pvg+V^590QmLe{z`m_TbKKM-AV34Ln2 zQrryn--VaRlMP)^NoS0_lP(oW3kZv}H*W>}%c6WpLYyR~456B3@E?+Wz8Uhb_|o%# z2^GEmFZtPzZ~x22#DAH$hPUBgJEV=c@;~JH{MW|cBKz1C7tM8v47vt>4qCxtk)?~oRp(Uv+ z$&vKV_GQn(66P0Qj6#L&zY}>qX~~q+sjSW@D0x9QaK^*fm}A#HXA>3vcI-2fL?lEY zR}R~-@IlVra$iqyv0nyD=qGVZ;6Hlrp$Lo5MrMDrQWc*Wdi`ZW%^yWwFL=Z$MFVs$Va29@EfQuXV1{7u{N7};-N3t!Q1AP zAb%oh&rUyP=mwp#(Er%AefqGTc-;D*)ii8$wnEKl$Z1H0QBJ5o&H7A|Kc}n2zR&$8 z27ezgsrE@@wzk!J#g3kywz2Z<*!>7m zbITVwd^d?LCFf*gVc`yIzl*&^CsZ8aN&LB*q*3=%TA0V=@JSI{($0OGm5kxK!pk-W(QmxIWeznb*zZV#)WwNAPxC#C+rn@SuBTb1?-AJvZcWfcq$(vcYeKcW^Wrk z^|%@yYi0fmK9Vz$Chf>xMJLt4bw?##I@Ul6w~4LTCjb68_+Zqs$iw5b69oPJUSbn{ zuqKr&{02Yv!NJD^_?>~b*CUV(F`Y5RRiNqp!Fkd#K6`7=v#coDuq?4+b}ak_4vGXr zFd@N))rYlI1T|FK5yYFn89LeKN;r3uEFzW_ubHj&q`pRd2{U-;_Lx;i@<-iWLiORJ zvb-yoq{@gxb6z?)>nN%S?VWOy_3RMa&^4a8uIVTen!H-C8EkV(+=(D>pKk(+N4Bit zWAYhOt4h{|GTkac4Paey0#5?*mq-0q2kJegtX2ygWVz2iO4*gLyIuV!fOETRa6t>B6%9y)jezIMS543Atzc50Lb$!GAgciO=(rzlAg4K z_sQzvS|BJ95|is4U%kKUe9kl_lf&6WrC+qf#1EP>j^8cw01_nTB>SdAZE}g(M|x7H zytzb{LnDkD1u4u47)$+Q8Eu#~Cl>v#K|d4)*6drB&P%`$;AZ(d!+RZ5mTP^K?jfB4 zt@|0k7qw*ttco7%Q?enNvnW#LKbV0n(PtZLX+b9gxl<@?c7^8(pgU360WbZ ze;YJ#64Hj1e;f1;Bzw|AI&nxU-gfSgWF0PZ+j|oGfSZ!6oBAve{a3o$tVp5P<0^xY{1yWcX~-xjhULo9*9~ud@4YUs_%g zJA9JS}L)3l*vM z6uDRi4w?kkM?vL%HH^7M%5mcj_YQXR_u{zJ;NkC!y7Q$i@nNWx*6Ah_!gv@!lmMZ; z7!jxb=x~;53LdU9PKRg6=a!f(t5J>sUsn54l)%A)mCR(^5PASLSXOZ~-I5D^KayEj zfz{j;#l4@6o@^Ld2YvD?3gLGLIh;DRgp-z;BTMnMGKg!N{8#6`rz1up>J!C}K4psFeFs^wn+ojXoIre;Zvqj90OAn^<3KP-or009ym25bA6vQEaz7`=e3@Rh zh|tvs-PY3#mwxwZZ!{-ndGH|OUCJ(A3gcy&FbtjK=+moL9CSy%CGyIpA zrM493JFhKEK`m_!Jljs-txus+Ehld1aMC14(Yc}IF_q11cJY9vDQh)s;03^4Edl8W z_sfQ4gVdH=gxX$#QG;NR8gl7!7Evph2x)nWg_cZP<3}^LU!ALvrXP?Q)V9Yr?XLk-aqRGy3 z(hvIbYS6_mOdzweC-09M4}t(-YWSpp|5#gZZ%u;v*wmD;kVu<5bviY8dNd2e#r03@ z^E=imdFRr&kW!!F;ghuj{zgMlxI@S)Age11=Y#Ioe)K}=*W-AR0rYzghVuNj zq6w!E(!lxv*j|D0}Tr-Id7Zi@LYC- zbT$LOs>b~qr6X__N_C!?C@L!Y!ImJzCkN?JjzkXIh2K3VO`-#m7fFn*z=gCVY~no8 znQpaPDMQja3ku=2>&?t-K%DQZEtiBFwgt(`QlM0v`FJ4VetX+m^H%QUY(;sxc~ zDz{4)^c(Mv9;}Za296^@>Oq-AdniYI|2KH-gb z#Di=Su4$KIJ-w?eYE2$oRT1(vEGWy?TYW+HMhM#Daq2lal)Y*t9P~ zE$D~k@w%_-?bU;0+!_R13Kc2}UDo2<2*>9jIEg{W)3W?iYl{6V!s@{8KrG?ecMP*( zb8?Y-@FV4V1dyB#3SVIzpWC06Dm>m*E=uukKEdbB60|4h%*O&l!ZwKcPuH48KNQlB z8gQ>HrO%u{U|y(QDO|5HS<}p`K%ci)hi_keY43Sc*W-(Bxav`zz9atd zZvMee$JVjRmEDlyx);)fi8XQDAvDWbJ+t6a;qW{-2{;j!LyW>%txRLmaZx%_Io#Km z*J_R4s5mZs^L)!Mr{P*ArQ=N+v8Srqo2Ls`J>SPpOt+kjnO@$zC@VR-{J!W2e~;nH zUa(Hdz)^b^|7>=0>0TBG=+A&W|8i9;QgRq;x?8|3@#dj&=Kfy=uS8+ac-&pN02i4!EDi?I!D>=o?SD2M7C&+Yb!1y z7TnLe)3?kk=C;6N^WZkl zVHMtmx$#1pf#^P3 z&Z5xm@@txJ?yFgEN={Et_XVNDiO}Nkn&dJSk2WhrCITpaR_!%jsS4~Z_g~*1Er+NE z)qA-XiI7{kl={Wv;ElVg^07G__R{m121btr@mfhF@amkbcA7!Jmk?8M)AC+D0VZgW z>NeJilM?&{lsMDZbCJ7C3VKRqiz4?SwGL`hM@q2fm=CepNz7hQb}D`fBtd!B4JxFpTbylOic zAN_IS$@n(@wQqP%oR}l1Rc>2N4#NT5@*O+FcL&f^1W@qqTTgm5!4gbKmH$Ceb4zJz zsc@fCt({V9jDbq5ibD;LP>U}8M~Xe2!OZ^jrQO^dP5lPc2HQ*WZw{pv)gZ`(eDt=K z-V3=O?5N`pBex7QUmYZDg8Um?KNRVOb#BCD^qd`tAQBo=&S(>ufVVQhwIuUSf~JqX zN-1 zchUW_*!t7Flk21%KraggRED1NxYf3;Hy^I!MwQi{%pJB7WZ@aMXP%|(t!(Oo+g)d{ zbGQ#d+`IL)T>RONpuC2V0y~G&2K1)!df2Cvb(<-WI_?{-xmH-5ANJ|(X4n;3Dl5Y0 zMm_59*LiF^oTe`%u72&cw^6yPpKQ?|5t7Z!eOHPaCfW?Xq7QUMHFZsaMcp_b))N9eHew<~vc0gnrgw7t^w zQmiqY8Fv$e@)~+cKTd5JtLODtb&Y?p^6MHT|D|hi(eE72jWL_MJ2PE{{f2)#?bEC6 zWR9sFi};%0p$wo#N@J=@;^LHwl{BIy#npGL&dfZfQZyIN&h&bC&(h08{U zew_4Sa0>D@e)>D!%w!-|yukAf@@HBTx}@;v10i>_(ogQPyLG~Q>kcyy@QS8q-)@YG z6Ot0?(gSdpQKz;{;U}iF7NC2%j|6o~sHU)Iku0bUQ2*@iaO^i8!y%>#l@NsTBAvLo zL+c)8?{m?QuFD~|?x8W`eG@P)tt;Zj?T!euZpr*~*b1+6>uzwv1jQ@cCY-ZmLKqcF zjW=e8Iaa>H$&AKG9mIGQUimb@W-fV=BVOX`$D`?`CI3+rUR)x$jN>|-j(14)HjP(h z4boRR%yw)tt-M#xwme($VNy{pZC@tJtFo5&ulDQj=tDng-e)+%H!jl)Jt}CSDs43_ z0kV3R$ZMAtb^E`$O${x;?N=3Lx6P9hYj_oyO%7ANE8o7f>#f5v` z<|<=>olG{VgS&Pd#!C?G3QvEodktj1lo%xCO$PeE7InMUl*4-hRZ=S?8Rj&w?w6a; z`9Iwnx%!sw^0zJZWph<2Vv^PH*0+zl0R~fthkI;%9|P2cc-mU&67l7J1t_E36v$P45ct%Y)pd<%8VZ?D~X9NfL-EFmjgdQSm<&b-{|K0;&u;o`AT1W66rd#<$*sux2iMP0ElN# zx8BVXXw!@_G0^XnYdghsM?cbdE;DuYllwf`e9IztnkiP_{rsnf;CAP(-)s7skSqn| z;lL52__uNX3$2=Qki3y3vAkSW^fgfm$$$-`cqE&z^%^<$Wimg*g>?Nu&rf4Q&Rr3c zFnVaIuwAu-X_xB0BY$R`*8o?Q79h05^FV>onQ3Xj$%0(YGC%wLoW@Kk@_jz7^%dd1 zOe=GSGSPTT_)ZP4rPkv-;)y zvZ7J&d9g43N$b{nFaMW4a9L)#0i%MO8KRu@r}1DWP_$dg7C7&`+KN z1sP2%cRWirtnzINZJ3?>P4swJy2aaU=6fk=Xg`s6#K%6+qh+LxbZ7%Z`5}J#IyT9v z{S{7Ena7iOLHI)5KmKv{0rm~*hsNpw1sxj;UXa8%YA0cbR-hw=j-QN)!nS4%Ae?Oa zgx2%-H*3AE|Lx(8X77lQV3X~Pkwg^|hWKhSsx$AL-PxQIavKd>7$~Yh`*jz*7`1R< z(X*xjdz|j8gIadBS(F~5?p_w>F}>DQI4F(0a&}$xoTv7;$=ZhF4hJrtJQ{X^@+=X8 zi&OHIL6sw5XTK~i?QR{mXt(}44^*D4pwZ}FND{5|>(+{60}9G!Z$HdBm=J|}O`fTKh##kX zdM5UrZ8?fzlau$I4f|xy&tmwe(jqyjMpA0$u`^z)3734FA1Q0Swi;qvu;q1mB~NcQ1(EFiu&Bc562n;+ zjt%N;!>Wmxmxg^E150_>taXf~6d?voK@yI<>1DZAc>PRGHa};_ppNzna)VQ>vg8#+ z;&zvFNY73bDN$}W$-dU^oF(A0;(wrV>kM#nO(Vky-6osemv+>Vf^nN#^t$}H(v61P zzi2RN@bhE(0qLg0>$CA)l5L~Q15tNL$tNl32Oae3uOkH01tQOJobbCI{r+lVSagx3 PL#Cts@NT81W7PiwwvIO3 From 4c21d71301eedf1cd999a01ad116a966bac1bc1b Mon Sep 17 00:00:00 2001 From: Persi Date: Sun, 23 Feb 2020 02:34:29 -0500 Subject: [PATCH 090/175] Okay, now this should fix it? --- icons/turf/areas.dmi | Bin 0 -> 39481 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 icons/turf/areas.dmi diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi new file mode 100644 index 0000000000000000000000000000000000000000..a35837eedd8be6640df6ddaa0444c4aece7a9d57 GIT binary patch literal 39481 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 K>?k&f2mb=2$jh4m literal 0 HcmV?d00001 From fd5051361eb25734549407fb73df3b005079f8fb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Feb 2020 05:37:20 -0600 Subject: [PATCH 091/175] Automatic changelog generation for PR #11207 [ci skip] --- html/changelogs/AutoChangeLog-pr-11207.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11207.yml diff --git a/html/changelogs/AutoChangeLog-pr-11207.yml b/html/changelogs/AutoChangeLog-pr-11207.yml new file mode 100644 index 0000000000..db73ed666f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11207.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - bugfix: "Ash from land of lava now is useable for sandstone" From 2b740f9bad93ff08a4d15adf5a89140fabd4f8ae Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 23 Feb 2020 13:09:21 +0100 Subject: [PATCH 092/175] [s] Fixing an issue with slot machines crashing the server. --- code/__HELPERS/global_lists.dm | 8 ++++++++ code/_globalvars/lists/objects.dm | 1 + code/game/machinery/slotmachine.dm | 20 +++++++++----------- code/modules/mining/ores_coins.dm | 1 + 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index 4190138335..da0032a839 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -93,6 +93,8 @@ init_subtypes(/datum/crafting_recipe, GLOB.crafting_recipes) + INVOKE_ASYNC(GLOBAL_PROC, /proc/init_ref_coin_values) //so the current procedure doesn't sleep because of UNTIL() + //creates every subtype of prototype (excluding prototype) and adds it to list L. //if no list/L is provided, one is created. /proc/init_subtypes(prototype, list/L) @@ -110,3 +112,9 @@ for(var/path in subtypesof(prototype)) L+= path return L + +/proc/init_ref_coin_values() + for(var/path in typesof(/obj/item/coin)) + var/obj/item/coin/C = new path + UNTIL(C.flags_1 & INITIALIZED_1) //we want to make sure the value is calculated and not null. + GLOB.coin_values[path] = C.value diff --git a/code/_globalvars/lists/objects.dm b/code/_globalvars/lists/objects.dm index 42fc163879..4de7c88bf7 100644 --- a/code/_globalvars/lists/objects.dm +++ b/code/_globalvars/lists/objects.dm @@ -32,6 +32,7 @@ GLOBAL_LIST_EMPTY(meteor_list) // List of all meteors. GLOBAL_LIST_EMPTY(active_jammers) // List of active radio jammers GLOBAL_LIST_EMPTY(ladders) GLOBAL_LIST_EMPTY(trophy_cases) +GLOBAL_LIST_EMPTY(coin_values) GLOBAL_LIST_EMPTY(wire_color_directory) GLOBAL_LIST_EMPTY(wire_name_directory) diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm index 98c8ebcaad..115c61e9b9 100644 --- a/code/game/machinery/slotmachine.dm +++ b/code/game/machinery/slotmachine.dm @@ -26,7 +26,6 @@ var/working = 0 var/balance = 0 //How much money is in the machine, ready to be CONSUMED. var/jackpots = 0 - var/list/coinvalues = list() var/list/reels = list(list("", "", "") = 0, list("", "", "") = 0, list("", "", "") = 0, list("", "", "") = 0, list("", "", "") = 0) var/list/symbols = list(SEVEN = 1, "&" = 2, "@" = 2, "$" = 2, "?" = 2, "#" = 2, "!" = 2, "%" = 2) //if people are winning too much, multiply every number in this list by 2 and see if they are still winning too much. @@ -45,10 +44,6 @@ toggle_reel_spin(0) - for(var/cointype in typesof(/obj/item/coin)) - var/obj/item/coin/C = cointype - coinvalues["[cointype]"] = initial(C.value) - /obj/machinery/computer/slot_machine/Destroy() if(balance) give_coins(balance) @@ -294,19 +289,22 @@ return amount -/obj/machinery/computer/slot_machine/proc/dispense(amount = 0, cointype = /obj/item/coin/silver, mob/living/target, throwit = 0) - var/value = coinvalues["[cointype]"] +/obj/machinery/computer/slot_machine/proc/dispense(amount = 0, cointype = /obj/item/coin/silver, mob/living/target, throwit = FALSE) + var/value = GLOB.coin_values[cointype] || GLOB.coin_values[/obj/item/coin/iron] + INVOKE_ASYNC(src, .proc/become_rich, amount, value, cointype, target, throwit) + return amount % value - - while(amount >= value) +/obj/machinery/computer/slot_machine/proc/become_rich(amount, value, cointype = /obj/item/coin/silver, mob/living/target, throwit = FALSE) + if(value <= 0) + return + while(amount >= value && !QDELETED(src)) var/obj/item/coin/C = new cointype(loc) //DOUBLE THE PAIN amount -= value if(throwit && target) C.throw_at(target, 3, 10) else random_step(C, 2, 40) - - return amount + CHECK_TICK #undef SEVEN #undef SPIN_TIME diff --git a/code/modules/mining/ores_coins.dm b/code/modules/mining/ores_coins.dm index 7fc4728329..67c26abaef 100644 --- a/code/modules/mining/ores_coins.dm +++ b/code/modules/mining/ores_coins.dm @@ -326,6 +326,7 @@ GLOBAL_LIST_INIT(sand_recipes, list(\ var/cooldown = 0 var/value var/coinflip + item_flags = NO_MAT_REDEMPTION //You know, it's kind of a problem that money is worth more extrinsicly than intrinsically in this universe. /obj/item/coin/Initialize() . = ..() From 0d67e81ad5c7671e55d165461500543ce582db70 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 23 Feb 2020 13:18:16 +0100 Subject: [PATCH 093/175] Yo. --- code/__DEFINES/misc.dm | 2 ++ code/__HELPERS/unsorted.dm | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index ac8681ead7..881a02c38b 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -521,3 +521,5 @@ GLOBAL_LIST_INIT(pda_reskins, list(PDA_SKIN_CLASSIC = 'icons/obj/pda.dmi', PDA_S #define NIGHTSHIFT_AREA_RECREATION 2 //dorms common areas, etc #define NIGHTSHIFT_AREA_DEPARTMENT_HALLS 3 //interior hallways, etc #define NIGHTSHIFT_AREA_NONE 4 //default/highest. + +#define UNTIL(X) while(!(X)) stoplag() diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 2cb088c654..af2fb281e6 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -1234,8 +1234,6 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) return FALSE return TRUE -#define UNTIL(X) while(!(X)) stoplag() - /proc/pass() return From 9085c9865ba8afac96ce8b4a35c8be71e39bc6b4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Feb 2020 06:30:25 -0600 Subject: [PATCH 094/175] Automatic changelog generation for PR #11206 [ci skip] --- html/changelogs/AutoChangeLog-pr-11206.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11206.yml diff --git a/html/changelogs/AutoChangeLog-pr-11206.yml b/html/changelogs/AutoChangeLog-pr-11206.yml new file mode 100644 index 0000000000..5f6889ec94 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11206.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - bugfix: "corndog sprite being miss-spelled" From 485241a361e499fd7ff7bbd955f5cd4d52b16b2e Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 23 Feb 2020 13:32:46 +0100 Subject: [PATCH 095/175] cleanup detail --- code/__HELPERS/global_lists.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index da0032a839..8c73d32583 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -118,3 +118,4 @@ var/obj/item/coin/C = new path UNTIL(C.flags_1 & INITIALIZED_1) //we want to make sure the value is calculated and not null. GLOB.coin_values[path] = C.value + qdel(C) From 094b92e58b1c5c3faaca90c3e2cf178d136b067c Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 23 Feb 2020 13:12:25 -0600 Subject: [PATCH 096/175] silk, time, rods --- .../crafting/recipes/recipes_weapon_and_ammo.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm b/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm index 99487b53fd..c132d8106d 100644 --- a/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm +++ b/code/datums/components/crafting/recipes/recipes_weapon_and_ammo.dm @@ -291,17 +291,17 @@ /datum/crafting_recipe/arrow name = "Arrow" result = /obj/item/ammo_casing/caseless/arrow - time = 20 + time = 30 reqs = list(/obj/item/stack/sheet/mineral/wood = 1, - /obj/item/stack/sheet/cloth = 1, - /obj/item/stack/rods = 3) // 1 metal sheet is worth 1.5 arrows + /obj/item/stack/sheet/silk = 1, + /obj/item/stack/rods = 1) // 1 metal sheet = 2 rods = 2 arrows category = CAT_WEAPONRY subcategory = CAT_AMMO /datum/crafting_recipe/bone_arrow name = "Bone Arrow" result = /obj/item/ammo_casing/caseless/arrow/bone - time = 20 + time = 30 always_availible = FALSE reqs = list(/obj/item/stack/sheet/bone = 1, /obj/item/stack/sheet/sinew = 1, @@ -313,7 +313,7 @@ name = "Bonfire-Hardened Arrow" result = /obj/item/ammo_casing/caseless/arrow/ashen tools = list(/obj/structure/bonfire) - time = 20 + time = 30 always_availible = FALSE reqs = list(/obj/item/ammo_casing/caseless/arrow = 1) category = CAT_WEAPONRY From 12ea22fdbf6324d15de0ef237ead90f87493c8ac Mon Sep 17 00:00:00 2001 From: r4d6 Date: Sun, 23 Feb 2020 14:52:12 -0500 Subject: [PATCH 097/175] Fix --- .../StationRuins/Box/Engine/engine_am.dmm | 38 ++----------------- 1 file changed, 3 insertions(+), 35 deletions(-) diff --git a/_maps/RandomRuins/StationRuins/Box/Engine/engine_am.dmm b/_maps/RandomRuins/StationRuins/Box/Engine/engine_am.dmm index 96e28fbc6f..0c83691bd7 100644 --- a/_maps/RandomRuins/StationRuins/Box/Engine/engine_am.dmm +++ b/_maps/RandomRuins/StationRuins/Box/Engine/engine_am.dmm @@ -118,13 +118,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"nR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/engine, -/area/engine/engineering) "nW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -180,13 +173,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"xg" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "xx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -266,13 +252,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"Bh" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "BG" = ( /obj/structure/closet/emcloset/anchored, /obj/machinery/light/small{ @@ -427,13 +406,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"Mn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/engine, -/area/engine/engineering) "MD" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ @@ -503,10 +475,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"SD" = ( -/obj/effect/turf_decal/box/red, -/turf/open/floor/engine, -/area/engine/engineering) "Tr" = ( /obj/structure/sign/warning/radiation/rad_area, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -1117,8 +1085,8 @@ MJ wt eJ Zx -Mn -Mn +nW +nW WQ lY Og @@ -1401,7 +1369,7 @@ fh JZ kK Ch -dz +Ch MJ MJ MJ From 31a93d9f32a026108682b830dd35d1b33114198c Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 23 Feb 2020 14:27:40 -0600 Subject: [PATCH 098/175] you'd think i'd have remembered to change paths --- code/game/objects/structures/holosign.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/holosign.dm b/code/game/objects/structures/holosign.dm index 92fda29101..fc1e642468 100644 --- a/code/game/objects/structures/holosign.dm +++ b/code/game/objects/structures/holosign.dm @@ -110,10 +110,10 @@ CanAtmosPass = ATMOS_PASS_NO resistance_flags = FIRE_PROOF -/obj/structure/holosign/barrier/combolock/blocksTemperature() +/obj/structure/holosign/barrier/combifan/blocksTemperature() return TRUE -/obj/structure/holosign/barrier/combolock/Initialize() +/obj/structure/holosign/barrier/combifan/Initialize() . = ..() air_update_turf(TRUE) From b3149d930f7ccf831ec0a062cb806b8c9274d37d Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 23 Feb 2020 21:31:53 +0100 Subject: [PATCH 099/175] Fixing pAI radios inability to be toggled on/off --- code/game/objects/items/devices/paicard.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm index f28aacc46c..4f61d6f413 100644 --- a/code/game/objects/items/devices/paicard.dm +++ b/code/game/objects/items/devices/paicard.dm @@ -94,10 +94,8 @@ to_chat(pai, "Your mental faculties leave you.") to_chat(pai, "oblivion... ") qdel(pai) - if(href_list["wires"]) - var/wire = text2num(href_list["wires"]) - if(pai.radio) - pai.radio.wires.cut(wire) + if(href_list["wires"] && pai.radio) + pai.radio.wires.cut(wire) if(href_list["reset_radio_short"]) pai.unshort_radio() if(href_list["setlaws"]) From 4c03d552eedb609a2692f0d9e5574ed9ff73c647 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Sun, 23 Feb 2020 16:22:19 -0500 Subject: [PATCH 100/175] Gettin Salty. Fish is now Seafood. --- code/__DEFINES/construction.dm | 2 +- code/datums/components/crafting/craft.dm | 2 +- .../{recipes_fish.dm => recipes_seafood.dm} | 24 +++++++++---------- tgstation.dme | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) rename code/modules/food_and_drinks/recipes/tablecraft/{recipes_fish.dm => recipes_seafood.dm} (92%) diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index 9c2ea526fa..1774121c80 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -94,7 +94,6 @@ #define CAT_CAKE "Cakes" #define CAT_DONUT "Donuts" #define CAT_EGG "Egg-Based Food" -#define CAT_FISH "Fish" #define CAT_MEAT "Meats" #define CAT_MEXICAN "Mexican" #define CAT_MISCFOOD "Misc. Food" @@ -102,6 +101,7 @@ #define CAT_PIE "Pies & Sweets" #define CAT_PIZZA "Pizzas" #define CAT_SALAD "Salads" +#define CAT_SEAFOOD "Seafood" #define CAT_SANDWICH "Sandwiches" #define CAT_SOUP "Soups" #define CAT_SPAGHETTI "Spaghettis" diff --git a/code/datums/components/crafting/craft.dm b/code/datums/components/crafting/craft.dm index c381f827c0..cd3f05b326 100644 --- a/code/datums/components/crafting/craft.dm +++ b/code/datums/components/crafting/craft.dm @@ -29,7 +29,6 @@ CAT_CAKE, CAT_DONUT, CAT_EGG, - CAT_FISH, CAT_ICE, CAT_MEAT, CAT_MEXICAN, @@ -37,6 +36,7 @@ CAT_PASTRY, CAT_PIE, CAT_PIZZA, + CAT_SEAFOOD, CAT_SALAD, CAT_SANDWICH, CAT_SOUP, diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_fish.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm similarity index 92% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_fish.dm rename to code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm index ad1278978a..4fc12f0777 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_fish.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm @@ -9,7 +9,7 @@ /datum/reagent/consumable/rice = 10 ) result = /obj/item/reagent_containers/food/snacks/sushi_rice - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/sea_weed name = "Sea Weed Sheet" @@ -19,7 +19,7 @@ /obj/item/reagent_containers/food/snacks/grown/kudzupod = 1, ) result = /obj/item/reagent_containers/food/snacks/sea_weed - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD //////////////////////////Sushi///////////////////////////////// @@ -31,7 +31,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/sashimi - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/riceball name = "Onigiri" @@ -41,7 +41,7 @@ /obj/item/reagent_containers/food/snacks/sushi_rice = 1 ) result = /obj/item/reagent_containers/food/snacks/riceball - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/sushie_egg name = "Tobiko" @@ -51,7 +51,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 2, ) result = /obj/item/reagent_containers/food/snacks/tobiko - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/sushie_basic name = "Funa Hosomaki" @@ -62,7 +62,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 3, ) result = /obj/item/reagent_containers/food/snacks/sushie_basic - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/sushie_adv name = "Funa Nigiri" @@ -72,7 +72,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/sushie_adv - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/sushie_pro name = "Well made Funa Nigiri" @@ -83,7 +83,7 @@ /obj/item/reagent_containers/food/snacks/sea_weed = 1 ) result = /obj/item/reagent_containers/food/snacks/sushie_pro - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD //////////////////////////////////////////////FISH/////////////////////////////////////////// @@ -95,7 +95,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1, ) result = /obj/item/reagent_containers/food/snacks/tuna - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/cubancarp name = "Cuban carp" @@ -105,7 +105,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/cubancarp - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/fishfingers name = "Fish fingers" @@ -115,7 +115,7 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/fishfingers - subcategory = CAT_FISH + subcategory = CAT_SEAFOOD /datum/crafting_recipe/food/fishandchips name = "Fish and chips" @@ -124,4 +124,4 @@ /obj/item/reagent_containers/food/snacks/carpmeat = 1 ) result = /obj/item/reagent_containers/food/snacks/fishandchips - subcategory = CAT_FISH \ No newline at end of file + subcategory = CAT_SEAFOOD \ No newline at end of file diff --git a/tgstation.dme b/tgstation.dme index b235b08375..d3dd12cf7b 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1836,7 +1836,6 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_cake.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_donut.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_egg.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_fish.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_frozen.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_meat.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_mexican.dm" @@ -1846,6 +1845,7 @@ #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pizza.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_salad.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_sandwich.dm" +#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_seafood.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_soup.dm" #include "code\modules\food_and_drinks\recipes\tablecraft\recipes_spaghetti.dm" #include "code\modules\games\cas.dm" From 825beb41c16b79ccb552448d33134fda3aa10cc0 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 23 Feb 2020 22:44:38 +0100 Subject: [PATCH 101/175] Update paicard.dm --- code/game/objects/items/devices/paicard.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm index 4f61d6f413..5b332cda46 100644 --- a/code/game/objects/items/devices/paicard.dm +++ b/code/game/objects/items/devices/paicard.dm @@ -95,7 +95,7 @@ to_chat(pai, "oblivion... ") qdel(pai) if(href_list["wires"] && pai.radio) - pai.radio.wires.cut(wire) + pai.radio.wires.cut(href_list["wires"]) if(href_list["reset_radio_short"]) pai.unshort_radio() if(href_list["setlaws"]) From 3e232f93d931c93617500d9a2e04871b4d43d6aa Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 23 Feb 2020 22:47:21 +0100 Subject: [PATCH 102/175] Update barsigns.dm --- code/game/objects/structures/barsigns.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/barsigns.dm b/code/game/objects/structures/barsigns.dm index 55583be1c0..5508af2abb 100644 --- a/code/game/objects/structures/barsigns.dm +++ b/code/game/objects/structures/barsigns.dm @@ -311,7 +311,7 @@ /datum/barsign/the_hive name = "The Hive" icon = "thehive" - desc = "Comb in for some sweet drinks! Not known for serving any sappy drinks." + desc = "Comb in for some sweet drinks! Not known for serving any sappy drink." /datum/barsign/hiddensigns hidden = TRUE From 6dce641061e0437911fa6096418107bcf1220021 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Feb 2020 15:47:39 -0600 Subject: [PATCH 103/175] Automatic changelog generation for PR #11187 [ci skip] --- html/changelogs/AutoChangeLog-pr-11187.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11187.yml diff --git a/html/changelogs/AutoChangeLog-pr-11187.yml b/html/changelogs/AutoChangeLog-pr-11187.yml new file mode 100644 index 0000000000..4a2bf49530 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11187.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - imageadd: "Added a new bee themed bar sign" From 5037f28eaf2211c514216b51d8da985077bcd9db Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Feb 2020 15:48:10 -0600 Subject: [PATCH 104/175] Automatic changelog generation for PR #11162 [ci skip] --- html/changelogs/AutoChangeLog-pr-11162.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11162.yml diff --git a/html/changelogs/AutoChangeLog-pr-11162.yml b/html/changelogs/AutoChangeLog-pr-11162.yml new file mode 100644 index 0000000000..3ea1b88ef7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11162.yml @@ -0,0 +1,5 @@ +author: "Hatterhat" +delete-after: True +changes: + - bugfix: "Biogenerators can now actually generate universal enzyme." + - bugfix: "The Basic Tools node now unlocks the multitool for printing on Engineering and Science fabricators." From 19ae30ea5b85f06dcdf64f2c3d1dad3e36a7b291 Mon Sep 17 00:00:00 2001 From: Hatterhat <31829017+Hatterhat@users.noreply.github.com> Date: Sun, 23 Feb 2020 21:20:57 -0600 Subject: [PATCH 105/175] alright ghom i hope this works Co-Authored-By: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/controllers/subsystem/shuttle.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index ff64732317..bcbe2bb49b 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -649,5 +649,5 @@ SUBSYSTEM_DEF(shuttle) priority_announce("The shift has come to an end and the shuttle called. [seclevel2num(get_security_level()) == SEC_LEVEL_RED ? "Red Alert state confirmed: Dispatching priority shuttle. " : "" ]It will arrive in [emergency.timeLeft(600)] minutes.", null, "shuttlecalled", "Priority") log_game("Round end vote passed. Shuttle has been auto-called.") message_admins("Round end vote passed. Shuttle has been auto-called.") - emergencyNoRecall = TRUE - endvote_passed = TRUE + emergencyNoRecall = TRUE + endvote_passed = TRUE From f7e0eb43f8e243af1caf2ec43a5f6dc441d32c0b Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 23 Feb 2020 22:53:20 -0800 Subject: [PATCH 106/175] Adds rename logging --- code/modules/paperwork/pen.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 2650da8c7a..987c24c72f 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -139,6 +139,7 @@ O.name = input to_chat(user, "\The [oldname] has been successfully been renamed to \the [input].") O.renamedByPlayer = TRUE + log_game("[user] [key_name(user)] has renamed [O] to [input]") if(penchoice == "Change description") var/input = stripped_input(user,"Describe \the [O.name] here", ,"", 100) @@ -146,6 +147,7 @@ return O.desc = input to_chat(user, "You have successfully changed \the [O.name]'s description.") + log_game("[user] [key_name(user)] has changed [O]'s description to to [input]") /* * Sleepypens From 27b7cd560ce46baee7554f34ae5684ebc1c14eb4 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 24 Feb 2020 01:32:04 -0700 Subject: [PATCH 107/175] Update plushes.dm --- code/game/objects/items/plushes.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index a2a8cb3150..9dc72b44df 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -37,7 +37,9 @@ /obj/item/toy/plush/random_snowflake/Initialize(mapload, set_snowflake_id) . = ..() var/list/configlist = CONFIG_GET(keyed_list/snowflake_plushies) - var/id = pick(configlist) + var/id = SAFEPICK(configlist) + if(!id) + return set_snowflake_from_config(id) /obj/item/toy/plush/Initialize(mapload, set_snowflake_id) From e76eff6966ae91d6ef838bab61188b70741c6aa2 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 24 Feb 2020 02:21:51 -0700 Subject: [PATCH 108/175] Update plushes.dm --- code/game/objects/items/plushes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 9dc72b44df..498990fcf3 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -37,7 +37,7 @@ /obj/item/toy/plush/random_snowflake/Initialize(mapload, set_snowflake_id) . = ..() var/list/configlist = CONFIG_GET(keyed_list/snowflake_plushies) - var/id = SAFEPICK(configlist) + var/id = safepick(configlist) if(!id) return set_snowflake_from_config(id) From 76542208a612a9b523da79ea367d2fb9d536c914 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:23:20 -0600 Subject: [PATCH 109/175] Automatic changelog generation for PR #11199 [ci skip] --- html/changelogs/AutoChangeLog-pr-11199.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11199.yml diff --git a/html/changelogs/AutoChangeLog-pr-11199.yml b/html/changelogs/AutoChangeLog-pr-11199.yml new file mode 100644 index 0000000000..70aae404e1 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11199.yml @@ -0,0 +1,5 @@ +author: "Detective-Google" +delete-after: True +changes: + - rscadd: "Loudness Booster pAI program" + - rscadd: "Encryption Key pAI program" From f7d8f8f59b18b1a61ccf55e3c637dfbe64426682 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:23:32 -0600 Subject: [PATCH 110/175] Automatic changelog generation for PR #11214 [ci skip] --- html/changelogs/AutoChangeLog-pr-11214.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11214.yml diff --git a/html/changelogs/AutoChangeLog-pr-11214.yml b/html/changelogs/AutoChangeLog-pr-11214.yml new file mode 100644 index 0000000000..1a602727a8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11214.yml @@ -0,0 +1,4 @@ +author: "Ghommie" +delete-after: True +changes: + - bugfix: "Fixed pAI radios inability to be toggled on/off." From 592c3fb84354d51bb35d7163c27e59b965980664 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:23:47 -0600 Subject: [PATCH 111/175] Automatic changelog generation for PR #11184 [ci skip] --- html/changelogs/AutoChangeLog-pr-11184.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11184.yml diff --git a/html/changelogs/AutoChangeLog-pr-11184.yml b/html/changelogs/AutoChangeLog-pr-11184.yml new file mode 100644 index 0000000000..cb8ba1da3e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11184.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - bugfix: "IPC hearts are now made of robomeat and roboblood thats emp proof. Heals and is all and all just like an normal heart" From 1c8afe1a5b493eccf3e22ce0770e9ac95b11ee86 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:24:08 -0600 Subject: [PATCH 112/175] Automatic changelog generation for PR #11185 [ci skip] --- html/changelogs/AutoChangeLog-pr-11185.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11185.yml diff --git a/html/changelogs/AutoChangeLog-pr-11185.yml b/html/changelogs/AutoChangeLog-pr-11185.yml new file mode 100644 index 0000000000..347dc9a3ad --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11185.yml @@ -0,0 +1,5 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - imageadd: "All robotic organs now have an animation." + - imageadd: "IPC's now organs now look like robotic ones, even tho thats not the case game wise" From 9a9558f95f4c400fc65c89695c1cc2ca6dae3411 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:24:22 -0600 Subject: [PATCH 113/175] Automatic changelog generation for PR #11188 [ci skip] --- html/changelogs/AutoChangeLog-pr-11188.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11188.yml diff --git a/html/changelogs/AutoChangeLog-pr-11188.yml b/html/changelogs/AutoChangeLog-pr-11188.yml new file mode 100644 index 0000000000..24aae51503 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11188.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - imageadd: "Makes plywood chair not look as bad." From 14565025faaf1c774d02d999d2e25438dee25312 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:27:08 -0600 Subject: [PATCH 114/175] Automatic changelog generation for PR #11183 [ci skip] --- html/changelogs/AutoChangeLog-pr-11183.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11183.yml diff --git a/html/changelogs/AutoChangeLog-pr-11183.yml b/html/changelogs/AutoChangeLog-pr-11183.yml new file mode 100644 index 0000000000..26a325cb08 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11183.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - balance: "Engi/Sec Trek suit no longer has 10% melee protection" From fc3ca40b06eec6c40cfe544d1ac2e6d580c0e85e Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:27:29 -0600 Subject: [PATCH 115/175] Automatic changelog generation for PR #11216 [ci skip] --- html/changelogs/AutoChangeLog-pr-11216.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11216.yml diff --git a/html/changelogs/AutoChangeLog-pr-11216.yml b/html/changelogs/AutoChangeLog-pr-11216.yml new file mode 100644 index 0000000000..40bb5067e3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11216.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - rscadd: "Logging for renaming" From 0caed52ca548091ff08e363d067eb0ffeab045ac Mon Sep 17 00:00:00 2001 From: Detective-Google <48196179+Detective-Google@users.noreply.github.com> Date: Mon, 24 Feb 2020 03:28:33 -0600 Subject: [PATCH 116/175] removes the epic and cool access and makes it less epic and more cool --- code/modules/jobs/job_types/paramedic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/jobs/job_types/paramedic.dm b/code/modules/jobs/job_types/paramedic.dm index 3dd6687b24..7c617d3208 100644 --- a/code/modules/jobs/job_types/paramedic.dm +++ b/code/modules/jobs/job_types/paramedic.dm @@ -11,8 +11,8 @@ outfit = /datum/outfit/job/paramedic - access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) - minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS, ACCESS_EVA, ACCESS_ENGINE, ACCESS_CARGO, ACCESS_HYDROPONICS, ACCESS_RESEARCH) + access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS) + minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS) display_order = JOB_DISPLAY_ORDER_PARAMEDIC From 0cfa6699b1063b872735f78f77de44b92a74e16c Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 24 Feb 2020 02:31:14 -0700 Subject: [PATCH 117/175] yeah ok fine --- code/game/objects/items/teleportation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/teleportation.dm b/code/game/objects/items/teleportation.dm index bb860101ac..7d59da0089 100644 --- a/code/game/objects/items/teleportation.dm +++ b/code/game/objects/items/teleportation.dm @@ -141,7 +141,7 @@ return TRUE return ..() -/obj/item/hand_tele/proc/try_dispel_portal(atom/target, mob/user, delay = 20) +/obj/item/hand_tele/proc/try_dispel_portal(atom/target, mob/user, delay = 30) var/datum/beam/B = user.Beam(target, icon_state = "rped_upgrade", maxdistance = 50) if(is_parent_of_portal(target) && (!delay || do_after(user, delay, target = target))) qdel(target) From 6b43ca03da822d049597ee97b5213f361e96c75f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 03:33:56 -0600 Subject: [PATCH 118/175] Automatic changelog generation for PR #11201 [ci skip] --- html/changelogs/AutoChangeLog-pr-11201.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11201.yml diff --git a/html/changelogs/AutoChangeLog-pr-11201.yml b/html/changelogs/AutoChangeLog-pr-11201.yml new file mode 100644 index 0000000000..4b7749eee2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11201.yml @@ -0,0 +1,8 @@ +author: "Hatterhat" +delete-after: True +changes: + - rscadd: "The Ash Walkers' nest on Lavaland now starts with three bowyery slabs." + - rscadd: "You can now welder-harden arrows. It might take longer." + - balance: "Silkstring's costs adjusted for bows and whatnot." + - spellcheck: "Grammar adjusted on a lot of things relating to bows." + - bugfix: "Pipe bows' bowstring doesn't look like it replicated itself upon draw." From 96bf8d6969a48424f5826b12a08ed3330ab5ca2b Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Mon, 24 Feb 2020 09:55:39 +0000 Subject: [PATCH 119/175] Update tails.dm --- .../mob/dead/new_player/sprite_accessories/tails.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index dac91b5445..26fbfeb6ee 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -170,6 +170,18 @@ icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED +/datum/sprite_accessory/tails/human/2cat + name = "Cat, Double" + icon_state = "2cat" + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + color_src = MATRIXED + +/datum/sprite_accessory/tails_animated/human/2cat + name = "Cat, Double + icon_state = "2cat" + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + color_src = MATRIXED + /datum/sprite_accessory/tails/human/cow name = "Cow" icon_state = "cow" From b7fd779f18d9d5aa1f96221f868c0c1b6c63db0b Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Mon, 24 Feb 2020 04:59:52 -0500 Subject: [PATCH 120/175] OH GOD CATSPLOSION --- modular_citadel/icons/mob/mam_tails.dmi | Bin 67868 -> 69096 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_tails.dmi b/modular_citadel/icons/mob/mam_tails.dmi index d59cf43a6894415fe374d61e1146125d44d3a49c..18f41aa1d6618673007d17fc5f6319b9981ab1b3 100644 GIT binary patch literal 69096 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 literal 67868 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 Z0hDMJdYV_*T-lv-u*;U0uov7P{x`ifHp&11 From 495db5f09fe47108646e6b671db4d8edc2c49437 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Mon, 24 Feb 2020 05:18:36 -0500 Subject: [PATCH 121/175] OH GOD CATSPLOSIONN --- modular_citadel/icons/mob/mam_tails.dmi | Bin 69096 -> 69093 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_tails.dmi b/modular_citadel/icons/mob/mam_tails.dmi index 18f41aa1d6618673007d17fc5f6319b9981ab1b3..ab6ca8c918294a646aba31f3574c3790f1312297 100644 GIT binary patch delta 49 zcmV-10M7sDn*`;X1dt>F46!Bq0~z$3^Qk*|uA|52WwiYAH2w_+;b~5FQGQ~BJOsBq H1OcoGSDO}- delta 52 zcmV-40L%a7n*`{a1dt>F53wct103&w>aQ@L11HyY^!U7tmS3L6zX92dYV*^N#i@fi K1h+W^0jvq7i5XS^ From ff10b70ffede78e8d4c306593f39c2a47a9329e3 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Mon, 24 Feb 2020 10:20:47 +0000 Subject: [PATCH 122/175] 2cat heating up --- code/modules/mob/dead/new_player/sprite_accessories/tails.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index 26fbfeb6ee..0a084bac8c 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -177,7 +177,7 @@ color_src = MATRIXED /datum/sprite_accessory/tails_animated/human/2cat - name = "Cat, Double + name = "Cat, Double" icon_state = "2cat" icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED From 6385445fd514e18740067abdd7a2d6a381b824b2 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Mon, 24 Feb 2020 10:31:47 +0000 Subject: [PATCH 123/175] ruining the joke --- .../mob/dead/new_player/sprite_accessories/tails.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index 0a084bac8c..f4f5a44044 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -170,15 +170,15 @@ icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED -/datum/sprite_accessory/tails/human/2cat +/datum/sprite_accessory/tails/human/twocat name = "Cat, Double" - icon_state = "2cat" + icon_state = "twocat" icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED -/datum/sprite_accessory/tails_animated/human/2cat +/datum/sprite_accessory/tails_animated/human/twocat name = "Cat, Double" - icon_state = "2cat" + icon_state = "twocat" icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED From 3914c5522a688a5154084a125ec9d28de4b8af43 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Mon, 24 Feb 2020 05:33:40 -0500 Subject: [PATCH 124/175] TWOCAT --- modular_citadel/icons/mob/mam_tails.dmi | Bin 69093 -> 69095 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_tails.dmi b/modular_citadel/icons/mob/mam_tails.dmi index ab6ca8c918294a646aba31f3574c3790f1312297..c2a89eab9ab21c3dc61d5bc873cd5b10877321c5 100644 GIT binary patch delta 1073 zcmV-11kU^An*`^Z1dt?u4ti8rbVOxyV{&P5bZKvH004NL-C0df<1i3Cx4$BSYlJAY zupD|pu)7>!rPbb}Noo?SAz>Ydz`x%^X`61H@jSQM!zwBghxak|*dC8hqucv$4^PqE z@id=i^bQ7q*Dz(dET>R4APncJ)tV$*O1`oxCJ}mUP)so^*BjoZQ}j ze|Wk(8IKm)G|@bojz`aiUQ`p!qc7vpLY4Fp&7+HW=NqK^`t!%ruS41V&L(aMqrQje zC{Ld2cUETRusj|a)#+-%aWXzoO0P#Z0v(Bx(j%rqN$HU?!RKo~dXKg<`l4-?AFR%F zYx!z8?iCNC?xzudc-fEHtLuz9Bb(}+mAdZD)Y&W^`1zK^rx4@sa2-iB6A1x3ioUh4 zs!C<7hnsDrvv{)mF_eregi+#f5QOAc^3oc;0CiRvG>rq4wlGwz`Q2(`R4LsoX6M6G zyWx^;7(-MtPYetl14CI>*VWNa&Nc5bPfv;0VHBJl1(~IPG&QF2G@i!OVIEmp4A2O? zI8wr=>x_CqmW~zqmg}(SWuEp&K&0crSiS1CP=-HCdbR6iyz{Y?vTE4FD0Apq)_xbx5$UL4rLMNtC+G2HJY{Z&RB-Y_ zCa)vM#gG?&cE+vLo8nXMvgbFR#NNtq#mM+T2nGHm_(Lk)yw&B4=Ulz{E2N#mRLC!@ zdm(y}cNxPWBWNg1wPj6Q>?{h7g)!nGk@y${!8nKl_+J?>G8i+*~q828V)g35*lhqyGbU{_tAS~^b$qBv?u0Zgj z4$$i1pt$J0E^CVhwnm|m1*!FcP;9ly2rY9>MtETl>ugYPe_c0xxz?-xnJW5OH*5{( zXYo66biF*P`v_e%DnpObPY^n^AzD2g6j$mkHeCobB3NY&LWQiVEM+CH*6TEhi`EUX ztb-+gt5!vBg%qLnYVxWUXbQZl1wJ*n&ISd)c(oOIOAF_0ab)Ps@4a40Trn{C@V16@ zURX<-Kj*Lqz#ZD-yabA!Itm-18~38txiZp6vVQx<+wWd6%U;FA!~(yb&BEu3hd0Z% zg4@o^w!#~f0ZLmK*4?d5gRaOG2JY|TN?RCzcH1GeP{|0dQhX}X{neu_+FCP%U+_%G z4G-4Yps=iL8(;c!3$|W|7u`KRjQ;@Tvu*C}q4Up!IRv*k1OcoGd&?1a delta 1071 zcmV+~1kn5En*`;X1dt?u40=>pbVOxyV{&P5bZKvH004NL-B~?v+b|HF?O!1zs}RJF z-8O@lz-gPIDNuA5PBJ4AmZg-UqW0f+aBa&qb-YI#9SXq#GQ5u?kL2-q9X&jLdU}qQ zU!KNq$~3yJqD3^jxgC!>y|P8Li0-E2QK58R*zG@!C99%EbhSx;Ea|eNJn8E4C3$%K z{PeuM8jn`mG|?iOjYltrHmZph(TDM9rAqo0Euv|B^bOK|{Py+v`?+j>XA?JsQ9nU+ zlqWCsPgZ8`usj|a)#+-*aWXzoO0P#Z0v(Bx(hH_SN$G_$!RPBVdXKg<`l4;tzgV5w z!ScJ|xVJovx}QdW;N>)CudXxdjBKiNR_c9krf%l(z|XfN{s=Mt&exGdGm#Lmqv%`v zs;X4RdbmGCI*%vEA4AEwLKr0u2SG@FC7agh6{xetplKYSbbz5^&5u?aqe|&!F~1$2 z+C7(S!x*BHd17Gb7#Pa3x~?vMa_)F9d3s8`4x`}gD9EgTrKvHCXYnka4fDv-Vt_{A z#gP&|U1!uQvUI7)4_xO(FY|Od0wR6K0ZbjLR8WTxHLkNqp;EQg>H;NEZM8bHBJw&p z9bBL4!0J`6g);nE(yLwX;-inHlvTqXMwvs`vi7@hjz~uZEA{SReR3P$#WUu1NChV^ zWb!(4Tnu@CVQ1V*y(vEB?s|UXN$jl*w~UMrgizp5f2DUm+b8rb2#M z-3!r+yvrEQ89_s7sx50`dbB7w7RHE&MB-x*1n;nv8r8HFxSbzEp@TV4F;K3fJXuqf zlc{Sw#61#ngkq~rMrfI9GQtacSZ9xd`|G;l%e7wh&s5Pbx?yWL zKa1aqqwD2SJw@oMQ5kxa{sEyw8=}?2L2;$tV$+2{BZ5_SAXLbz%2HPHYQ0XAxM+DhRi&tBbx3qB17DtB8{K@N;#1#XB4{vKo z=Y_ST`Ew3?06e0-%uArysiUwFx^XXRohu`KB$|kkMs9@B2~Cty@tO?0L7GD4W From 528a226daef09c0fa9c0e6a452e9f02a9a809fc2 Mon Sep 17 00:00:00 2001 From: Artur Date: Mon, 24 Feb 2020 13:36:55 +0200 Subject: [PATCH 125/175] Done. --- code/modules/power/solar.dm | 72 +++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 27 deletions(-) diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index 021b575fef..ab33324fb8 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -27,16 +27,15 @@ /obj/machinery/power/solar/Initialize(mapload, obj/item/solar_assembly/S) . = ..() - if(!S) - assembly = new /obj/item/solar_assembly - assembly.glass_type = new /obj/item/stack/sheet/glass(null, 2) - assembly.anchored = TRUE - else - S.moveToNullspace() - assembly = S - assembly.glass_type.on_solar_construction(src) - obj_integrity = max_integrity - update_icon() + panel = new() +#if DM_VERSION >= 513 + panel.vis_flags = VIS_INHERIT_ID|VIS_INHERIT_ICON|VIS_INHERIT_PLANE + vis_contents += panel +#endif + panel.icon = icon + panel.icon_state = "solar_panel" + panel.layer = FLY_LAYER + Make(S) connect_to_network() RegisterSignal(SSsun, COMSIG_SUN_MOVED, .proc/queue_update_solar_exposure) @@ -57,6 +56,18 @@ control.connected_panels -= src control = null +/obj/machinery/power/solar/proc/Make(obj/item/solar_assembly/S) + if(!S) + assembly = new /obj/item/solar_assembly + assembly.glass_type = new /obj/item/stack/sheet/glass(null, 2) + assembly.anchored = TRUE + else + S.moveToNullspace() + assembly = S + assembly.glass_type.on_solar_construction(src) + obj_integrity = max_integrity + update_icon() + /obj/machinery/power/solar/crowbar_act(mob/user, obj/item/I) playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) user.visible_message("[user] begins to take the glass off [src].", "You begin to take the glass off [src]...") @@ -221,20 +232,20 @@ /obj/item/solar_assembly/attackby(obj/item/W, mob/user, params) - if(W.tool_behaviour == TOOL_WRENCH && isturf(loc)) + if(istype(W, /obj/item/wrench) && isturf(loc)) if(isinspace()) to_chat(user, "You can't secure [src] here.") return anchored = !anchored if(anchored) - user.visible_message("[user] wrenches the solar assembly into place.", "You wrench the solar assembly into place.") + user.visible_message("[user] wrenches the solar assembly into place.", "You wrench the solar assembly into place.") W.play_tool_sound(src, 75) else - user.visible_message("[user] unwrenches the solar assembly from its place.", "You unwrench the solar assembly from its place.") + user.visible_message("[user] unwrenches the solar assembly from its place.", "You unwrench the solar assembly from its place.") W.play_tool_sound(src, 75) return 1 - if(istype(W, /obj/item/stack/sheet/glass) || istype(W, /obj/item/stack/sheet/rglass)) + if(is_type_in_typecache(W, allowed_sheets)) if(!anchored) to_chat(user, "You need to secure the assembly before you can add glass.") return @@ -242,8 +253,8 @@ var/obj/item/stack/sheet/G = S.change_stack(null, 2) if(G) glass_type = G - playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) - user.visible_message("[user] places the glass on the solar assembly.", "You place the glass on the solar assembly.") + playsound(src.loc, 'sound/machines/click.ogg', 50, 1) + user.visible_message("[user] places the glass on the solar assembly.", "You place the glass on the solar assembly.") if(tracker) new /obj/machinery/power/tracker(get_turf(src), src) else @@ -259,13 +270,13 @@ return tracker = 1 qdel(W) - user.visible_message("[user] inserts the electronics into the solar assembly.", "You insert the electronics into the solar assembly.") + user.visible_message("[user] inserts the electronics into the solar assembly.", "You insert the electronics into the solar assembly.") return 1 else - if(W.tool_behaviour == TOOL_CROWBAR) + if(istype(W, /obj/item/crowbar)) new /obj/item/electronics/tracker(src.loc) tracker = 0 - user.visible_message("[user] takes out the electronics from the solar assembly.", "You take out the electronics from the solar assembly.") + user.visible_message("[user] takes out the electronics from the solar assembly.", "You take out the electronics from the solar assembly.") return 1 return ..() @@ -325,13 +336,16 @@ if(!T.control) //i.e unconnected T.set_control(src) -/obj/machinery/power/solar/update_icon() - ..() - cut_overlays() +/obj/machinery/power/solar_control/update_overlays() + . = ..() + if(stat & NOPOWER) + . += mutable_appearance(icon, "[icon_keyboard]_off") + return + . += mutable_appearance(icon, icon_keyboard) if(stat & BROKEN) - add_overlay(mutable_appearance(icon, "solar_panel-b", FLY_LAYER)) + . += mutable_appearance(icon, "[icon_state]_broken") else - add_overlay(mutable_appearance(icon, "solar_panel", FLY_LAYER)) + . += mutable_appearance(icon, icon_screen) /obj/machinery/power/solar_control/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, \ datum/tgui/master_ui = null, datum/ui_state/state = GLOB.default_state) @@ -389,13 +403,13 @@ /obj/machinery/power/solar_control/attackby(obj/item/I, mob/user, params) if(I.tool_behaviour == TOOL_SCREWDRIVER) - if(I.use_tool(src, user, 20, volume=50)) + if(I.use_tool(src, user, 20, volume = 50)) if(src.stat & BROKEN) to_chat(user, "The broken glass falls out.") var/obj/structure/frame/computer/A = new /obj/structure/frame/computer( src.loc ) new /obj/item/shard( src.loc ) var/obj/item/circuitboard/computer/solar_control/M = new /obj/item/circuitboard/computer/solar_control( A ) - for (var/obj/C in src) + for(var/obj/C in src) C.forceMove(drop_location()) A.circuit = M A.state = 3 @@ -406,7 +420,7 @@ to_chat(user, "You disconnect the monitor.") var/obj/structure/frame/computer/A = new /obj/structure/frame/computer( src.loc ) var/obj/item/circuitboard/computer/solar_control/M = new /obj/item/circuitboard/computer/solar_control( A ) - for (var/obj/C in src) + for(var/obj/C in src) C.forceMove(drop_location()) A.circuit = M A.state = 4 @@ -459,6 +473,10 @@ for(var/obj/machinery/power/solar/S in connected_panels) S.queue_turn(azimuth) +/obj/machinery/power/solar_control/power_change() + ..() + update_icon() + // // MISC // From 08829fe535f232e1d71c34c3a0663412a50e0f57 Mon Sep 17 00:00:00 2001 From: Kraseo Date: Mon, 24 Feb 2020 14:03:18 +0100 Subject: [PATCH 126/175] why don't they get a powersink by default --- code/game/gamemodes/objective_sabotage.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/objective_sabotage.dm b/code/game/gamemodes/objective_sabotage.dm index 1094dd2f36..00bc9a152c 100644 --- a/code/game/gamemodes/objective_sabotage.dm +++ b/code/game/gamemodes/objective_sabotage.dm @@ -19,6 +19,7 @@ var/won = FALSE /datum/sabotage_objective/processing/New() + special_equipment += /obj/item/sbeacondrop/powersink ..() START_PROCESSING(SSprocessing, src) From 80ebdc44c7386e8fb1e557134d4e3ed19e5cfcc3 Mon Sep 17 00:00:00 2001 From: Kraseo Date: Mon, 24 Feb 2020 14:13:52 +0100 Subject: [PATCH 127/175] moral of the story is doublecheck your code --- code/game/gamemodes/objective_sabotage.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/gamemodes/objective_sabotage.dm b/code/game/gamemodes/objective_sabotage.dm index 00bc9a152c..321e3ad2f6 100644 --- a/code/game/gamemodes/objective_sabotage.dm +++ b/code/game/gamemodes/objective_sabotage.dm @@ -19,7 +19,6 @@ var/won = FALSE /datum/sabotage_objective/processing/New() - special_equipment += /obj/item/sbeacondrop/powersink ..() START_PROCESSING(SSprocessing, src) @@ -37,7 +36,7 @@ /datum/sabotage_objective/processing/power_sink name = "Drain at least 1 gigajoule of power using a power sink." sabotage_type = "powersink" - special_equipment = list(/obj/item/powersink) + special_equipment = list(/obj/item/sbeacondrop/powersink) var/sink_found = FALSE var/count = 0 From 645da9010a270153ab825ae5269abaac4652f93d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 09:39:19 -0600 Subject: [PATCH 128/175] Automatic changelog generation for PR #11110 [ci skip] --- html/changelogs/AutoChangeLog-pr-11110.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11110.yml diff --git a/html/changelogs/AutoChangeLog-pr-11110.yml b/html/changelogs/AutoChangeLog-pr-11110.yml new file mode 100644 index 0000000000..5930a2bd30 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11110.yml @@ -0,0 +1,4 @@ +author: "Hatterhat" +delete-after: True +changes: + - rscadd: "Extend votes! Ported from Hyper, ported from AUstation." From 85150b651ef1d33469309bfea5d0ef1c541cb5f8 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 09:40:20 -0600 Subject: [PATCH 129/175] Automatic changelog generation for PR #11167 [ci skip] --- html/changelogs/AutoChangeLog-pr-11167.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11167.yml diff --git a/html/changelogs/AutoChangeLog-pr-11167.yml b/html/changelogs/AutoChangeLog-pr-11167.yml new file mode 100644 index 0000000000..51bbb12fb3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11167.yml @@ -0,0 +1,4 @@ +author: "kevinz000" +delete-after: True +changes: + - tweak: "hand teles use a less atrocious beam" From f76a1c15f387c053268c6269f594ca4cda3657da Mon Sep 17 00:00:00 2001 From: r4d6 Date: Mon, 24 Feb 2020 13:27:54 -0500 Subject: [PATCH 130/175] Port random mining base --- .../miningbase.dmm} | 11183 ++++++---------- _maps/map_files/Mining/Lavaland.dmm | 9259 +++++++------ code/datums/ruins/lavaland.dm | 12 +- code/datums/ruins/station.dm | 7 - code/game/objects/effects/landmarks.dm | 5 - 5 files changed, 9090 insertions(+), 11376 deletions(-) rename _maps/RandomRuins/{StationRuins/Lavaland/Mining_Station/Mining_Station_Public_01.dmm => LavaRuins/miningbase.dmm} (60%) diff --git a/_maps/RandomRuins/StationRuins/Lavaland/Mining_Station/Mining_Station_Public_01.dmm b/_maps/RandomRuins/LavaRuins/miningbase.dmm similarity index 60% rename from _maps/RandomRuins/StationRuins/Lavaland/Mining_Station/Mining_Station_Public_01.dmm rename to _maps/RandomRuins/LavaRuins/miningbase.dmm index 3118ad3f5f..33d38be9ae 100644 --- a/_maps/RandomRuins/StationRuins/Lavaland/Mining_Station/Mining_Station_Public_01.dmm +++ b/_maps/RandomRuins/LavaRuins/miningbase.dmm @@ -1,2322 +1,5 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"al" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"ap" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"at" = ( -/obj/structure/gulag_beacon, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"au" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Station EVA"; - req_access_txt = "54" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"av" = ( -/obj/machinery/door/airlock{ - name = "Closet" - }, -/turf/open/floor/plating, -/area/mine/production) -"aG" = ( -/turf/open/floor/plating, -/area/mine/living_quarters) -"aJ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"aK" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"aN" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"aW" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"aX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock{ - name = "Labor Camp External Access" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"bg" = ( -/turf/closed/wall, -/area/mine/eva) -"bn" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"bX" = ( -/obj/machinery/door/window/southleft, -/obj/machinery/shower{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"cd" = ( -/turf/closed/wall, -/area/mine/laborcamp) -"cf" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"ci" = ( -/obj/machinery/door/airlock{ - name = "Vending" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"cn" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm3"; - name = "Room 3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"cr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"cz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "labor"; - name = "labor camp blast door" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"cA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/eva) -"cD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"cX" = ( -/obj/structure/statue{ - desc = "A lifelike statue of a horrifying monster."; - dir = 8; - icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; - icon_state = "goliath"; - name = "goliath" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"dk" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"dL" = ( -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dP" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/computer/shuttle/mining{ - req_access = null - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dU" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"dZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Mining Station Bridge" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eh" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"es" = ( -/turf/open/floor/plasteel, -/area/mine/production) -"ez" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "labor"; - name = "Labor Camp Lockdown"; - pixel_y = 28; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"eL" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/production) -"eP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Mining Station Bridge" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eS" = ( -/obj/structure/table, -/obj/item/gps/mining, -/obj/item/gps/mining, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fm" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"fs" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"fx" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"fA" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"fN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"fO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Shuttle Docking Foyer"; - dir = 8; - network = list("mine") - }, -/obj/machinery/newscaster{ - pixel_x = 30; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/mine/production) -"fU" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"gk" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/mine/production) -"gn" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"gs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"gP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Communications"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/maintenance) -"gT" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/camera{ - c_tag = "Labor Camp Medical"; - dir = 8; - network = list("labor") - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"hb" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"hf" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"hm" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"hy" = ( -/obj/machinery/camera{ - c_tag = "Labor Camp External"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"hH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/displaycase, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"hP" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 4; - piping_layer = 3 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/living_quarters) -"hQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 1; - piping_layer = 3 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/laborcamp/security) -"ia" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ig" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"ik" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"iv" = ( -/obj/machinery/camera{ - c_tag = "Dormitories"; - dir = 4; - network = list("mine") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"iG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"iQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"jf" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"jn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/eva) -"jD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/table, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"jJ" = ( -/turf/closed/mineral/random/labormineral/volcanic, -/area/lavaland/surface/outdoors/explored) -"kb" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall, -/area/mine/laborcamp) -"kj" = ( -/obj/machinery/conveyor{ - id = "gulag" - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"kz" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"kB" = ( -/obj/machinery/computer/security/labor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"kE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0; - req_access_txt = "54" - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"kF" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"kH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"kP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"kR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"kS" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"lj" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/mine/eva) -"lr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"lu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"ly" = ( -/obj/machinery/camera{ - c_tag = "Labor Camp Central"; - network = list("labor") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"lI" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/mine/production) -"lS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"me" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"mg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"mi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"mp" = ( -/obj/docking_port/stationary{ - area_type = /area/lavaland/surface/outdoors; - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_away"; - name = "labor camp"; - width = 9 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"mv" = ( -/obj/machinery/door/window/southright, -/obj/machinery/shower{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"mw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"my" = ( -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"mI" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/mine/production) -"mL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"mN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"nm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"nx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"ny" = ( -/obj/machinery/computer/prisoner, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"nH" = ( -/obj/structure/displaycase, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"nI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"nJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"nK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"nL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"nN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"nR" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/mine/production) -"nX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"oo" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/production) -"ou" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/mine/production) -"ow" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"oy" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"oG" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"oM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"oY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"pi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"pr" = ( -/obj/structure/table, -/obj/item/pickaxe, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"pu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"pK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"qb" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/eva) -"qc" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"qg" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"qh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"qm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate/secure/loot, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"qx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"qH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"qM" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"qR" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"qS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"qZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"re" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/labor_camp_security, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"rf" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"rB" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 1; - output_dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/mine/production) -"rK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"rU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"sa" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"se" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/living_quarters) -"si" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"sj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"sm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"sx" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"sz" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/mine/production) -"sE" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"sP" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"sR" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"sU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"sW" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"td" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/laborcamp) -"tk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"tr" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"tK" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"tY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"uG" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"uI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"uJ" = ( -/obj/item/bikehorn{ - color = "#000"; - desc = "A horn off of a bicycle. This one has been charred to hell and back, yet somehow it still honks."; - name = "charred bike horn" - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"uR" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"va" = ( -/obj/machinery/button/door{ - id = "miningbathroom"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"vo" = ( -/obj/machinery/flasher{ - id = "labor" - }, -/turf/closed/wall, -/area/mine/laborcamp) -"vy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Labor Camp External Access" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"vA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"vE" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"vJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"vM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"wd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"wg" = ( -/obj/structure/closet/crate, -/obj/item/dice/d4, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"wj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/mine/production) -"wt" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"wz" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors) -"wB" = ( -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"wC" = ( -/turf/open/floor/circuit, -/area/mine/maintenance) -"wE" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"wV" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors/explored) -"wX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"xd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"xh" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"xv" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/mine/eva) -"xA" = ( -/obj/machinery/camera{ - c_tag = "Communications Relay"; - dir = 8; - network = list("mine") - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"xH" = ( -/obj/structure/table, -/obj/item/cigbutt, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"xP" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"xS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"yt" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"yF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/mine/production) -"yQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"yR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/mine/production) -"yT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"zh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"zk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"zo" = ( -/obj/structure/table, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"zx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"zy" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"zI" = ( -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"zN" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"zY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"zZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ab" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"Ad" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"Ag" = ( -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ah" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Aj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Al" = ( -/turf/closed/wall/r_wall, -/area/mine/maintenance) -"At" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/production) -"AH" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"AJ" = ( -/obj/machinery/door/airlock/glass{ - name = "Break Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"AQ" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"AS" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/mine/production) -"AZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Bc" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"Be" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/eva) -"Bh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Bo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/mine/living_quarters) -"BD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"BO" = ( -/obj/machinery/door/airlock{ - name = "Labor Camp Storage" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Ca" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Station Port Wing APC"; - pixel_x = 1; - pixel_y = 23 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Cd" = ( -/turf/closed/wall, -/area/mine/production) -"Cg" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Cj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Cl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Cm" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Cw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"Cy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Security Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"CA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"CH" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/flashlight, -/obj/item/clothing/glasses/meson, -/obj/item/mining_scanner, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"CJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"CR" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"CV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/mine/eva) -"Dd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Dr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Dv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"DN" = ( -/obj/machinery/computer/shuttle/mining/common{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ed" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"Eg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Ev" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "miningdorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"Ex" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"EB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"EH" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Fx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"FC" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"FE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ga" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Gt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"GM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"GN" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Mining Station Starboard Wing APC"; - pixel_x = -25; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Hd" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/eva) -"Hg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Hh" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "gulag" - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"Hk" = ( -/obj/docking_port/stationary{ - area_type = /area/lavaland/surface/outdoors; - dir = 8; - dwidth = 3; - height = 7; - id = "lavaland_common_away"; - name = "Mining base public dock"; - width = 7 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"Hm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Lavaland Shuttle Airlock" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ho" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Hq" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/flashlight, -/obj/item/pickaxe, -/obj/item/clothing/glasses/meson, -/obj/item/mining_scanner, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Hx" = ( -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"HE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 10 - }, -/obj/machinery/bluespace_beacon, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"HO" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Prisoner Airlock" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"HS" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "gulag" - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"HU" = ( -/obj/machinery/computer/shuttle/labor/one_way{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"HY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"If" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ii" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ik" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/eva) -"ID" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"IG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"II" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"IK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/machinery/recharger, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"IS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"IY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"Jl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Jo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Jr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"JH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"JJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"JP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"JV" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/mine/production) -"JW" = ( -/obj/machinery/power/apc{ - name = "Mining EVA APC"; - pixel_x = 1; - pixel_y = -23 - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"JY" = ( -/turf/closed/mineral/random/labormineral/volcanic, -/area/lavaland/surface/outdoors) -"Kb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Kk" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Kl" = ( -/turf/open/floor/plasteel, -/area/mine/eva) -"Kt" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"Kx" = ( +"aa" = ( /obj/machinery/camera{ c_tag = "EVA"; dir = 4; @@ -2342,66 +25,276 @@ }, /turf/open/floor/plasteel, /area/mine/eva) -"KG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" +"ab" = ( +/turf/template_noop, +/area/template_noop) +"ac" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"ad" = ( +/obj/machinery/light_switch{ + pixel_x = 27 }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/mine/production) -"KO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"KP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0; - req_access_txt = "54" - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"KQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Shuttle Airlock"; - opacity = 0 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"KS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, -/turf/open/floor/plasteel, -/area/mine/production) -"KU" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 4 }, /turf/open/floor/plasteel, /area/mine/eva) -"KV" = ( +"ae" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/computer/shuttle/mining{ + req_access = null + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"af" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/eva) +"ag" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/mine/eva) +"ah" = ( +/obj/machinery/telecomms/relay/preset/mining, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"ai" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"aj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, +/area/mine/eva) +"ak" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"al" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/gps/mining, +/obj/item/gps/mining, +/obj/item/gps/mining, +/obj/item/gps/mining, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"am" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 10 + }, +/obj/machinery/bluespace_beacon, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"an" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"ao" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/eva) +"ap" = ( +/obj/structure/closet/crate, +/obj/item/dice/d4, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"aq" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"ar" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, /area/mine/living_quarters) -"Lb" = ( +"as" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"at" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"au" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station EVA"; + req_access_txt = "54" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"av" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aw" = ( +/turf/closed/wall, +/area/mine/production) +"ax" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ay" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"az" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, +/turf/open/floor/plasteel, +/area/mine/eva) +"aA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aB" = ( +/turf/open/floor/plasteel, +/area/mine/eva) +"aC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aD" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/eva) +"aE" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aF" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/eva) +"aG" = ( /obj/docking_port/stationary{ area_type = /area/lavaland/surface/outdoors; dir = 8; @@ -2413,78 +306,436 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"Lc" = ( +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/mine/production) +"aI" = ( +/obj/structure/sign/warning/docking, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/production) +"aJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"aK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"aL" = ( +/obj/machinery/power/apc{ + name = "Mining EVA APC"; + pixel_x = 1; + pixel_y = -23 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aM" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/mine/eva) +"aN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/production) +"aO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aP" = ( +/turf/template_noop, +/area/space) +"aQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"aR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0; + req_access_txt = "54" + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aT" = ( +/obj/docking_port/stationary{ + area_type = /area/lavaland/surface/outdoors; + dir = 8; + dwidth = 3; + height = 7; + id = "lavaland_common_away"; + name = "Mining base public dock"; + width = 7 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"aU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"aW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"aX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0; + req_access_txt = "54" + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"aY" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"aZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ba" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mining Station Starboard Wing APC"; + pixel_x = -25; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bc" = ( +/obj/machinery/mineral/mint, +/turf/open/floor/plasteel, +/area/mine/production) +"bd" = ( +/obj/structure/closet/crate, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/mine/production) +"be" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/mine/production) +"bf" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/mine/eva) +"bg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bi" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bj" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bk" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bl" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bm" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/production) +"bn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/mine/production) +"bo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Shuttle Docking Foyer"; + dir = 8; + network = list("mine") + }, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/mine/production) +"bp" = ( +/obj/machinery/door/airlock{ + name = "Closet" + }, +/turf/open/floor/plating, +/area/mine/production) +"bq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/production) +"br" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining Shuttle Airlock"; + opacity = 0 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/mine/production) +"bt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining Shuttle Airlock"; + opacity = 0 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bv" = ( /obj/structure/cable{ icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/mine/production) -"Le" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Lj" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/living_quarters) -"Lm" = ( -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"LC" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, +"bw" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"LG" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"LL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Labor Camp Security APC"; - pixel_y = 23 - }, /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"LZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/production) +"bx" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/eva) +"by" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/mine/production) +"bz" = ( +/turf/closed/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors) +"bA" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"bB" = ( +/turf/open/floor/circuit, +/area/mine/maintenance) +"bC" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Communications APC"; + pixel_x = 1; + pixel_y = 23 + }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, -/turf/open/floor/plasteel, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"bD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, /area/mine/living_quarters) -"Mc" = ( +"bE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/machinery/door/airlock/mining/glass{ @@ -2503,33 +754,7 @@ }, /turf/open/floor/plasteel, /area/mine/production) -"Mh" = ( -/obj/structure/table, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"Mj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"Mk" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "gulag" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Mn" = ( -/turf/closed/wall/r_wall, -/area/mine/laborcamp/security) -"Ms" = ( +"bF" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -2539,21 +764,170 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, /turf/open/floor/plasteel/white, /area/mine/living_quarters) -"Mw" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 +"bG" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"bH" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/production) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/mine/production) +"bJ" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/mine/production) +"bK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/circuit, +/area/mine/maintenance) +"bM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, +/obj/effect/turf_decal/tile/purple{ dir = 1 }, /turf/open/floor/plasteel, /area/mine/production) -"MD" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors/unexplored) -"ME" = ( +"bN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bP" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/mine/production) +"bQ" = ( +/turf/closed/wall, +/area/mine/living_quarters) +"bR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bS" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Mining Station Bridge" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bV" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bW" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, /obj/structure/cable{ @@ -2561,7 +935,39 @@ }, /turf/open/floor/plasteel, /area/mine/production) -"MF" = ( +"bX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/production) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ca" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"cb" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/blood, /obj/item/reagent_containers/blood{ @@ -2592,246 +998,274 @@ }, /turf/open/floor/plasteel/white, /area/mine/living_quarters) -"MG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"cc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ce" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/mineral/equipment_vendor, +/turf/open/floor/plasteel, +/area/mine/production) +"cf" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/production) +"cg" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/mine/production) +"ch" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ci" = ( +/obj/machinery/mineral/equipment_vendor, /obj/effect/turf_decal/tile/brown{ dir = 1 }, +/obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /turf/open/floor/plasteel, +/area/mine/production) +"cj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ck" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, /area/mine/living_quarters) -"MH" = ( +"cl" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate/secure/loot, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"cm" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/cable{ icon_state = "2-8" }, /turf/open/floor/plating, /area/mine/living_quarters) -"MM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/gulag_fridge, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"MV" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Nf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/mine/production) -"Nk" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"NB" = ( +"cn" = ( /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/button/door{ - id = "miningdorm3"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"NH" = ( -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"NI" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/production) -"Oh" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Oj" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/mine/production) -"Op" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Prisoner Airlock" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Os" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ov" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"OI" = ( -/obj/machinery/mineral/mint, -/turf/open/floor/plasteel, -/area/mine/production) -"ON" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Pp" = ( -/obj/machinery/camera{ - c_tag = "Public Shuttle Lobby"; - network = list("mine") - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/gps/mining, -/obj/item/gps/mining, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Pq" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"PN" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"PO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/mine/production) -"PY" = ( +"co" = ( /obj/machinery/shower{ dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"Qi" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Qr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"Qx" = ( -/obj/structure/chair{ +/obj/effect/turf_decal/tile/purple{ dir = 8 }, /turf/open/floor/plasteel, -/area/mine/laborcamp) -"Qy" = ( +/area/mine/production) +"cp" = ( +/turf/open/floor/plating, +/area/mine/living_quarters) +"cq" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"cs" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/circuit, +/area/mine/maintenance) +"ct" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/production) +"cv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/mine/living_quarters) +"cx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/table, +/obj/item/paper/fluff/stations/lavaland/orm_notice, +/turf/open/floor/plasteel, +/area/mine/production) +"cC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"cD" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/mine/production) +"cE" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/mine/production) +"cJ" = ( +/obj/machinery/camera{ + c_tag = "Communications Relay"; + dir = 8; + network = list("mine") + }, +/turf/open/floor/circuit, +/area/mine/maintenance) +"cM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cN" = ( +/turf/open/floor/plasteel, +/area/mine/production) +"cP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"cQ" = ( +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"cX" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"cY" = ( +/turf/closed/wall/r_wall, +/area/mine/maintenance) +"cZ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ + dir = 4; + piping_layer = 3 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"da" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"de" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, /obj/structure/cable{ @@ -2839,102 +1273,112 @@ }, /turf/open/floor/plasteel, /area/mine/living_quarters) -"QD" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, +"dg" = ( /obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/plasteel, +/area/mine/production) +"di" = ( +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/living_quarters) +"dk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 4 }, -/turf/open/floor/plasteel, -/area/mine/eva) -"QL" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Rf" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 1; - output_dir = 2 - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"Ro" = ( +/area/mine/living_quarters) +"dl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/machinery/door/airlock/highsecurity{ - name = "Labor Camp Monitoring"; - req_access_txt = "2"; - security_level = 6 +/obj/effect/turf_decal/tile/brown{ + dir = 1 }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/mine/laborcamp) -"Ru" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, /area/mine/living_quarters) -"Rv" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"RC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"RF" = ( -/turf/closed/wall, -/area/mine/laborcamp/security) -"RH" = ( -/obj/machinery/camera{ - c_tag = "Crew Area"; - dir = 1; - network = list("mine") - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ +"dn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"dq" = ( +/obj/machinery/camera{ + c_tag = "Crew Area Hallway"; + network = list("mine") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, /turf/open/floor/plasteel, /area/mine/living_quarters) -"RI" = ( -/obj/structure/closet/crate, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/bot, +"dr" = ( +/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel, -/area/mine/production) -"RP" = ( +/area/mine/living_quarters) +"dt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"du" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/mine/living_quarters) -"Sd" = ( +"dv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dy" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -2946,144 +1390,170 @@ }, /turf/open/floor/plasteel, /area/mine/living_quarters) -"Sj" = ( +"dD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/mine/living_quarters) -"Sp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"Sq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Ss" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "mining_internal" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"SO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ +"dK" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ dir = 8 }, -/turf/open/floor/plasteel/freezer, +/turf/open/floor/plating, /area/mine/living_quarters) -"SW" = ( +"dL" = ( +/turf/closed/mineral/random/volcanic, +/area/lavaland/surface/outdoors) +"dM" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/mine/production) +"dN" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/living_quarters) +"dO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dQ" = ( /obj/effect/turf_decal/loading_area{ dir = 4 }, /turf/open/floor/plasteel, /area/mine/production) -"SY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, -/turf/open/floor/plasteel, -/area/mine/eva) -"Te" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Tm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +"dR" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Shuttle Airlock"; - opacity = 0 - }, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/mine/production) -"TC" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 +"dS" = ( +/obj/machinery/light_switch{ + pixel_y = -25 }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"TG" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/mineral/equipment_vendor, -/turf/open/floor/plasteel, -/area/mine/production) -"TI" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"TJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"Ue" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, /turf/open/floor/circuit, /area/mine/maintenance) -"Uk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/effect/turf_decal/tile/red{ +"dT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dU" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/tile/brown{ dir = 1 }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "Powered by the tears and sweat of laborers."; - name = "Prison Ofitser" +/obj/effect/turf_decal/tile/brown{ + dir = 4 }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dV" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"dY" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ea" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"eb" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/living_quarters) +"ec" = ( +/obj/machinery/atmospherics/components/binary/pump/on, /obj/structure/cable{ icon_state = "1-2" }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"ed" = ( +/obj/structure/chair{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Un" = ( +/area/mine/living_quarters) +"ee" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"ef" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eg" = ( /obj/machinery/light/small{ dir = 4 }, @@ -3099,156 +1569,14 @@ }, /turf/open/floor/carpet, /area/mine/living_quarters) -"Uz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Communications APC"; - pixel_x = 1; - pixel_y = 23 +"ei" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"UE" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"UI" = ( -/obj/machinery/camera{ - c_tag = "Crew Area Hallway East"; - network = list("mine") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"UJ" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Vj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/structure/table, -/obj/item/paper/fluff/stations/lavaland/orm_notice, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/mine/production) -"Vo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"Vs" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/production) -"VN" = ( -/turf/closed/wall, -/area/mine/living_quarters) -"VP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"VR" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Security Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"VT" = ( -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"VY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"Wf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Wt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Ww" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/mine/production) -"WL" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"WN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"WY" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm1"; - name = "Room 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Xo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"Xr" = ( +"el" = ( /obj/machinery/camera{ c_tag = "Processing Area Room"; dir = 8; @@ -3265,11 +1593,98 @@ }, /turf/open/floor/plasteel, /area/mine/production) -"XG" = ( -/obj/effect/turf_decal/bot, +"en" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eo" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/mine/production) +"ep" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Communications"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/maintenance) +"eq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, /turf/open/floor/plasteel, /area/mine/production) -"XN" = ( +"er" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"es" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"et" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/living_quarters) +"ev" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/production) +"ex" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eC" = ( +/obj/machinery/door/airlock{ + id_tag = "miningdorm3"; + name = "Room 3" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3277,8 +1692,134 @@ dir = 4 }, /turf/open/floor/plasteel, +/area/mine/living_quarters) +"eF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"eI" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/living_quarters) +"eJ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Station Port Wing APC"; + pixel_x = 1; + pixel_y = 23 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/mine/production) -"XP" = ( +"eO" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eZ" = ( +/obj/machinery/camera{ + c_tag = "Crew Area Hallway East"; + network = list("mine") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fb" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"fd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"fC" = ( +/obj/machinery/door/airlock{ + id_tag = "miningdorm2"; + name = "Room 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fD" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -3287,63 +1828,366 @@ }, /turf/open/floor/plasteel, /area/mine/living_quarters) -"XU" = ( -/obj/machinery/power/smes{ - charge = 5e+006 +"gJ" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/newscaster{ + pixel_y = 32 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/plasteel, /area/mine/living_quarters) -"XX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, +"hE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, /area/mine/living_quarters) -"Ya" = ( -/turf/closed/wall/r_wall, -/area/mine/laborcamp) -"Ye" = ( -/turf/closed/mineral/random/high_chance/volcanic, -/area/lavaland/surface/outdoors) -"Yf" = ( -/obj/machinery/light/small{ +"ib" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"jx" = ( +/obj/machinery/door/airlock{ + id_tag = "miningdorm1"; + name = "Room 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 4 }, /turf/open/floor/plasteel, -/area/mine/laborcamp) -"Yg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Labor Camp Security Office"; - dir = 1; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Yi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, -/obj/machinery/door/airlock/glass, +/area/mine/living_quarters) +"jz" = ( +/obj/structure/table, +/obj/item/cigbutt, /turf/open/floor/plasteel, /area/mine/living_quarters) -"Yp" = ( +"jQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"mh" = ( +/obj/machinery/door/airlock/glass{ + name = "Break Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"np" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"nx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"nP" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"pI" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"pN" = ( +/obj/machinery/button/door{ + id = "miningbathroom"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"qw" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"rb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"rp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"rT" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"se" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "miningdorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"st" = ( +/obj/machinery/door/window/southleft, +/obj/machinery/shower{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"sC" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"sP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"vp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "miningdorm3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"vr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, /obj/effect/turf_decal/tile/brown{ dir = 1 }, /turf/open/floor/plasteel, -/area/mine/production) -"Yr" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/loading_area{ - dir = 4 +/area/mine/living_quarters) +"vx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" }, /turf/open/floor/plasteel, -/area/mine/laborcamp) -"Yy" = ( +/area/mine/living_quarters) +"vH" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"wd" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"wQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/displaycase, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"xv" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"xK" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/production) +"zE" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"Az" = ( +/obj/structure/table, +/obj/item/gps/mining, +/obj/item/gps/mining, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"BT" = ( +/obj/structure/displaycase, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"BZ" = ( +/obj/machinery/door/window/southright, +/obj/machinery/shower{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"Cu" = ( +/turf/closed/wall, +/area/mine/eva) +"Cv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"CJ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"CO" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "mining_internal" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/production) +"De" = ( /obj/machinery/door/airlock{ id_tag = "miningbathroom"; name = "Restroom" @@ -3356,7 +2200,219 @@ }, /turf/open/floor/plasteel/freezer, /area/mine/living_quarters) -"YH" = ( +"Dg" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Dj" = ( +/obj/machinery/camera{ + c_tag = "Dormitories"; + dir = 4; + network = list("mine") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Em" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/mine/production) +"Fp" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Fu" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Lavaland Shuttle Airlock" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"FI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"Hb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Lavaland Shuttle Airlock" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"He" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Mining Station Bridge" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Iq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Iz" = ( +/obj/machinery/camera{ + c_tag = "Crew Area"; + dir = 1; + network = list("mine") + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Ji" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Kd" = ( +/obj/structure/statue{ + desc = "A lifelike statue of a horrifying monster."; + dir = 8; + icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; + icon_state = "goliath"; + name = "goliath" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"LK" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"Mi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/machinery/door/airlock/glass, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Nn" = ( +/obj/structure/table, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"Oe" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/mine/production) +"Ou" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Qh" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"Qn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"QR" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Rq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/closed/wall, +/area/mine/living_quarters) +"Rt" = ( +/obj/machinery/camera{ + c_tag = "Public Shuttle Lobby"; + network = list("mine") + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table, +/obj/item/gps/mining, +/obj/item/gps/mining, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Ru" = ( +/obj/machinery/computer/shuttle/mining/common{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"TO" = ( /obj/machinery/door/airlock{ name = "Restroom" }, @@ -3368,4294 +2424,2015 @@ }, /turf/open/floor/plasteel/freezer, /area/mine/living_quarters) -"YM" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"YV" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, +"Uj" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Zp" = ( -/obj/machinery/camera{ - c_tag = "Crew Area Hallway"; - network = list("mine") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Zw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ dir = 4 }, -/obj/machinery/door/airlock/external{ - name = "Lavaland Shuttle Airlock" +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"WS" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 }, /turf/open/floor/plasteel, /area/mine/living_quarters) -"ZF" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +"Xa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Xi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Xm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Yg" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"ZK" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Labor Camp APC"; - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Za" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "1-4" }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"ZN" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall, -/area/mine/production) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Zu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Zy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) (1,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ak +ak +ak +ak +ac +ac +ac +ac +ac +ac "} (2,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac +ac "} (3,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac "} (4,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -wz -wz -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak "} (5,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -wz -wz -wz -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac "} (6,1,1) = {" -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -Lm -wz -my -Lm -VT -VT -VT -VT -VT -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac "} (7,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -zI -zI -Lm -my -Lm -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT +aP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac "} (8,1,1) = {" -VT -Lm -VT -VT -VT -Lm -VT -VT -VT -zI -zI -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac "} (9,1,1) = {" -Lm -Lm -VT -Lm -Lm -VT -VT -VT -VT -zI -zI -VT -VT -zI -zI -VT -VT -zI -VT -Lm -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ak +ak +ab +dL +ak +ak +ak +ak +ak +ak +aT +ak +ak +ak +ak +ac +ac "} (10,1,1) = {" -VT -VT -VT -Lm -Lm -VT -VT -VT -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +bA +ac +ac +ac +ac +dL +ak +ak +ak +ak +ak +eu +Hb +eu +ak +ak +ak +ac +ac "} (11,1,1) = {" -VT -VT -VT -VT -VT -VT -zI -zI -my -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -zI -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -Lm -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ak +ak +ak +ak +ak +ak +ak +eu +di +eu +ak +ak +ac +ac +ac "} (12,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -zI -zI -zI -my -zI -zI -zI -zI -zI -my -zI -zI -my -zI -zI -zI -VT -zI -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +bA +bA +ac +ak +cZ +ak +bQ +bQ +bQ +Rq +bQ +eu +Fu +eu +ac +ac +ac +ab +ab "} (13,1,1) = {" -VT -VT -VT -VT -VT -VT -Lm -VT -zI -zI -zI -my -my -my -my -my -my -my -my -my -zI -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +cY +cY +cY +cY +eI +dj +dN +bQ +dU +ed +Ru +ed +et +vr +eu +ac +ab +ab +ab +ab "} (14,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -zI -zI -zI -zI -my -my -my -my -my -my -my -my -my -zI -zI -Lm -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -VT -Lm -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +cY +bB +bB +cY +dr +Zu +jz +bQ +dV +di +di +di +di +di +eu +ac +ab +ab +ab +ab "} (15,1,1) = {" -VT -VT -Lm -VT -VT -VT -VT -zI -zI -zI -zI -my -my -my -my -my -my -my -my -my -zI -zI -zI -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +cY +bC +bL +cY +cC +dk +ax +bQ +dW +di +en +en +di +Kd +eu +ac +ab +ab +ab +ab "} (16,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -zI -zI -zI -my -my -my -my -my -my -my -my -my -zI -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ak +cY +ah +am +ep +dl +Za +Cv +Mi +dX +ef +en +en +di +di +eu +ac +ab +ab +ab +ab "} (17,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -zI -zI -my -my -my -my -my -my -my -mp -my -my -my -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -Lm -Lm -VT -VT -Lm -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ak +bz +cY +cP +dS +cY +ca +dD +et +bQ +dY +Xm +di +di +di +nP +bQ +ac +ab +ab +ab +ab "} (18,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -cd -cd -cd -cd -cd -Cy -cd -cd -cd -HO -cd -RF -RF -RF -VT -VT -VT -VT -Lm -wz -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ac +ac +ak +dL +cY +cs +cJ +cY +dq +Xi +nP +bQ +Rt +xv +Az +QR +BT +wQ +bQ +dL +ak +ab +ab +ab "} (19,1,1) = {" -JY -Lm -VT -VT -VT -VT -VT -Lm -cd -Te -CR -xh -cd -eE -cd -HU -cd -Jr -cd -fA -fx -RF -VT -uJ -VT -Lm -Lm -wz -wz -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ac +ac +ak +ak +cY +cY +cY +cY +eJ +dD +di +bQ +bQ +bQ +bQ +bQ +bQ +bQ +bQ +bQ +bQ +ak +ak +ab "} (20,1,1) = {" -JY -JY -Lm -VT -VT -VT -Lm -Lm -cd -Qx -NH -Yf -cd -VR -cd -at -cd -Op -cd -hb -dU -RF -VT -VT -VT -VT -Lm -wz -wz -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ak +bQ +bD +cb +bQ +di +du +dO +bQ +fb +Nn +bQ +fb +Nn +bQ +fb +Nn +bQ +ak +ab +ab "} (21,1,1) = {" -JY -JY -JY -JY -zx -kP -td -cd -cd -cd -ci -cd -cd -cz -cd -Ga -NH -NH -Ya -Mn -BD -Mn -Dv -Mn -wV -VT -VT -VT -wz -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ak +eu +bF +cr +ar +dt +dD +di +bQ +fB +eg +bQ +fB +se +bQ +fB +vp +bQ +ab +ab +ab "} (22,1,1) = {" -JY -JY -JY -JY -Cw -wB -Mh -cd -AH -NH -NH -NH -NH -NH -NH -kR -NH -NH -Ya -jD -EB -MM -LC -Mn -wV -wV -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +ak +eu +eF +dT +er +dX +de +di +bQ +jx +bQ +bQ +fC +bQ +bQ +eC +bQ +bQ +ab +ab +ab "} (23,1,1) = {" -JY -JY -JY -JY -cd -eh -aN -ow -Cl -Cl -Cl -gn -vo -ly -vA -Hg -gs -gs -Ro -Uk -si -fN -TC -Mn -wV -my -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ac +ac +dL +ak +bQ +cQ +ea +ar +ca +dD +di +et +fd +Dj +et +fd +Uj +et +fd +ca +eu +ab +ab +ab "} (24,1,1) = {" -JY -JY -JY -JY -cd -gT -Xo -cd -fs -NH -Wt -xd -vA -Fx -Yf -uR -NH -NH -Ya -nm -Hx -mL -Yg -Mn -zI -VT -VT -VT -VT -wz -Lm -Lm -Lm -Lm -Lm -Lm -Hk -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +dL +bQ +bQ +bQ +bQ +bQ +eK +vx +fy +fy +fD +fy +fy +fD +rb +fy +Ou +dO +eu +ak +ab +ab "} (25,1,1) = {" -JY -JY -JY -JY -cd -cd -cd -cd -cd -NH -NH -PY -NH -Mk -cd -Hh -Ya -Ya -Ya -LL -Hx -xS -Gt -Dv -my -VT -VT -VT -VT -wz -Lm -Lm -Lm -Lm -Lm -KV -Zw -KV -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +bQ +ck +cX +eb +bQ +dv +du +dO +bQ +bQ +ar +ar +bQ +bQ +bQ +TO +bQ +bQ +dL +ak +ak "} (26,1,1) = {" -JY -JY -JY -JY -cd -CH -CH -CH -cd -NH -Yr -cd -cd -kb -cd -Hh -Ya -ZK -Ho -oY -JJ -nJ -Ah -Qr -hQ -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -KV -Ag -KV -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +bQ +cl +cp +cp +bQ +dt +dD +nP +bQ +wd +qw +Xa +Dg +bQ +st +sP +bQ +dL +bz +dL +dL "} (27,1,1) = {" -JY -JY -JY -JY -cd -Hq -NH -NH -BO -NH -ia -Rf -kj -sa -kj -HS -Ya -wt -RF -WL -Hx -IG -UJ -yQ -my -my -VT -Lm -hP -Lm -VN -VN -VN -XX -VN -KV -Hm -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ab +ab +ac +ac +bQ +cm +da +ec +es +eL +dx +ax +ar +qw +qw +Zy +qw +bQ +BZ +ib +bQ +ak +dL +dL +ak "} (28,1,1) = {" -JY -JY -JY -JY -cd -cd -sW -Le -cd -vy -cd -cd -cd -cd -cd -cd -Ya -Ya -Mn -kB -Oh -QL -sR -Al -Al -Al -Al -LG -pu -bn -VN -zy -If -DN -If -FE -qZ -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ab +ac +ac +ac +ak +bQ +cp +dn +ee +bQ +eZ +dy +Yg +mh +pI +hE +CJ +Iz +bQ +bQ +De +bQ +ac +ab +ab +ab "} (29,1,1) = {" -JY -JY -JY -JY -JY -cd -cd -cd -cd -NH -cd -Ab -tK -tK -my -my -my -zI -Dv -ny -ig -IK -re -Al -wC -wC -Al -hf -vM -xH -VN -Ru -Ag -Ag -Ag -Ag -Ag -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ab +ac +ac +ac +ac +ak +bQ +cv +dK +dK +bQ +fA +Xi +et +ar +qw +qw +Iq +Fp +bQ +LK +pN +bQ +ac +ab +ab +ab "} (30,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -cd -Jr -cd -Ab -my -my -my -my -my -zI -Sp -zk -nL -nX -nx -Al -Uz -Ue -Al -qx -sm -aW -VN -Dr -Ag -uG -uG -Ag -cX -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ac +ac +ac +ac +ac +ac +bQ +bQ +bQ +bQ +bQ +di +dD +di +bQ +gJ +qw +vH +qw +bQ +FI +jQ +bQ +ac +ab +ab +ab "} (31,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -cd -aX -cd -Ab -my -my -my -my -my -VT -VT -VT -VT -VT -Lm -Al -ZF -HE -gP -ON -tk -zY -Yi -MG -KO -uG -uG -Ag -Ag -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +eu +di +dD +di +bQ +WS +sC +rT +Qn +bQ +bQ +bQ +bQ +ac +ab +ab +ab "} (32,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -my -my -hy -my -my -my -my -my -VT -VT -VT -VT -VT -Lm -Ye -Al -WN -Ad -Al -cD -JP -FE -VN -YV -RP -Ag -Ag -Ag -oy -VN -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ab +ac +ac +ak +ac +ac +ac +ac +ak +ak +ac +eu +ax +rp +Ji +bQ +eu +eu +eu +eu +bQ +dL +dL +dL +ac +ab +ab +ab "} (33,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -my -my -my -my -my -my -my -my -my -VT -VT -VT -VT -Lm -wz -Al -FC -xA -Al -Zp -Sj -oy -VN -Pp -sx -eS -Cg -nH -hH -VN -wz -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ab +ac +ac +ac +ak +ac +ak +ac +ac +ak +ak +ac +eu +eu +He +eu +eu +ak +ak +ak +ak +dL +dL +dL +ac +ac +ab +ab +ab "} (34,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -my -my -my -my -my -my -my -VT -VT -VT -VT -Lm -Lm -Al -Al -Al -Al -Ov -JP -Ag -VN -VN -VN -VN -VN -VN -VN -VN -VN -VN -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ab +ac +ac +ak +ak +ak +ak +ak +ak +ak +ac +ac +ac +ac +eu +aJ +eu +ak +ak +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (35,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -my -my -my -my -my -my -my -VT -VT -VT -VT -VT -Lm -VN -HY -MF -VN -Ag -JH -cr -VN -TJ -zo -VN -TJ -zo -VN -TJ -zo -VN -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac +ac +eu +aK +eu +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (36,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -my -my -my -my -my -my -my -my -VT -VT -VT -VT -Lm -KV -Ms -rU -se -EH -JP -Ag -VN -IY -Un -VN -IY -Ev -VN -IY -NB -VN -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac +ac +eu +aK +eu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (37,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -my -my -Ab -JY -my -jJ -VT -VT -VT -VT -Lm -KV -IS -lr -TI -MG -Qy -Ag -VN -WY -VN -VN -AQ -VN -VN -cn -VN -VN -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac +eu +aK +eu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (38,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -jJ -jJ -VT -VT -VT -wz -Ye -VN -kS -jf -se -cD -JP -Ag -FE -Os -iv -FE -Os -Pq -FE -Os -cD -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac +eM +bR +eM +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (39,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -VT -VT -VT -VT -wz -VN -VN -VN -VN -VN -Ca -ik -oM -oM -XP -oM -oM -XP -AZ -oM -CA -cr -KV -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ak +ak +ak +ak +aG +ak +ak +ak +ak +ac +ac +ac +eM +bR +eM +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (40,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -VT -VT -VT -VT -VT -VT -VT -VN -XU -UE -Lj -VN -mg -JH -cr -VN -VN -se -se -VN -VN -VN -YH -VN -VN -wz -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ac +ak +ak +aI +br +eM +ak +ak +ac +ac +ac +ak +eM +bR +eM +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (41,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -VT -VT -VT -VT -VT -VT -VT -VT -VN -qm -aG -aG -VN -EH -JP -oy -VN -Cm -hm -zZ -fU -VN -bX -yT -VN -wz -Ye -wz -wz -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ac +ac +ak +eM +cN +eM +ak +ac +ac +ac +ac +ak +eM +bT +eM +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (42,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -VT -VT -VT -VT -VT -VT -VT -VT -VT -VN -MH -ID -dL -uI -Dd -nI -aW -se -hm -hm -Nk -hm -VN -mv -nN -VN -Lm -wz -wz -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ac +ac +eM +eM +bt +eM +eM +ak +ac +ac +ak +eM +eM +bU +eM +eM +ak +ak +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (43,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -VT -VT -VT -VT -VT -VT -Lm -Lm -VT -Lm -VN -aG -zh -pi -VN -UI -Sd -kF -AJ -sU -tr -qM -RH -VN -VN -Yy -VN -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ac +aw +eM +cM +bu +bk +eM +aw +aw +aw +aw +bv +cM +bV +bk +eM +aw +ak +ak +ac +ac +ac +ac +ac +ac +ab +ab +ab "} (44,1,1) = {" -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -JY -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -VN -Bo -aK -aK -VN -LZ -Sj -FE -se -hm -hm -rK -MV -VN -Mj -va -VN -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ak +aw +ae +ai +cN +aQ +cM +bS +ba +be +bn +bw +np +bR +cN +ce +aw +ak +ak +ak +ac +ac +ac +ac +ac +ab +ab +ab "} (45,1,1) = {" -JY -JY -JY -JY -JY -JY -Lm -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VN -VN -VN -VN -VN -Ag -JP -Ag -VN -wE -hm -rf -hm -VN -qg -SO -VN -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ac +ac +ak +eM +ap +as +aH +aV +aW +aW +bb +bg +aW +bE +bK +bW +cd +eO +aw +ak +ak +ak +ak +ac +ac +ac +ac +ab +ab +ab "} (46,1,1) = {" -JY -JY -JY -JY -JY -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -KV -Ag -JP -Ag -VN -sP -Qi -Ii -qh -VN -VN -VN -VN -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT +ac +ak +ak +eM +aN +at +np +nx +aY +aZ +np +bh +cN +bH +bM +bX +cN +zE +aw +aw +aw +aw +cu +ak +ak +ac +ac +ab +ab +ab "} (47,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -KV -aW -kH -kz -VN -KV -KV -KV -KV -VN -wz -wz -wz -VT -Lm -VT -VT -Lm -Lm -VT -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT +ak +Cu +Cu +Cu +bx +au +bx +Cu +bp +aw +ci +bl +bo +bH +cN +bY +cN +dg +eM +ch +dg +eM +ak +ak +dL +ac +ac +ab +ab +ab "} (48,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -KV -KV -eP -KV -KV -Lm -Lm -Lm -Lm -wz -wz -wz -Lm -VT -VT -VT -VT -Lm -Lm -Lm -wz -Ye -Ye -Lm -Lm -VT -VT -VT -VT +ak +Cu +al +aa +ay +av +aL +Cu +bq +aw +aw +bm +aw +bm +cN +bY +cN +cf +cg +cj +cf +cq +ak +ak +dL +dL +ac +ab +ab +ab "} (49,1,1) = {" -VT -VT -VT -VT -VT -VT -VT -wz -wz -wz -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -Lm -KV -CJ -KV -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Ye -Ye -Ye -Ye -Ye -wz -wz -VT -VT -VT +ak +aj +an +az +af +aA +aM +Cu +by +aw +bc +dM +ei +cM +ct +bY +cN +cM +eM +cn +co +eM +ak +ak +ak +dL +ac +ab +ab +ab "} (50,1,1) = {" -wz -wz -wz -wz -wz -wz -wz -MD -wz -Lm -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -KV -JP -KV -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -Lm -Lm -Ye -Ye -Ye -Ye -Ye -Ye -Ye -Ye -Lm -VT -VT +ak +aj +an +aB +ag +aC +bf +Cu +aw +aw +cx +cN +cN +cN +cN +bZ +nx +Qh +aw +aw +aw +aw +cu +ak +ak +ak +ac +ab +ab +ab "} (51,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -wz -Lm -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -KV -JP -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Ye -Ye -Ye -Ye -Ye -Ye -Ye -Lm -VT -VT +ak +Cu +aq +ad +aD +aR +aO +Cu +bz +aw +bd +cN +bs +bI +bN +cc +aw +Em +aw +ak +ak +ak +ak +ak +ak +ak +ac +ab +ab +ab "} (52,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -wz -Lm -VT -VT -Lm -Lm -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -KV -JP -KV -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Ye -Ye -Ye -Ye -Ye -Ye -Ye -Lm -VT -VT +ak +Cu +Cu +Cu +aj +aS +aj +Cu +dL +aw +cB +cN +el +ex +bO +eq +ev +xK +aw +ak +ak +ak +ak +ak +ak +ak +ac +ab +ab +ab "} (53,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -wz -Lm -VT -Lm -Lm -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -Ed -wd -Ed -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Ye -Ye -wz -Ye -Lm -Lm -VT -VT +ak +ak +ak +Cu +aE +aU +bi +Cu +dL +aw +cD +dQ +aw +ev +Oe +ev +ev +xK +aw +ak +ak +ak +ak +ak +ak +ac +ac +ab +ab +ab "} (54,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lb -Lm -Lm -Lm -Lm -VT -VT -VT -Ed -wd -Ed -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT +ac +ak +ak +Cu +aF +aR +bj +Cu +dL +aw +cE +dR +eo +bJ +bP +bJ +bJ +CO +aw +ak +ak +ak +ak +ak +ak +ak +ac +ab +ab +ab "} (55,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -Lm -VT -VT -VT -VT -VT -Lm -Lm -fm -Tm -Ed -Lm -Lm -VT -VT -VT -Lm -Ed -wd -Ed -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -VT -VT -VT -VT -VT +ac +ac +ak +Cu +aj +aX +aj +Cu +dL +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ak +ak +ak +ak +ak +ak +ak +ak +ab +ab +ab "} (56,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -wz -Lm -Lm -VT -VT -VT -VT -VT -VT -Lm -Ed -es -Ed -Lm -VT -VT -VT -VT -Lm -Ed -aJ -Ed -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT +ak +ak +ak +ao +ak +ak +ak +ao +dL +dL +ak +ak +bG +bG +bG +bG +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ac +ab +ab +ab "} (57,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -Lm -VT -VT -VT -VT -VT -VT -Ed -Ed -KQ -Ed -Ed -Lm -VT -VT -Lm -Ed -Ed -dZ -Ed -Ed -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bG +bG +bG +bG +bG +bG +bG +ak +ak +ak +ak +ak +ak +ak +ak +ac +ac +ab +ab +ab "} (58,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -wz -wz -VT -VT -VT -Cd -Ed -Wf -II -Jo -Ed -Cd -Cd -Cd -Cd -Lc -Wf -Ww -Jo -Ed -Cd -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bG +bG +bG +bG +bG +bG +bG +bG +ak +ak +ak +ak +ak +ak +ak +ac +ac +ab +ab +ab "} (59,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -VT -Lm -Cd -dP -RC -es -wX -Wf -YM -GN -ou -Nf -mN -Aj -wd -es -TG -Cd -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT +ak +ak +ak +ak +ak +ak +ak +ak +ak +bG +bG +bG +ab +ab +ab +bG +bG +bG +bG +ak +ak +ak +ak +ak +ak +ac +ac +ab +ab +ab "} (60,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -VT -VT -Lm -Ed -wg -Bh -KG -nK -sj -sj -mi -GM -sj -Mc -pK -ME -Cj -yt -Cd -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(61,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -VT -VT -Lm -Lm -Ed -eL -PO -Aj -zN -Sq -qH -Aj -Eg -es -Vo -Jl -KS -es -sE -Cd -Cd -Cd -Cd -At -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(62,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -wz -Lm -bg -bg -bg -Hd -au -Hd -bg -av -Cd -oG -cf -fO -Vo -es -XN -es -Vs -Ed -tY -Vs -Ed -Lm -Lm -wz -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(63,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -wz -wz -Lm -bg -pr -Kx -dk -vJ -JW -bg -VP -Cd -Cd -Bc -Cd -Bc -es -XN -es -lI -AS -qR -lI -Mw -Lm -Lm -wz -wz -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(64,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -Lm -Lm -cA -xP -SY -jn -Ex -xv -bg -mI -Cd -OI -sz -gk -Wf -Yp -XN -es -Wf -Ed -lS -qc -Ed -Lm -Lm -Lm -wz -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(65,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -Lm -cA -xP -Kl -CV -al -lj -bg -Cd -Cd -mw -es -es -es -es -iG -zN -ez -Cd -Cd -Cd -Cd -At -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(66,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -Lm -bg -QD -PN -qb -KU -lu -bg -Ye -Cd -RI -es -yR -yF -me -Kb -Cd -Oj -Cd -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -"} -(67,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -Lm -bg -bg -bg -cA -kE -cA -bg -wz -Cd -Vj -es -Xr -Kk -iQ -Rv -NI -Kt -Cd -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -"} -(68,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -VT -VT -Lm -Lm -Lm -bg -qS -vE -VY -bg -wz -Cd -nR -SW -Cd -NI -ZN -NI -NI -Kt -Cd -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -"} -(69,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -wz -VT -VT -Lm -Lm -bg -Ik -KU -ap -bg -wz -Cd -XG -wj -rB -oo -JV -oo -oo -Ss -Cd -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(70,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -MD -wz -Lm -wz -wz -VT -VT -Lm -bg -cA -KP -cA -bg -wz -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -Lm -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -"} -(71,1,1) = {" -MD -MD -MD -MD -MD -MD -MD -MD -wz -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Be -Lm -Lm -Lm -Be -wz -wz -Lm -Lm -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -"} -(72,1,1) = {" -MD -MD -wz -wz -MD -MD -MD -wz -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -VT -Lm -VT -VT -VT -VT -VT -"} -(73,1,1) = {" -MD -wz -Lm -Lm -wz -wz -MD -wz -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -Lm -Lm -Lm -VT -VT -VT -VT -"} -(74,1,1) = {" -wz -Lm -Lm -Lm -wz -Lm -wz -MD -wz -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -VT -VT -VT -VT -VT -VT -Lm -Lm -Lm -Lm -Lm -Lm -VT -VT -VT -VT -Lm -Lm -VT -VT -VT -VT -Lm -Lm -Lm -VT -VT -VT -VT +ak +ak +ak +ak +ak +ak +ak +ak +bG +bG +ab +ab +ab +ab +ab +ab +bG +dL +dL +ak +ak +ak +ak +ak +ak +ak +ac +ab +ab +ab "} diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index dcfdc3408c..ac795671ea 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -74,9 +74,47 @@ "an" = ( /turf/closed/mineral/random/labormineral/volcanic, /area/lavaland/surface/outdoors) +"ao" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "Powered by the tears and sweat of laborers."; + name = "Prison Ofitser" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"ap" = ( +/turf/open/floor/plating, +/area/lavaland/surface/outdoors) "aA" = ( -/turf/open/lava/smooth/lava_land_surface, -/area/template_noop) +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) +"aD" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "aQ" = ( /obj/structure/stone_tile/surrounding_tile{ dir = 1 @@ -91,6 +129,73 @@ /obj/item/t_scanner/adv_mining_scanner/lesser, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"aV" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"bd" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"bf" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"bs" = ( +/turf/closed/wall, +/area/lavaland/surface/outdoors) +"bC" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bG" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"bP" = ( +/obj/machinery/computer/security/labor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bY" = ( +/obj/machinery/computer/shuttle/labor/one_way{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"cb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"ch" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"cn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "cp" = ( /obj/structure/stone_tile, /obj/structure/stone_tile{ @@ -98,6 +203,12 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"cq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "cu" = ( /obj/item/pickaxe, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -119,6 +230,36 @@ /obj/effect/decal/cleanable/blood, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"cV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"dg" = ( +/obj/docking_port/stationary{ + area_type = /area/lavaland/surface/outdoors; + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_away"; + name = "labor camp"; + width = 9 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"dj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "dA" = ( /obj/structure/stone_tile/block{ dir = 4 @@ -138,6 +279,12 @@ /obj/structure/stone_tile/block/cracked, /turf/closed/mineral/volcanic/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"dG" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) "dM" = ( /obj/structure/stone_tile/cracked{ dir = 8 @@ -194,11 +341,48 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"eR" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/camera{ + c_tag = "Labor Camp Medical"; + dir = 8; + network = list("labor") + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"eS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Labor Camp External Access" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"eW" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"fc" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/turf/open/floor/plating, +/area/mine/laborcamp) "ft" = ( /obj/structure/stone_tile/block, /obj/item/twohanded/bonespear, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"fC" = ( +/turf/closed/wall/r_wall, +/area/mine/laborcamp/security) "fN" = ( /obj/structure/stone_tile{ dir = 4 @@ -232,6 +416,10 @@ /obj/structure/stone_tile/slab, /turf/open/indestructible/boss, /area/lavaland/surface/outdoors) +"gg" = ( +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) "gj" = ( /obj/structure/stone_tile/surrounding_tile{ dir = 1 @@ -260,6 +448,9 @@ /obj/structure/stone_tile/block, /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) +"gq" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) "gr" = ( /obj/structure/stone_tile{ dir = 1 @@ -418,6 +609,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"hG" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "hH" = ( /obj/structure/stone_tile/block{ dir = 1 @@ -438,6 +638,22 @@ }, /turf/open/indestructible/boss, /area/lavaland/surface/outdoors) +"hU" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"hY" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "gulag" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) "ia" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/stone_tile/block/cracked{ @@ -462,6 +678,15 @@ /obj/structure/stone_tile/slab/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"iq" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "ir" = ( /obj/structure/stone_tile/slab/cracked{ dir = 5 @@ -498,6 +723,14 @@ /obj/structure/stone_tile/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) +"iB" = ( +/obj/item/bikehorn{ + color = "#000"; + desc = "A horn off of a bicycle. This one has been charred to hell and back, yet somehow it still honks."; + name = "charred bike horn" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) "iC" = ( /obj/structure/stone_tile/block{ dir = 1 @@ -643,12 +876,30 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) +"ju" = ( +/obj/machinery/door/airlock{ + name = "Vending" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "jx" = ( /obj/structure/stone_tile{ dir = 4 }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) +"jD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "jF" = ( /obj/structure/stone_tile/surrounding_tile, /obj/structure/stone_tile/surrounding_tile{ @@ -1004,6 +1255,12 @@ }, /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) +"lL" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "lP" = ( /obj/structure/stone_tile/block/cracked{ dir = 4 @@ -1048,6 +1305,13 @@ }, /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) +"lY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "lZ" = ( /obj/structure/stone_tile/block/cracked{ dir = 4 @@ -1459,12 +1723,24 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"nC" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"nE" = ( +/turf/closed/mineral/random/volcanic, +/area/lavaland/surface/outdoors/explored) "nI" = ( /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "nJ" = ( /turf/closed/wall/mineral/wood, /area/ruin/unpowered/ash_walkers) +"nQ" = ( +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "nU" = ( /obj/structure/stone_tile, /obj/item/shard, @@ -1485,9 +1761,12 @@ /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) "ol" = ( -/obj/effect/landmark/stationroom/lavaland/station, -/turf/open/lava/smooth/lava_land_surface, -/area/template_noop) +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) "ot" = ( /obj/structure/stone_tile/surrounding_tile, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -1499,6 +1778,14 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"oL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/labor_camp_security, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "oS" = ( /obj/structure/stone_tile/cracked{ dir = 8 @@ -1508,6 +1795,10 @@ /obj/structure/safe, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"oW" = ( +/obj/structure/gulag_beacon, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "pc" = ( /obj/effect/decal/cleanable/blood, /obj/structure/stone_tile/block, @@ -1519,6 +1810,12 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"pf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "pq" = ( /obj/structure/stone_tile/cracked{ dir = 1 @@ -1565,6 +1862,26 @@ }, /turf/closed/indestructible/riveted/boss, /area/lavaland/surface/outdoors) +"pR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) +"pX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"qe" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "qh" = ( /obj/structure/stone_tile/surrounding/cracked{ dir = 1 @@ -1579,6 +1896,15 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/ruin/unpowered/ash_walkers) +"qr" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "qA" = ( /obj/item/flashlight/lantern, /obj/structure/stone_tile/center, @@ -1598,6 +1924,19 @@ /obj/structure/stone_tile/slab, /turf/closed/indestructible/riveted/boss, /area/lavaland/surface/outdoors) +"rb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "rz" = ( /obj/item/storage/box/rxglasses, /obj/structure/stone_tile{ @@ -1681,10 +2020,23 @@ /obj/item/stack/sheet/mineral/coal, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"sN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "sR" = ( /obj/structure/stone_tile/block/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"tp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "ty" = ( /obj/structure/stone_tile, /obj/structure/stone_tile{ @@ -1706,10 +2058,22 @@ /obj/item/construction/rcd/loaded/upgraded, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"tM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "labor"; + name = "labor camp blast door" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "ub" = ( /obj/structure/stone_tile/slab, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"ug" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) "ui" = ( /obj/structure/stone_tile/cracked{ dir = 4 @@ -1729,12 +2093,36 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/ruin/unpowered/ash_walkers) +"up" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/gulag_fridge, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "uz" = ( /obj/structure/stone_tile/block/cracked{ dir = 1 }, /turf/closed/indestructible/riveted/boss, /area/lavaland/surface/outdoors) +"uB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Labor Camp APC"; + pixel_y = 23 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) "vi" = ( /obj/structure/stone_tile/block{ dir = 1 @@ -1745,6 +2133,9 @@ }, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"vt" = ( +/turf/open/floor/plasteel, +/area/mine/laborcamp) "vu" = ( /obj/structure/stone_tile/surrounding_tile/cracked, /obj/structure/stone_tile/surrounding_tile/cracked{ @@ -1758,6 +2149,28 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/ruin/unpowered/ash_walkers) +"vz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"vI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"vP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Labor Camp External Access" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "vR" = ( /obj/machinery/hydroponics/soil, /obj/structure/stone_tile/block/cracked{ @@ -1792,6 +2205,23 @@ }, /turf/closed/indestructible/riveted/boss, /area/lavaland/surface/outdoors) +"wN" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/laborcamp) +"wW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "xr" = ( /obj/structure/stone_tile/cracked{ dir = 4 @@ -1818,6 +2248,10 @@ /obj/structure/stone_tile/block, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"xR" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/mine/laborcamp) "xX" = ( /obj/structure/stone_tile/block{ dir = 8 @@ -1825,6 +2259,18 @@ /obj/item/pickaxe, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"yd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "yf" = ( /obj/machinery/hydroponics/soil, /obj/structure/stone_tile/surrounding_tile/cracked{ @@ -1841,6 +2287,18 @@ /obj/structure/stone_tile/block, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"yw" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "gulag" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"yW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) "zf" = ( /obj/structure/stone_tile, /obj/structure/stone_tile{ @@ -1861,6 +2319,35 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"zx" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"zQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"Aa" = ( +/obj/machinery/door/airlock{ + name = "Labor Camp Storage" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "Ad" = ( /obj/structure/stone_tile{ dir = 4 @@ -1887,10 +2374,37 @@ /obj/item/twohanded/bonespear, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"AP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Labor Camp Security Office"; + dir = 1; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"AR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "labor"; + name = "Labor Camp Lockdown"; + pixel_y = 28; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "AU" = ( /obj/structure/stone_tile, /turf/closed/mineral/volcanic/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"AX" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/explored) "AY" = ( /obj/structure/stone_tile, /obj/structure/stone_tile{ @@ -1911,6 +2425,15 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Bg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "Bj" = ( /obj/structure/stone_tile/block{ dir = 4 @@ -1937,6 +2460,15 @@ /obj/item/flashlight/lantern, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Bv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Prisoner Airlock" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "BF" = ( /obj/structure/flora/rock/jungle, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -1989,6 +2521,12 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Cy" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "CG" = ( /obj/structure/stone_tile/cracked{ dir = 4 @@ -2053,6 +2591,21 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "EQ" = ( /obj/structure/stone_tile/surrounding/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -2075,6 +2628,31 @@ }, /turf/closed/indestructible/riveted/boss, /area/lavaland/surface/outdoors) +"Fq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Fs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Fw" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "gulag" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) "Fz" = ( /obj/structure/stone_tile/surrounding_tile{ dir = 8 @@ -2084,6 +2662,19 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"FC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/machinery/door/airlock/highsecurity{ + name = "Labor Camp Monitoring"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "FD" = ( /obj/structure/stone_tile/cracked{ dir = 8 @@ -2091,6 +2682,9 @@ /obj/structure/stone_tile/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) +"FQ" = ( +/turf/closed/wall, +/area/mine/laborcamp) "Gc" = ( /obj/structure/flora/junglebush/b, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -2121,6 +2715,22 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/ruin/unpowered/ash_walkers) +"GI" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp External"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"GX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "Hq" = ( /obj/structure/stone_tile, /obj/structure/stone_tile{ @@ -2146,6 +2756,15 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Ik" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "It" = ( /obj/structure/stone_tile/block{ dir = 8 @@ -2155,11 +2774,38 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"IV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "Jq" = ( /obj/structure/stone_tile/slab/cracked, /obj/effect/decal/cleanable/blood, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"JI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"JO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "JP" = ( /obj/structure/stone_tile, /obj/structure/stone_tile{ @@ -2185,10 +2831,23 @@ /obj/structure/stone_tile/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Ks" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) "KA" = ( /obj/structure/stone_tile/slab, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"KH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "KJ" = ( /obj/structure/stone_tile/block/cracked, /obj/structure/stone_tile{ @@ -2199,6 +2858,23 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"KO" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"KR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "KV" = ( /obj/structure/stone_tile/cracked{ dir = 8 @@ -2210,6 +2886,13 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Ld" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "LJ" = ( /turf/open/water, /area/ruin/unpowered/ash_walkers) @@ -2242,6 +2925,12 @@ /obj/structure/stone_tile/slab/cracked, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"Nl" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "NN" = ( /obj/structure/stone_tile/block/cracked, /obj/structure/stone_tile/block{ @@ -2249,6 +2938,26 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"NS" = ( +/obj/machinery/computer/prisoner, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Ol" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "Ou" = ( /obj/structure/stone_tile/slab, /obj/structure/table/wood, @@ -2269,6 +2978,9 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"OK" = ( +/turf/closed/wall/r_wall, +/area/mine/laborcamp) "OR" = ( /obj/structure/stone_tile/block{ dir = 1 @@ -2287,6 +2999,24 @@ /obj/structure/stone_tile/center, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"PF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Security Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"PM" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ + dir = 1; + piping_layer = 3 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp/security) "Qd" = ( /obj/structure/stone_tile/block{ dir = 8 @@ -2300,6 +3030,24 @@ /obj/item/twohanded/bonespear, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"Qe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "Qk" = ( /obj/structure/stone_tile{ dir = 4 @@ -2334,10 +3082,44 @@ /obj/structure/stone_tile, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"QH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Labor Camp Security APC"; + pixel_y = 23 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "QM" = ( /obj/structure/stone_tile/surrounding_tile/cracked, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"QZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Prisoner Airlock" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Ra" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp) "Rb" = ( /obj/structure/closet/crate, /obj/structure/stone_tile/block/cracked{ @@ -2365,6 +3147,12 @@ }, /turf/closed/indestructible/riveted/boss, /area/ruin/unpowered/ash_walkers) +"Rs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "RF" = ( /obj/structure/stone_tile/block/cracked{ dir = 8 @@ -2382,6 +3170,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"Sc" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/flashlight, +/obj/item/pickaxe, +/obj/item/clothing/glasses/meson, +/obj/item/mining_scanner, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "Sh" = ( /obj/structure/stone_tile/block, /turf/closed/mineral/volcanic/lava_land_surface, @@ -2398,6 +3195,41 @@ }, /turf/closed/indestructible/riveted/boss, /area/lavaland/surface/outdoors) +"SI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"ST" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"SZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"Tl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "Tn" = ( /obj/structure/stone_tile/block{ dir = 1 @@ -2411,6 +3243,17 @@ /obj/item/book/granter/crafting_recipe/bone_bow, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) +"Tp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "TN" = ( /obj/structure/stone_tile/surrounding_tile/cracked{ dir = 8 @@ -2426,6 +3269,13 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/ruin/unpowered/ash_walkers) +"TP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "Uh" = ( /obj/structure/stone_tile/slab, /obj/structure/table/wood, @@ -2444,6 +3294,13 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) +"UC" = ( +/obj/structure/table, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) "UG" = ( /obj/structure/stone_tile/block, /obj/structure/stone_tile/block{ @@ -2480,6 +3337,23 @@ }, /turf/closed/mineral/volcanic/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Vs" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp Central"; + network = list("labor") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Vy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "VI" = ( /obj/structure/stone_tile{ dir = 8 @@ -2496,6 +3370,13 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"VV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) "Wb" = ( /obj/structure/stone_tile/block{ dir = 8 @@ -2515,11 +3396,27 @@ /obj/structure/stone_tile/surrounding_tile/cracked, /turf/closed/mineral/volcanic/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"Wq" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "WA" = ( /obj/structure/stone_tile/block/cracked, /obj/item/book/granter/crafting_recipe/bone_bow, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"WI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Security Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "WL" = ( /obj/structure/stone_tile{ dir = 4 @@ -2619,12 +3516,33 @@ }, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"XS" = ( +/obj/machinery/flasher{ + id = "labor" + }, +/turf/closed/wall, +/area/mine/laborcamp) "Yg" = ( /obj/structure/flora/rock/pile/largejungle{ light_range = null }, /turf/open/water, /area/ruin/unpowered/ash_walkers) +"Ym" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Yu" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/flashlight, +/obj/item/clothing/glasses/meson, +/obj/item/mining_scanner, +/turf/open/floor/plasteel, +/area/mine/laborcamp) "Yy" = ( /obj/structure/stone_tile/block/cracked{ dir = 4 @@ -2632,6 +3550,10 @@ /obj/item/flashlight/lantern, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) +"YD" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) "YH" = ( /obj/structure/stone_tile/block/cracked{ dir = 4 @@ -2664,6 +3586,23 @@ }, /turf/closed/indestructible/riveted/boss, /area/ruin/unpowered/ash_walkers) +"ZK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"ZM" = ( +/turf/closed/wall, +/area/mine/laborcamp/security) +"ZP" = ( +/obj/machinery/conveyor{ + id = "gulag" + }, +/turf/open/floor/plating, +/area/mine/laborcamp) (1,1,1) = {" aa @@ -2866,61 +3805,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -ol +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (2,1,1) = {" aa @@ -3123,61 +4062,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (3,1,1) = {" aa @@ -3380,61 +4319,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (4,1,1) = {" aa @@ -3637,61 +4576,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +ai +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (5,1,1) = {" aa @@ -3894,61 +4833,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (6,1,1) = {" aa @@ -4151,61 +5090,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +gq +ab +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (7,1,1) = {" aa @@ -4307,10 +5246,10 @@ aj aj aj aj -an -an -an -an +aj +aj +aj +aj aj aj aj @@ -4408,61 +5347,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +AX +AX +ab +gq +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj "} (8,1,1) = {" aa @@ -4563,10 +5502,10 @@ ak ak ad aj -ab -ab -ad -an +aj +aj +aj +aj an an an @@ -4665,61 +5604,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +ab +aj +aj +aj +ab +aj +aj +aj +AX +AX +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj "} (9,1,1) = {" aa @@ -4821,72 +5760,133 @@ ak ai aj aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +ab +aj +aj +aj +aj +AX +AX +aj +aj +AX +AX +aj +aj +AX +aj +ab +aj +aj +aj +aj +aj ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an aj aj aj @@ -4901,6 +5901,10 @@ aj aj aj aj +ab +ab +aj +ab aj aj aj @@ -4912,71 +5916,6 @@ aj aj aj aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA "} (10,1,1) = {" aa @@ -5078,8 +6017,8 @@ ak ak ai aj -ab -ab +aj +aj an an an @@ -5179,61 +6118,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +ab +ab +aj +aj +aj +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj "} (11,1,1) = {" aa @@ -5436,61 +6375,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +AX +AX +gq +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +AX +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj "} (12,1,1) = {" aa @@ -5693,61 +6632,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +AX +AX +AX +gq +AX +AX +AX +AX +AX +gq +AX +AX +gq +AX +AX +AX +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (13,1,1) = {" aa @@ -5950,61 +6889,61 @@ aj aj aj ab -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +ab +aj +AX +AX +AX +gq +gq +gq +gq +gq +gq +gq +gq +gq +AX +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj "} (14,1,1) = {" aa @@ -6207,61 +7146,61 @@ aj aj ab ab -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +AX +AX +AX +AX +gq +gq +gq +gq +gq +gq +gq +gq +gq +AX +AX +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +aj +aj +aj +aj "} (15,1,1) = {" aa @@ -6464,61 +7403,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +ab +aj +aj +aj +aj +AX +AX +AX +AX +gq +gq +gq +gq +gq +gq +gq +gq +gq +AX +AX +AX +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj "} (16,1,1) = {" aa @@ -6721,61 +7660,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +AX +AX +AX +gq +gq +gq +gq +gq +gq +gq +gq +gq +AX +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj "} (17,1,1) = {" aa @@ -6978,61 +7917,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +AX +AX +gq +gq +gq +gq +gq +gq +gq +dg +gq +gq +gq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +ab +aj +aj +aj +aj "} (18,1,1) = {" aa @@ -7235,61 +8174,61 @@ aj aj ab aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +FQ +FQ +FQ +FQ +FQ +WI +FQ +FQ +FQ +Bv +FQ +ZM +ZM +ZM +aj +aj +aj +aj +ab +ai +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (19,1,1) = {" aa @@ -7492,61 +8431,61 @@ an an ab ab -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +ab +aj +aj +aj +aj +aj +ab +FQ +lL +Wq +aV +FQ +AR +FQ +bY +FQ +Rs +FQ +ch +tp +ZM +aj +iB +aj +ab +ab +ai +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (20,1,1) = {" aa @@ -7749,61 +8688,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +ab +aj +aj +aj +ab +ab +FQ +Nl +vt +JO +FQ +PF +FQ +oW +FQ +QZ +FQ +hU +iq +ZM +aj +aj +aj +aj +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (21,1,1) = {" aa @@ -8006,61 +8945,61 @@ an an an an +an +an +an +an aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +pR +Ra +FQ +FQ +FQ +ju +FQ +FQ +tM +FQ +eW +vt +vt +OK +fC +SZ +fC +lY +fC +nE +aj +aj +aj +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (22,1,1) = {" aa @@ -8263,61 +9202,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +ol +gg +UC +FQ +nC +vt +vt +vt +vt +vt +vt +vz +vt +vt +OK +Tp +SI +up +zx +fC +nE +nE +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (23,1,1) = {" aa @@ -8520,61 +9459,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +FQ +ug +dG +bf +cq +cq +cq +pf +XS +Vs +TP +cV +dj +dj +FC +ao +wW +ED +aD +fC +nE +gq +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (24,1,1) = {" aa @@ -8777,61 +9716,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +FQ +eR +yW +FQ +hG +vt +Vy +vI +TP +Bg +JO +Fq +vt +vt +OK +cn +nQ +IV +AP +fC +AX +aj +aj +aj +aj +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (25,1,1) = {" aa @@ -9034,61 +9973,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +FQ +FQ +FQ +FQ +FQ +vt +vt +Ks +vt +yw +FQ +hY +OK +OK +OK +QH +nQ +jD +Tl +lY +gq +aj +aj +aj +aj +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (26,1,1) = {" aa @@ -9291,61 +10230,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +FQ +Yu +Yu +Yu +FQ +vt +Ld +FQ +FQ +xR +FQ +hY +OK +uB +qr +Fs +Ym +Qe +cb +yd +PM +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (27,1,1) = {" aa @@ -9548,61 +10487,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +FQ +Sc +vt +vt +Aa +vt +bd +fc +ZP +wN +ZP +Fw +OK +zQ +ZM +KO +nQ +JI +YD +VV +gq +gq +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (28,1,1) = {" aa @@ -9805,61 +10744,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +FQ +FQ +sN +Ol +FQ +vP +FQ +FQ +FQ +FQ +FQ +FQ +OK +OK +fC +bP +Cy +KH +bC +fC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (29,1,1) = {" aa @@ -10062,61 +11001,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +FQ +FQ +FQ +FQ +vt +FQ +bG +ST +ST +gq +gq +gq +AX +lY +NS +qe +Ik +oL +fC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (30,1,1) = {" aa @@ -10240,6 +11179,7 @@ aj aj aj aj +aj an an an @@ -10319,61 +11259,60 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +FQ +Rs +FQ +bG +gq +gq +gq +gq +gq +AX +KR +GX +ZK +rb +pX +fC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (31,1,1) = {" aa @@ -10499,7 +11438,7 @@ aj aj aj aj -an +aj aj aj an @@ -10576,61 +11515,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +FQ +eS +FQ +bG +gq +gq +gq +gq +gq +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (32,1,1) = {" aa @@ -10833,61 +11772,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +gq +gq +GI +gq +gq +gq +gq +gq +aj +aj +aj +aj +aj +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (33,1,1) = {" aa @@ -11090,61 +12029,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +gq +gq +gq +gq +gq +gq +gq +gq +gq +aj +aj +aj +aj +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (34,1,1) = {" aa @@ -11347,61 +12286,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +gq +gq +gq +gq +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (35,1,1) = {" aa @@ -11604,61 +12543,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +gq +gq +gq +gq +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (36,1,1) = {" aa @@ -11861,61 +12800,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +gq +gq +gq +gq +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (37,1,1) = {" aa @@ -12118,61 +13057,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +gq +gq +cv +an +ab +an +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (38,1,1) = {" aa @@ -12375,61 +13314,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +ai +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (39,1,1) = {" aa @@ -12632,61 +13571,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (40,1,1) = {" aa @@ -12889,61 +13828,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (41,1,1) = {" aa @@ -13146,61 +14085,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ad +ai +ai +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj "} (42,1,1) = {" aa @@ -13403,61 +14342,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (43,1,1) = {" aa @@ -13660,61 +14599,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (44,1,1) = {" aa @@ -13917,61 +14856,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (45,1,1) = {" aa @@ -14174,61 +15113,61 @@ an an an an -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (46,1,1) = {" aa @@ -14431,61 +15370,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj "} (47,1,1) = {" aa @@ -14688,61 +15627,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +aj +ab +aj +aj +ab +ab +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj "} (48,1,1) = {" aa @@ -14945,61 +15884,61 @@ aj aj aj aj -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +aj +aj +aj +aj +ab +ab +ab +ai +ad +ad +ab +ab +aj +aj +aj +aj "} (49,1,1) = {" aa @@ -15202,61 +16141,61 @@ aj aj ai ai -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +aj +aj +aj +aj +aj +aj +aj +ai +ai +ai +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ai +ai +aj +aj +aj "} (50,1,1) = {" aa @@ -15459,61 +16398,61 @@ ab ab ai am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +ai +ai +ai +ai +ai +ai +ai +am +ai +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +ab +ad +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj "} (51,1,1) = {" aa @@ -15716,61 +16655,61 @@ ai ai am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +ai +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj "} (52,1,1) = {" aa @@ -15973,61 +16912,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +ai +ab +aj +aj +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj "} (53,1,1) = {" aa @@ -16230,61 +17169,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +ai +ab +aj +ab +ab +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ad +ad +ai +ad +ab +ab +aj +aj "} (54,1,1) = {" aa @@ -16487,61 +17426,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj "} (55,1,1) = {" aa @@ -16744,61 +17683,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +ai +aj +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj "} (56,1,1) = {" aa @@ -17001,61 +17940,61 @@ ak am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +ai +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (57,1,1) = {" aa @@ -17258,61 +18197,61 @@ ak ak am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (58,1,1) = {" aa @@ -17515,61 +18454,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (59,1,1) = {" aa @@ -17772,61 +18711,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (60,1,1) = {" aa @@ -18029,61 +18968,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (61,1,1) = {" aa @@ -18286,61 +19225,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +ai +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (62,1,1) = {" aa @@ -18543,61 +19482,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +ai +aj +aj +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (63,1,1) = {" aa @@ -18800,61 +19739,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (64,1,1) = {" aa @@ -19057,61 +19996,61 @@ ak ak ak am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (65,1,1) = {" aa @@ -19314,61 +20253,61 @@ ak ak am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +bs +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (66,1,1) = {" aa @@ -19571,61 +20510,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (67,1,1) = {" aa @@ -19828,61 +20767,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (68,1,1) = {" aa @@ -20085,61 +21024,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (69,1,1) = {" aa @@ -20342,61 +21281,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +am +ai +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (70,1,1) = {" aa @@ -20599,61 +21538,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +am +ai +ab +ai +ai +aj +aj +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (71,1,1) = {" aa @@ -20856,61 +21795,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj "} (72,1,1) = {" aa @@ -21113,61 +22052,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +am +ai +ai +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj "} (73,1,1) = {" aa @@ -21370,61 +22309,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +am +ai +ab +ab +ai +ai +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj "} (74,1,1) = {" aa @@ -21627,61 +22566,61 @@ am am am am -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA +ai +ab +ab +ab +ai +ab +ai +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj "} (75,1,1) = {" aa diff --git a/code/datums/ruins/lavaland.dm b/code/datums/ruins/lavaland.dm index 52bf4fe229..02c12a34f4 100644 --- a/code/datums/ruins/lavaland.dm +++ b/code/datums/ruins/lavaland.dm @@ -245,4 +245,14 @@ suffix = "lavaland_surface_elite_tumor.dmm" cost = 5 always_place = TRUE - allow_duplicates = TRUE + allow_duplicates = TRUE + +// Mining Base +/datum/map_template/ruin/lavaland/mining_base //THIS IS THE MINING BASE. DO NOT FUCK WITH THIS UNLESS YOU ARE 100% CERTAIN YOU KNOW WHAT YOU'RE DOING, OR THE MINING BASE WILL DISAPPEAR + name = "Mining Base" + id = "miningbase" + description = "The mining base that Nanotrasen uses for their mining operations." + suffix = "miningbase.dmm" + cost = 0 + always_place = TRUE + unpickable = TRUE \ No newline at end of file diff --git a/code/datums/ruins/station.dm b/code/datums/ruins/station.dm index 71cdf495e9..9316a4b022 100644 --- a/code/datums/ruins/station.dm +++ b/code/datums/ruins/station.dm @@ -54,10 +54,3 @@ id = "engine_budget" suffix = "Box/Engine/budget.dmm" name = "Box P.A.C.M.A.N" - -// Lavaland - // Mining Base -/datum/map_template/ruin/station/lavaland/mining_base - id = "mining_public_01" - suffix = "Lavaland/Mining_Station/Mining_Station_Public_01.dmm" - name = "Public Mining Base" diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index 4ed6dc9dc9..97edd35581 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -506,8 +506,3 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/start/new_player) /obj/effect/landmark/stationroom/box/engine/New() . = ..() templates = CONFIG_GET(keyed_list/box_random_engine) - -// Landmark for the mining station -/obj/effect/landmark/stationroom/lavaland/station - templates = list("Public Mining Base" = 3) - icon = 'icons/rooms/Lavaland/Mining.dmi' From 4205233e455d6206e0c4c59cba8b1abff6fdc6c9 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 13:53:39 -0600 Subject: [PATCH 131/175] Automatic changelog generation for PR #11129 [ci skip] --- html/changelogs/AutoChangeLog-pr-11129.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11129.yml diff --git a/html/changelogs/AutoChangeLog-pr-11129.yml b/html/changelogs/AutoChangeLog-pr-11129.yml new file mode 100644 index 0000000000..18f8308bb1 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11129.yml @@ -0,0 +1,10 @@ +author: "Owai-Seek" +delete-after: True +changes: + - tweak: "Reorganized all food recipes, (hopefully) making things easier to find." + - balance: "Trays now have a whitelist, allowing them to pick up normal sized foods, bowls, glassware, booze, ect." + - bugfix: "Easter foods are no longer their own Misc Food Category on the top of the menu." + - spellcheck: "fixed a few typos/capitalization consistency." + - tweak: "Mexican Foods are their own Subcategory." + - tweak: "Donuts are their own Subcategory" + - tweak: "Moved Sweets from Misc Food in with Pies. Renamed to Pies & Sweets" From fa9e2752371771d8815f89e84381b079d354b2af Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 24 Feb 2020 13:16:12 -0700 Subject: [PATCH 132/175] k --- code/game/objects/items/twohanded.dm | 18 ++++++++++-------- icons/mob/inhands/weapons/estaff_lefthand.dmi | Bin 9294 -> 0 bytes .../mob/inhands/weapons/estaff_righthand.dmi | Bin 9428 -> 0 bytes icons/mob/inhands/weapons/staves_lefthand.dmi | Bin 19155 -> 25109 bytes .../mob/inhands/weapons/staves_righthand.dmi | Bin 18572 -> 25954 bytes icons/mob/suit.dmi | Bin 409287 -> 420037 bytes icons/obj/estaff.dmi | Bin 1580 -> 0 bytes icons/obj/items_and_weapons.dmi | Bin 125506 -> 133100 bytes 8 files changed, 10 insertions(+), 8 deletions(-) delete mode 100644 icons/mob/inhands/weapons/estaff_lefthand.dmi delete mode 100644 icons/mob/inhands/weapons/estaff_righthand.dmi delete mode 100644 icons/obj/estaff.dmi diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index b4e518cbe3..5867211af8 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1018,11 +1018,11 @@ user.client.pixel_y = 0 /obj/item/twohanded/electrostaff - icon = 'icons/obj/estaff.dmi' - icon_state = "electrostaff_3" - item_state = "electrostaff_3" - lefthand_file = 'icons/mob/inhands/weapons/estaff_lefthand.dmi' - righthand_file = 'icons/mob/inhands/weapons/estaff_righthand.dmi' + icon = 'icons/obj/items_and_weapons.dmi' + icon_state = "electrostaff" + item_state = "electrostaff" + lefthand_file = 'icons/mob/inhands/weapons/staves_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/staves_righthand.dmi' name = "riot suppression electrostaff" desc = "A large quarterstaff, with massive silver electrodes mounted at the end." w_class = WEIGHT_CLASS_HUGE @@ -1123,9 +1123,11 @@ /obj/item/twohanded/electrostaff/update_icon() . = ..() - var/final = wielded? (on? "electrostaff_1" : "electrostaff_3") : "electrostaff" - icon_state = final - item_state = final + if(!wielded) + icon_state = "electrostaff" + item_state = "electrostaff" + else + icon_state = item_state = (on? "electrostaff_1" : "electrostaff_3") set_light(7, on? 1 : 0, LIGHT_COLOR_CYAN) /obj/item/twohanded/electrostaff/examine(mob/living/user) diff --git a/icons/mob/inhands/weapons/estaff_lefthand.dmi b/icons/mob/inhands/weapons/estaff_lefthand.dmi deleted file mode 100644 index 47b8dc112fb27ec8ef4731d4c1d47dc4af3e7465..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9294 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%0D2(s`CFz9`Jv+{E?q%f*>X`YwJ6z8`oCKG{OI zUXOWBTR6%+*%_k+(Sv78pq7DaRA^oKjEv-+w3nH)LKWJ|_W0+Ah^`WK!t8jjrh4@H z&|FRd!-~w~O4pj@gF`3Om-@h9YI0>)4x1hBB^knAK6_enOk5`()NKwMNJ39e6)hmI zFv3z^$;-Rb1}K#Y)}+D{!+Hi5)MTD2ptWWI^QO>yG78BFPJn z!|r&VyWfw_y`LBOkVk%uUF0IP2dnYhD=BtokIZrX9yG+k`ob9)bYRlT6@l^7(k-85 z%Enz99SjddllM*45#Fu=Dt9$4$>ta&+3Cqe_RlRO-+~u=`0Mo_kF2LlTxZ>Qq2(eE zib6xaeQoo32Ldu z04f47Vn-^_e^BN@KuI*-J!@Q8ac0}`)bU!H&L06AEjSMD6BU&-mNEHjUt5BIfmZkd z+0<}T8yBA@!1ILHBq<OX+4c45hN9^~aR~M*cO>I!2VDIVq`*h?(JOt7uuc94{+PGs zzUi}uK3pBUrEwqWCkSqe$o+|rwu|xtp)zfA~;TAL{wtH!(TiF5rWGFl)gPH&ONVAVSGoVDl?9krW1Uf*>x19sfEcDf%_| z0@0-tlwJ*X01JvXC^?vza0SfSL6}tH%jXGjI8ZwL83pKJwGtbD$*eqKo($06H$;Tv zygPeEF7$HC>g$td8d9Git3N)BIzZQ=#c}2a-%ND$McJO968&o=84TC96;}qC_iGi{ zPObWy!L=}=9!3aDakY;&hDUEF*k7d@#bV;z^KLMm26;cDs8Mj<&MG#7%2$fPtM-gG zD;28(&1&B1{9<^I;vX%zZ`CM#sVyJ}?|y9P0zbDlj(b< zI$tg-UAi}oeU6j-p6$}F&qogvhp1e?n!cPrWUOaQWA^5MK6dARP^5(Bh;~UIWyGNm zuOMT=f~g?|XUoVu@j#b7jJn{d|MErl$AXD6V?2TtM${daOZFM0ZKLG%)!Nt7* zL}II71IT>|=@Q3sKR{eshY^BX0#!C5#<=8AJ33NPDQUeZiP4gki!v3{IXQWj#to&! z*OOi&gGNPg5hv5@C;v_Wh`*}M8uR&PoJ==vwd)Y5p;4|Np8)QTE#z z`pM)~f%83Y2G&c=;X%YvM(x?(0Qz$+at*MK+B5M-Onk9a|9a*wvOxdi(e~D2 z->ZK#R&8ab=vqD@moBT8>~@F(aqZMo$8={6SM+S2o9S8WMV;G+ z37Ay26?Q{s!HQtE(;bB;@eRZmL=H@+z@hSuLZ40D(r1!+PxMkx?8nI{7a;Mx9-eMJ zmL-jkt>pf5f+NMSx~8tv&>v{)3%-|{CJ4?>ZaJs7jol$J2>1Ov{N3W}h~V?Th@fUC z$G|_Tl1|Ar+=AJ}LpP5@{CpoH%knI%a*>ceuD`RHQDK6?lci^QEE2%~Hk<*Q6*qe1 z(NYGtJ$yvM?YY5{1Ce_aIAAmVwdL@Iw|vh`gdT2zgR8tmdTO8H?9-7%e>*n536Ip+ z62a=7^~~%Ah@3SHe&TJtOb`#9GeDl)?Y%hwh9o@UCgy6%+%s##V2_IiW))!pD`?Jr zTRvc41us3@Hp9P0XWX`4BabqoBY>#$ROlbXAJF@Ilf=Lmh;OA{YZ5zi9A81uFthlfmc&c2@rvi9++ zyd*gzhmgF2UN_hl1arqAIEvH*GsLc0RtO!1Mze<4{==c#_t!apN5?@WDb?c*zXs^^ zoe&Ef6rTEDXDU$o}tot^K;PkS*F lc@H&-P5d4Z#2a diff --git a/icons/mob/inhands/weapons/estaff_righthand.dmi b/icons/mob/inhands/weapons/estaff_righthand.dmi deleted file mode 100644 index d6096c57c7afac7c9fa8ac05540f41ffdc3a6397..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9428 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 EAGSh_wg3PC diff --git a/icons/mob/inhands/weapons/staves_lefthand.dmi b/icons/mob/inhands/weapons/staves_lefthand.dmi index 8b96b842361b935135facb73a4692f17e04823a5..ca1694b1f1d030708695637ed77c06fce98104c1 100644 GIT binary patch literal 25109 zcma%i2{@GB+y7%rk)>=EA{9lJtT7m(tdV^u2_aNJ{z8g!H(PH1q&R}HU zreVf5jG6y4_5J;R@Abdl_y2$Aa+&8j&zbw2=RWuOeC~7K=S1JvQDdOHKnDN-gNC}Q zJ^)aHmz2QC6X4g5|HvT#P#6aqntH3+d)aw9J@s~ScLMLqu#m@+$gH zPT2>o_U4)e|F97=6^STCOSL)d?FXflzkcsy!JhMMF=N<^(UwkkW2K+b7|9T%!ovl> z-{vXpIN81S_(NF4qtrVllLrAO_3pf&9jNB-mf*bKgZ+^d$ zY`K+=xo=FDHzuN7F`3pC|8^agMT>vKKmhhZR1HC?6e0m)C(ddC{arhXg?{x{Vn+PzOgq z^f{-dvMld60Kf}qs45%!XKc=d1RIXFh!O|yG6z)3UkOus9=&>SE*;Bzv0QVCvd1;4 zFfwamw$AfH+vCBdqJpKlZ8q82Z@MMS^7~skPep3?>ptxk7OGXo?<@Nc@=RHt-H|JaLd_^PmZ;6o}+Yx_u5H3IY9uo6CD+=kPI;^s2q3;jj+{bY`PT7N>L)B9Ehd6Lv>{>Br<@D+dt$a) zZe`l8yn98Ln}Og^6Ssxj>malQ9818Y0(|7Y4P0l-?<-$Ty6Jy806EFla=VcVn9UqG zxgc)#4(A6c5X<6^aVA=4fF(}V*H$p?8z}T~v0C}-9*2XlMN;-ez}*_ppa4h!LhLZT zfahx_lSoJH*TqDC-(#u+u)x#4X|Nmyq{r3Sn*RdE>o)SQtsvGOa{_+2{f7vwz99|< z)&#=tsUe@PgvVI*gW`L%^afDq(5aH+9*M>qOI`Vw>ye8b3q#52NQPeV^EgLhUp5}n zD2mfXSjpfpYj^X8WJlOHkHZar*nFD}r-XTJUFxl|5y}EP*TlvY-NGIJL40|T5Z(-X zlLEytsSvX=DGM`awQ9LI;<5=Wkio~ooitzN=xdvH?A6Y_?@obXNnjIAEw0NIt(A+I zN$R$;NeffQXF*JID14d!!FH`BkJ{iqs@uVO=BXKJ4aPiGzh{z<* zPD0*myc#D?fR8Wt@%H?2k!^r(Az?%a!DEuIJMi$2$QXRdrC5AZ=$Rao6_>A1FLu4A zx5>D__V7F?@>{Ky%uU!bPaVN36KL?+ElALW_{$0QwS|W!fM#=(G$#f=_2$f2#H>@d zZE%aNa?2;?IKbZ0iJm3@y!qIYT%m(t6~Z}}XQ3N(_=VQm6_QPj=d&e#`7;ml?k#DY zJ@fzmTz|AY@!>o){~8h%9TnBZT@E{cUv6KgX<}&3ZPyo^fQuQTEMY+fRyX2mFMh+T z(B>=jWXt*%-h!?2aycne?iH{g`N zcUx7}Z7Z0PH=YQ+mBB?g`h-8cgg;_pqr7nA^I^ zrQk%|&l5;Y1OhJb@^~xkQdEVG|H^3n+2fzKIC~F+<*bhC^1J-oqE?f5^eyN&LZYj# zP-NUZz|3V(08lee>^)R7kN>dE@(g<$ce7-R>%qR>vsML&dp6TzQM|Vhk8cauOG`Pv zgW)Tnl#!|J!9ZUi)u%bE1egQm@odf!HAe$M9MKoL&ok=<75Kn@t1R^ue5`)$@R-L= zf%!nOsCr``W{FFue@Ow{ovttJa3WfdOyRgSFTz8gmU2h$B_51&uEjqm{q9w{gHl|X zBPfS#efeeAwHqa?j$MU%oKVlu(0OX?Hi*VgOW78_5xN=@#4o_1TuSMUypH*NVS*<1 z)-<(JW}M))YDFGKVVVv~36oaJNeWJpM(9<&iMLRu|(RPq)PvT)F&;a;&53PrPiXL1*42l21qDHhK}lkcaqPPs zt+SE)(-pP@TxIJYPEvR(1dQd7u&{kAY#^;a znuld_kAlrb7`dbVllNX-QGR{|KK;iEYG{a(H+A9iop4DAKFG>tP?sWjqLpWRfr!3>t~AbEntwZ(SV(m^}%vqDkU&h z!_r3XUUy(^eZ8MIaFtvGL^uldG4bIwAjw4-@{!Y#NIl3G@aU{}y5Yk%3eW_T{qe4v-4gk`<02V*#e&Jc7!O&Q8E5WJM}D{F(*HtCSAt;cQs0}iAZ5d91>w=WzEseRy^pZ z`L8(}wq+_;X zNM!)d;ok2k8XB4z--B!E;`XoJi29oqD25#7w6aZTpfR&87UVmWfI1c}0O+seNW0ILcGHhcobqlx*wuP=i1RtT z;E?;U%;-s?a|*0B;yO&1A85RItYvFOlVX+d#JzkF^@^8Yojko3Wwjews#(;Fdn>|r{ggODfOgJ+R50iynXuqJ5l{r9A+_*B5nZJ6FI>#$N~Y50nfkAkvavutce+Q)vJ<1rF8a)+eVM5|8l5f)x#OZcY&>0IFR*Dt8k92BEpzcO@3DRm?~P$aMd|{#d*_?z7iNf(Bmp zmPFjjI>MZ;7RJZH`T0b5ygduf>F}BsLuD@Rj%}MJ{u? zSehxGLxr$M{nFg7H7yEccpe!V%GFLcwCzJIWfNJHGzRb``Yy-&b@4RRz~=ngcehx$ zM<8o~dCM;P(#CWbRE%tt%irUpWw-4p0qHEl?LH9e4L)g~0qy2CtZB}?=tKwuh-}|M z1NxVHP6<5X9v;3FXyD^4ao8W zHOsfI22;WoYL8K^mg@Zr$cO1@O{d}n;bS&09G)b8CqT~Ql1mpWJju#FuI|?2F@@$Dl+7M0Z`O6(?b7HLQ9{x@&YdK_2=lI7v$cZHxf&Z5!iKd=w--yiyx26_F7 z+|)}lHGmZH#)DIE%)DK?=o$(e-~O;jXX7U0p=`qL@c4*2Ja7XkA;kU-;|*IV%I@3Q z#dE*ir7B&)__PSSYhUaK$s;d6|EiDVA!tx8mDdkjz_VG6}dA}z~X2>Djmu3b|C z@eOF(DGnWVRsa`MCFLlR$LlHu@>w+k3a&J7=v9T6!dSkiJuGepE-LBM5u6WF%P75kV zqi|jCwFh>5VxrKjf2Io@Y8dC72pM`eh6|Yfz-U}yPEL+RB!@luJ*&SZ`>cac);Bh! zHme)X`~f=FclG#$FA>=veF;?Zq%AQ<-x2jzCo~8 z7^|?Um<-u?|A&`~yY>mmKpH`psFSaJ{c*<^8zQpQ&A8Cm{rID5T|C}TJe@$%{RKI& zs7q(nk~fXl3LRDY(-*`YDU!B{v|6-{)cvxtKIrvgJj>q&fZn6-_^&>mHVbMfeTT-8 zDIpMuizuKSHZs{tKu<)2Nr{|~o#I3S)=UwA61=};r1i#s`XkwlmY*{bI$Bj#hHe|7%kZB+bQ)3B3 zUf`T@Q@iq?+GB+D^mH143kvM;&~)V~One8&xa2!qCR=RqLv6MX>Q}t%?n22N z)2=Ga+j`=GtDRl)<;1G6bM#Nufcr>2db4;C7RRKe=UupAHG!(h<+GkhxZ=1)9j!W} zrXW}9OXVBvES}7MZ=uY=Es--GKt6rk{K2yU)YY@6uADsu$n$Bd*(4M59t1JpU+PN7 zL-GQN@A-i$(;K5s3hXfyKxo0yk*U%qWvx}%@_x?8G;^gJYlZD1O5l3TOwi`+^( z4Ds;r7?bO!;GK~^+(Xmn1hHE`B&J3PlQO;z`Dwp?{o33R5~^@~McpRbi<7fTC~_*6 z=6eCRTDX#9%aYyFk4K%cc&eXS)DCF`+4Bdlhg=5-$E`lawdUvF0Trl~Y0)Y^rUZMp zTq|9@{I)cNIa~xcc;g8kboS;STg|hoO-jAb$z5Z>8_*@3!YODDA z#h7+|6St;Oyq4f-dSYAo&^_X`oNjjcY^YAd&PuTCN$=$H#KB$pfX_$0oi%~hvL=1d zn#!f@VOok&U(4unp4eQ)ldGb$puDQyGgC6$ZU!)@(R#l|j%-c0jYtXft>&(Xh{zZn z9bK&|-!o9Nmq>{)cQ?0XA~Wjp8Lf2hc|8I1sE57 zKRVQLA1@r-V^lx%?fw#l_iIHD`s?KkyIv4IqXzRvM-P4uMKLURMr zvQkjWp12lqiKKo)<#!a824>tKg~vGuxw$wwo#}|{-t@!kK(7UQC|iC)7c^<2nEs-f z-iuUWUC;9qoE`Rl3n;@zu{Zc2m3Bf?_l~VV=rq*Xu!IA*Z}MYT+*ckezomJpcnM}) z57&=!&QkLgiTZ5c1xq3fuGbmURlUMP9N})Q!JIjXI?>z+uj0`-{E<-MRJYLgrJvEw zo{hzDA6Fxn4Rc=EN=M`XSrqy@#OOr#Y5ce$ylxEWex`u*1qEr&W>w>kUBirJLt;`m zFdyP5M`z!HIGBH%h+VLaiHU(bzIx@*t<0OC-qw@j#zokmWy)Hz^};>hZkfZPbd0S% z!EV7XkxIiqdu&zk$os=1`}^q|7cqFcuo<1`OqiSDIqIDh1j4YFN8R`Sp{}^r_@z_^ zqMy^098cOgXScFu|Mn}eVI!dC3rXZ&({LpJOLGzYktbc7a{=qi0h=TpDVEU_6w4UV zBrNPx;bZn6cxC=IV~Ve02NkTjQx#0pRYK!Q92N2ghPCE(R7z7uVPdC=LJ_7(?)W2d z3SiS`wb++vn`_RH3U;FK16N!2b-}cJ%)4qmkFDe#wd&%U&)9i3*)S+s08EaTlZ_U3 z9ff6TPUOucIBo{VQZ*AXpaWg~y0}jFExP&oMH_l=MssDI(%4>N2Zc4s&xjT_dDjRj zFxj2W0`TR^=VjlYVU4dqBkL=MgoGAFO7LEkN~-S)s>_=1huRVUXITID6Z}VTwyq+A zQgS26fx38U5YnH3!LorSsh_pYKT7J}%!5m;o8+J|z7tFRU}Yw46viBZf{R;5(Zc1FM$g$d&J)N8$vh;6%Vu1c7k} zz65pCw3$UAJBA$!*|OJ~67I{{|AcTOufi;ZfWQp2kK-Pt*ucBYCnoKwU_dwSk5cQz zmfeFWd3jjpbRO_qbsaA83JlHIC}uV5kGmLSZLX`riBRZNKHV}?DeJ?ef3A64ZF>;~ ziI6p(kumhhH8BjWeiT8=||j6Caovk zF8!=E{ClS{RWs@#agzio%7P7W4q<=}+!;NDoFPm(igTsiFxd9|9|`XXW;)dC;Cy3i zKc&Qs--vHGKIeT8YaOSp-e2PJbmVUpzc>NW`#G5JK`Rj;b2!{%r;2s^a9 zU$}%K3f(|J@&rMWv;pH_6I{gXV~;d18FzOkK{>$!y*?Yox+K&RgbiE&S-6vfLO&4H zei~u01YK}sp{%St=iVKS1*!N6aW|Z{Lg&iaLTA^q?fI&*D6q7RkSC&jj3{9N7N|-N z@tt_yVMg{5ASzZ#F6{jm|KpbRcE0aEI8Q-BA1lwMcJ9(3|W7wa4jDSwB zlfVdamyqfb_65;duSr?lf5Wh7RN~H^nzPZ=Zm&AWXTf=tgg1fLmD>|%O|O41US3`v zsdj&(HcOWJy9=@W$-nt-GK>MY|56iQLt?rs0{7ez3Db_PVG8*5JcHZ3(O;SL;$8EE z^39H^6WjBRTEk;ythtA&xw&SCs9t)CRD|E&X|5RBmfzBfy#CQ0-FI9TEr zLwf#HFzm8<-Q3SiM(=Wv(SpadFZ-W($p7O@U61fsiI1?w%J7J3+oRqvaLsT~ z_52JNTmcgWiClydbBl3fa1alz2rFn}V zXSyg)KPRXp?N*xR--sO=UT660Wri)#zJ=D;)}Cx+@&8#F%om^Hxh6R?aaUw$5n&GF zJRX0eUl81%od~#m%|L{1jjz~@PJJGmASKE+KGcW$Z1JWzJZ0X~_vC~s_{*!;OE2=f*GR(TG!SXVQ z&@V#qPbRo&?^{}C!1q8inqQFW-dQ@<;^0Diazb6)-jbYwhU*tA*1BLmY8HF}g1k9| zkdnrmutqLn*q{NWM#q;Qy@ZzX#?YL%$IaVSsW21cKP+neNihfx0D`$Dh^m(b)-WrvdQp_q;v6myK0Kj zs(c%p{5+|nO2ixPiRxEw^b=kingy6$|1MaQ7a}_c&iFBJ`TbEn3z{uiQk${0I5!#& zT28^>O`CHrIhdT89%$EP5b4e82)l`ePlNz0%DTLHg2)AEz-oEmUlh6RR+zkPu6tBl zv6)!!s2%BXZVqpY!Iq4z{cFcT$MvzizVDxBDKNiDY;pzcxL8vzw5)j|3+Pg&1(FH( zR#nDG)(Eb}7u&>+Ocm>*4Jp}GVD2sA6b}wjv#_mSLLsXVcBgun;?~I&4VkW{OvLu~ zB1EdWgV5i7=-7kmX>-4VSui5j@dJm-1)*DWX5hMltnnon)))Lv2n~wbu8m4ZGI}oE zfv%1)U2Oh*nREf4-8=)L1BhrhNNpz8uRtFR3_1uWsOK~`nst#DQQ#sBzt_g-Hm($r zCQkZ2#6T!s!5mCK+nn2>LTm@C8dfk$fkS8i%Tn=_CQRhos-I<7Ug&Y#AR$q{3u@$I zMbvCwxQ*JDAeHZMylC{WwuA|X{mY}xkbY=+SmEqyq!?e@7BW z4fl;gkacyjw@4yFq99a=XL>mh@q=XqD~67Pw#I?G;Y5O$(Hd=vceoa_D7bKEI(An2 zYyg1aXprvB`ccD6r+5Rb)vH-P5+Bn322zV8aSlY{-$bEsGC@JKG=q)*Y_uCk^v7>o zXpbOd7ew!0djXcw{L2`HKNvOT*^Np*1^kd@=^MND5)*47;a-0e2K$?PUzYs8@p|pi zGTPn(SjGq}V;Gh(rNRJiKXH`64P&k3CetL5(`!mjrji7doMH3l-6r=mOV218t9P25b&Z3|T2v?(VtV z?~xgwyFdX%+C^41cx;2{#9d#2{`RM?Gw`4~r8$Iq>>e;(;Wt)6HO53dR`VfRms8*O zH7YBUss@oFk-JTJelj7D)xayJp9sbSqz9jnl9{ z{L%^rQk-ep*RLo+@o%N-yovvFdj5Him>Z^F#ORl} zxm8P20AaR%TuN)t^KOOa;QT=F0RMpalfyrG;QKr@y@|l6v2_YU;_x$>h!O!KV{1e1 zcVCspG{(vn{LTwdB(^V(BIDgV_ZE;h&9t-N;DFqSPftzA4%b(d<$`4Nn2#~6n(In{ z^~}ii?56BeZt%zNI#;_oQEqAL{agnZf5rl5Pmvb`pvz7HkbQFxk1Bpz3eC4_?Vgox z=GIZfyf+u*mtJW~7ne4#f)ji4yvf~Id@ozl6GMvtJ=gnmG2n05(UUzMIQ!!U;lev?|9nTgoj^>t9nbJZtrp+v8AqolYg641u{W%US=x0q zI>7ItTFBBJN6_ud_q9B}^T3mNPVd3WnKa_+Id$K8FkJHxB+8-L@mNi@S+JW$eW{4X z-~pR<na8fmj9nm9rZ6FCmMk=;ie?Cd83`y*_^^;;8s*1KTFb>pu^Nbtj> zpacY3hz`WqJ0KI^tDtlTJ?LoF++L+KQXLmoA*-rb6eA)cZUydKLoqzyV~;sy#&cO>1+nqbJ2y^cZOYx}7vC8!8Cm_!o7^$Q z)(4--`3PO%Ka||HHP({FkfBV+)cGcn^k+^rld-y~e2U4!e6L=C?ppz%`Vl^ zyrfF4dV&avU3DfE0W$<$SH8Z9?ZwZQMOe>*_2-40IFm>^A0Z(jmc|EH`47-V_HV5FjV z2x~AZzUPS?eeKSjQgm9}+C!rmB|S;(4T9B@MX-A#gAQ3&DF`o}b##Eo zQh;WOJH6csCU!fxa#ElZTq+!?j1nm3eq}QoI63-qCc zikF!H#E}P0TA-9IYAs|U{@BUAp693vv!f`v>--fHYWd5C%Jo|K;mXIdG0+UeV15(b zsGqbHlli2%bH@o9a$uB1Y5cO#DCogmo$4iof6yfAE;un1Tq-?%7t!wi)BE%Ft-LX@ z8UuHz7u6O+-oDS|KvwFM&@XFB&I{_ZIHU#1wv;S`+3G7nUCr5f&nvA8oa?FV}0 zXR0YUJ3ykkDIR2xtB6QL(>>>b-zSH-1=KI~p~l83yzYD69b3O(dHE58#EdmD1O!;u zznoywi}puN#iHptb3UF6Y5C9daU)nGT?{A3;9KN&Udww0x@RRo-!gC5BsbiDsq7B^;k~tY7 z4fY-+nyFLA0sv6QgUTxQyAK~@(p19A-gqr+MK4Cu_QnqmwfJ^Wg1=p~<9)f&hp}F_Mtz{|tH3_>EIV7H70;h3XUOu2;93THqfWO;rzUb; zixSj6y-VdH_`ogF*Y-Rgw18Z(gDBZk95^Wl1;x zdYNO9D`LiJR$}>QB=d5`mfRbkefCPV8@HV)cQ$lS4j=0EPhELF)No?_B=Bap`0nmR zepP-`Sl`NkeakLOsVINwvplu<6P^QBBzbT^bWEokQpUqfa}XyUIX!VAQ`38EvRmVE z%eSEy1HuPYugwt8&)Cgz7FykmHF+6XPReZHz~?u&&9z{9N-7HZwBT0qkanf1H)hov z{mIc>ZC%Fbm$}ZE!Id?9K&)hCXV2}d8;D?^EP@mzPg}o91lVY=8m-}mI6*D{{3!c_ z;HdIIF3g1D#+u@s@C_tYEOjMI5yeeR|I4;p0PQn-ck9UzrBZZ*^O4g;Mf9JHj^G=X zwqF+)nY>FHId%tR3v)n;0Y)5u%_$)n52OF;|NUpa!K+oHU*}yO=u7nep_NnSozzb! z>G{KAmEm@K2QyY&@2i`MZ}1`E@#VZ3m&yIBnK>6Yjsy zH4Sm`^SsQ9UdDf(Gxec(!L1e1ECP3l=u4p?57V8qPj?a$bJIvt^q&;9Rl-msT67cFsavZ5d_&T>{QNx5xP#o91YtEHulaJ=+!HcJNp z(>ZWNNihAL%Y$EwKR${y=tW4;isa;}!kM@wf=F@HSEKn#L#<;uZ4Q>qg zf=z!y2OdjgKuH`aLoRgUKAOWft+dyqXjTSEG`=mw^UK5r;Vll>#6%IeVZxT!XuuCk z)amZwNLzK!yY1NI#PYdy#`%;a7xgsJdM`t^w0^_EFZggq8PLjE6S!K3Gs&6lS;@9* z30Zq!-`NWC0D&FRp6)-qwk8Q|Rq?T;=9!P0-YfjSG( z-Py4Y$@8{(`!F!w5~?FbYdlp-9l5)gxIm!#Xdbj#IklG+D!J?=U-nD#d+6q1AQClS z|5$G3a>gab6HFJF1)XH0Aqj1FcCzr%5OnXNLTs0^Lm9K5XqgYQTwQ@k{ZX09N zfJ4XKDGG zx{Vj~?y;JB*b@045#w+Br@^A$+2{+#s_iZ%ze`hOg48q6SListSd!GhU(NsOZfVb-V>!@9!!z1-VHHuOsiLXY&vYdc7iD4QG6(>Vh zFr#a+m6`kr_+APH3u1~emJc?lAtWE~55V9D4;qa_!j z&gonAJX4Aa&qkBqJ>1VuubqLp4fVMRkm?TK>eq$@Qc?||SNsgD7C`CXuIvPSGQ#^= zKB3p8#30GOmu&(- zXl76Whal>Cn-UOz+XB???J-sJgT<_j^$+GP!*#SuSN5Mh!IK^^ZFyrcb#)L<%He1B zBoF&_lbQ9h22eN5uGv{nM~ad`#h=JPGBH5*Ud}gO=-z_`b8UYtcFLAn3)?-nW&%B4FQ{O%mlSW_aY=!e(?N11)i3? zQ*swCo9tcK6FzC@m=v=??a(3cn6en%JDy=(`oRMJxu%> z%(~iv8&ut$5+glbbjMr(62CkFm0JrcS?OZx;!uiM54e#b@X;sz7M_SthC!^q_NfcC zT5KBhyT4@5;jx6@P#Gssg>4_VO;mqNah$O2hSoDtt}~A+^A_gW{Gkyr;N0Knv%@l` zEb;{H!--?k4YEoF04qp-;hRC(sC*1B5Ark_&kcORUFfLe6@KB^-UYojLUa`0HEp%9 zMa54F&SU6 z)_w)Md!-7D6~>Ol0qW!5K*j74*GmeWr8;~BJ~G~q1@sEDU-&Vb?ky*gX(C@#@+ZpS z7ei1pDb9x;y@vfFL{Tpw45Fa6E4IXg<2_n~J9TQn=Gm7zEh1g50O#=)-clQ0*1O8E z8}8>$bO*DK5kg!lTO~C2uU?;VyA0JC?{+L|QiAVI*yhh>tsR`RYkoD-IUzRyyAl?j ziQG0w-fO0$o@CeZ-ktLHS*Zvagg);Pz0Rf#6M>~bWkokr5H#u1%8%p(yZ8JMMPnD6 z3|$a;1eZ%&T+|LnB>B&9fwsCwQcZcTpVc=z~1{6&@anWx7Llz{a?KYh=5JiaOZZ`8^NhZ##TvB|uA;evJh zrflbr5=Zw8#TlxWz`eF?ltLKOUUv9J1zOuc`#gPJKJ8ZgYtHY88;$IC9Wyg!F9n;o zQV{ijBVr(Zitx}7rUqbamtVrd7P4ETk1+0EsG!I6fxE#R*_i>f?RRW$FO{{Q3;A;7 z{~J$1czPzXJkv1t!#83W*oEQzm)I2yj6~hK2fvsSI$Y4OG$wjqe+oQV6=>Io12c@6 zKWWmRpUjC?4s0kw2gCf7M*G2(Nf57eG51PF5WBSE5p9Ni0JVez7p*ERLw1r-zFx77t!OiCsGQd3#7(u@5Q2h-;7tRQ@HNMzc_Tw?Wc<|2^XvWb6e7Q2)j|4f~;JMqY0JqoetX&Q{UZ151`{SZL~j zPYCQcz?h-g#|q!yV~+mbK93-7@O|i^k0+lc`IB%q!qqRf$Z$kK3BS_k`%+tTZC!M$ za({dNrj~BTb_RW~2=)1(p0RpqYD$C+Nc;h0r{w#dHuEJ2$78&v)Dkf>0N z`Z&y?aCh!|fk!YAFMBW_Q$rEFYz*Q1u$y;FCrkeM-~a#`juO+)tX0C{*jRe$^ZZ*2>nXNFs(vR#uwR@ z+9vSld$Z~E-`jq*?Qy$P=0fQrPk*C58vG($PfX4il1mEwbrXjC$8u#!S-zMbc>+IX zLn*U~yOKI^*e`PxY&&l7ebg5kmF@QPz`Pe>_xsAhR^r`v)_Yv#7ogN=w8HjSdeF~2 z$5UaK$7D(~BfJJ=AzK_5af7jclhTz-U{dI6uLWbbR_hvHctPrnBI|xANxl$Uj~Nm=FaI$>j-aE5tb{Q`R=BM;3n}==YB%s-vI+pnf>ELvT8Jnobu45s{&Z%ta4(h9?;&Yw>{XKEUO;}W&drz#=;#%SL)tZ>$Dv2vLvmHtUYym zv~I1)SnH33ZgNkA!96OaV?)U}0^2d^O`#fR4 zzD3#vktnR;q9Z%IKgZFZpRJgGMmX=by3IBI_@vvJn%0|hFZ-f@kRjM=tD7%&us%>% z=(&3EEZ%D#x2jE9&U0#e%_(R*laUxuLT>ZDgU;On_KVIN{xAbHoPAeaKr?2$g8 z>P9Rrtc6+9!gvEvb;I)9bM*_{1uoA^k81fMOgb0EAA!S_a?2z4q(Q;rRXc@g^YXuu z3^u)P)GMk%Qk(ZAG&5L^dk*~O&SKm`!BsAmqYHzW;n|Y%0aMyK)bBEx{b#O6e5j!! zY-AX5Qm4ScrEI;g?u#FL7_BC|fsVPc|-lZ~wV+ zfbeS%o?BZ4rtcY(B#O4f_F7Fu*J6Yrvd-1ubLJw$vaV9K9p^5J6n+$TyU+OX^7L+v z8%N-U3R0K%rB(PhIrpQ;_{`V$#u>w(2BIu2kyZ1<2$K~IA#}ejJDbp&;x#@903m}z z@XLjMV~d_~;-^<`8Rh*!IV{{77K%M`&cYeKFe#v#)>k}to5y|oDa)J>m_-S(pNOu7~D z2{}}+>04hsDI!YvurM+Rzi3VM_TDEWcGMd5OJ5Aqz@&H-^eu$4HwrdK2kGXTsMO7j zp{<6bs)A6sFi+8*N7WxM9>cFgIka#k>>b%++aqOmwUO8DkD3Gx-LpTMD}W&QRbSVW zLxAGrjer-9d-auERWH^`OeIDkC;$BX{}V@WZp1IA*R%@E^teVvUGr0T?grdZF)~V8 zdNwoQ8XeVj9z1`^1BIvtZ|~*LFE~b;u8*K+vqnsejIItqF!DRUXCMn_i2X9C8-e@3 zU*iTK@reK*UwnWZ#lgYkrH5Usx48l^*Jl0Ex2hS|$%2}ur{>?_t$5G^gq7RT7XinomFP##IfBq?_E&5|L(7d1+v(8Yom7kaL{}au^!Shh zIKgn?5xx~$2cCUg5CqNybPUG;{rnVbCw49-x8yAi&oOx`!mbYsMp=JmOAs6T=!coT z^>hxHnwk=G9w{uX=aF(|1#h0twLNRT#rAam`zbDnZ{OZ=95>`8s89bN;JNK9gD4uH zZH(>Mb88$0-7GDAzM5}wW*a=WNj^Fv(t7X^PznhN8S9Q|?r-O?i3Jb)`A^GXx~>vH zrC6wuhH{j{KR@{50;}BK)x39$9vM@7&8Za+R8Lu)RduUykC9TIFHP zTysNwaUZ`@s z(?kgI@JP-~xzc&JM__9%&4yPqJU;W8Y;vdn(|*y)z$KRVZanQ=hEnx)y!7HE(auJXY?&*~X3~C)LejC@26wtw#dRS=OFk~DOR>%g8*^p1 z83i-;8J`Ew8VGT`YJ~gTJ{k4agH6_P{VpdVFxaHwCh*d}Qo_>?o2YS)|E`4NfVV59 znAfs)es)P}ak1cd76O$Wb#7;FLAw5ggHZghWoeu+Eo3?)OuNkT+D`Zy_&T=ooo=5V zSw>ttZ*s|ca#r_7g$0W`dx!MF@j+aJEb!8{au~PXg;HPYP5=#4f5Mmo`wPF)JGao@ zwz*<=kPyzryfk->R=d8AXVLjK{-Efg^V020DEkj2jQWO2DNJr9c73E+o4Fz;hX=(j zL#v!bD<=^eYFSat!>~E_6Tw<%6c&J6Zj^h_)S^(Lc{dsVd1sBLf)*Cw{H3>ZOFZ&& zna!HCm?AtNeT`a)QPFqm;ZmKOj#6y+0`{|1?jy@P$(LcrcJ@=oDpVI@5s6e)gvMZk zp{~tk2iG@8Dib#8ssY_GU*rnem@8=OD{&=?)(UYRX7arPI#7$D< zhIN|csl?_`OFPbgpnfNkzw{$r4uDK-^yqLDMuhc3Z zq8>USD)O8j=>voYd1&x_=xKlJmQ70j`jk72$7JK^I4(?Vd*eBxQu}4b*26bDo~Nv( z7#JRt%_nQB`5yHy@wjbjZV8DpJU?f+I~Z~lHTsQ~#ymS%@&B}T=7CVIeIFl$vX>k= z6GJ6JrZ|x-gE%c@DH*aBNip^<%M1x6p=1l8Qe+v+u`grEuA#ETU=%}^F^qK>Gw(I^ zJn!?o=RME!K7YLPpL@Bk>%QmueLuhN&wbs)j&GZvQOvUrm+aiY2hk3o4Nttp$G!5w zb`J2<@ZpkLS5L&N6i8^Dr+eGEABD*Ac|1!+o?|}k%7>sOQoTj8@;9?vn&tc2MXDnthQrelSMy_U^aF|36Q*@4<1<0v` zS;O(&+pUF54)?wuML)7%GTRj36dBRh+kfpklpZ#v1ealRjCyOwZK${ZclGtfl~tGU z`XwMh3twvC-<^d1{R=Ptv^Qs!I4lGE%jpWhcL zYnuJ}YBs;AV?mG*Ruc>(L+-iW#2PZ2|H*Rln~!0lRuL+C10X{8`n=88g}%JwhO(LP z1-ngibjeqp&)Sv*>iNE2lRt$1UYufOCG*Byk?+VZk&*Z~B{B!q9iU?{XB{ojEcb_0 zrsXV$S#CWK>Vcf)cJ$G`7DQ+Ol!~H##PgnSm;iuz^j5{4*HK8Il%JMVFRrW2k_XV< z!sTtvphsXC_IDMq6tPXKapA7YZ&^~`>7e_DlA2&!TcZ87AjCFCWCSAlWyQ$WPuILs zv)n72H6GS%covf{1axl8R?q=TN7E$(G$ALMi)LqL4zBLf)7p?+F&^T=Nx&W~s@PUcFKKO5wi9$ZVJN@~d`E*uPDNH9J(%}jfnbbY+uH;*{KlDxV- z2I4yUof@fu{zOjyAkVV%Xh&;Yj2+Db_r-X~wNMx~F zVX0jA9>-xnPpxp+S4;S%7V!Yl==_QM-F6CP4+hlFY>W zvft>zRnrc6l0O`-CE@<2o`bI-hrtC*o@2aXF8!glrbnb zR7QMw_9_Ve-`f1Y?qpcix>{?|#;~X;R|q7SLa2PrK&7X$uF%$blNYig9iT2OBrkW% zj8`m{e%JrA)@K64b$Bq@OOxlAm<@OkQ$YwD=f$GP1~Eu^Ex-w0;fi8~iQ_HVPWt1u z&QqAOpKUBmxsT#9I-VgW$XfQ&OjlILGh7;$>GKm!j@`K1?dBafeGyddIs$jWbY>pE zx6Ax}wB^C`0)1s!XrmKxYqfB(xX~Tw za4k&P0LQDC@MlnU50F-c>2QL!-DxBAs9gn@{c^5oSuEK;!%#b&TEiHoZk(;4D|^;z&Dt`ZXoS?zspjsG#uUuw*uq%z zQm^YhhzBa?m6#xXFghw}WFaQxjgE=OG1#h@=IJ0|YhFOmPH$C;&oaeVt?s4Ei6Qrn zZmW7bha=aFl5q?bTD*F^Ypo@DhoLQ1i&`q3-s*`6z0E-X(E`_*$uxj=%|orR%z<7q zeru~&l(feG1`FP`Bc;#0XQbM9tH$`iED;Aq_*irZ`aiq|UHwGno^=y;(#>E^@F$7JH+r~()_>u&4H6ldxGyR!guD9NL&b8zZ^Aof&Syp6Q37n^!#w~)JwXVD z?YE0i`L2H(5g%Sm*Td#kG|BR8ho*aQTY|H*k_E$S#kWQ!qICvs0m`28*iB^XLLa>B=<*lT`w2o`Bd{Zpr~DsOdzQN- z&Lj6n*uPmA^DlS3EU0UcT5>mKQC9ECYhCUFR(IzkhF8X8mufqcMo|oioj40 zIgEt|kn{Su=8l9m&SQ0;3#VJ zz~Oh4x-ph5djv9aknJ{W>zZWq(_}wuNix@gL$kRT{o#i)!14 zxKE%uDoN+m;gYm_k6>pM03naZ>zwXTnX+1EK?Ycw?38QO#RgytqZF5vwbS&GD#s4FBIVXY`vm+BUj{Fl#7v21Hy?zIt�%cP?$)+ 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 literal 19155 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 A=l}o! diff --git a/icons/mob/inhands/weapons/staves_righthand.dmi b/icons/mob/inhands/weapons/staves_righthand.dmi index 202bab9e2152f55358e253ef3a39f02982a911e8..4d366d950f49db8be78bc66d29d4c4541944b848 100644 GIT binary patch literal 25954 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 NpS3V3)VqB5KLB?+=+6KE literal 18572 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

    s2M3P8GK*^#65e6}U3ZfuEvLHDMN)i}A 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

    c;$=Z0NYg4lWKKsy6 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%0A;@ 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 literal 409287 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÷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%0Aq4cjk;gPp9eg8Cyd*0 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

    n@Um-$O+X{^@aeoPFa!F-_IQ?+SR&_JtRQDSG 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

    mWw-^zX8xe>fKzizE{Tz&v*W>?$k_Y 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

  1. 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�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⁡%k)vOsJ6CYr*vq205S_co^*jXJpV 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 R&;tnknHgIdeKc^6{2x{g8=U|E literal 125506 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 Date: Mon, 24 Feb 2020 13:17:08 -0700 Subject: [PATCH 133/175] k --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 5867211af8..9822109859 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1124,7 +1124,7 @@ /obj/item/twohanded/electrostaff/update_icon() . = ..() if(!wielded) - icon_state = "electrostaff" + icon_state = "electrostaff_3" item_state = "electrostaff" else icon_state = item_state = (on? "electrostaff_1" : "electrostaff_3") From 26b908f53d2ef9cd3d9abb14124bd74098f68265 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 24 Feb 2020 13:19:38 -0700 Subject: [PATCH 134/175] thonk --- code/game/objects/items/twohanded.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 9822109859..10bbceab4d 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1033,7 +1033,6 @@ throw_speed = 1 item_flags = NO_MAT_REDEMPTION | SLOWS_WHILE_IN_HAND block_chance = 30 - materials = list(MAT_METAL = 4000, MAT_SILVER = 2000) attack_verb = list("struck", "beaten", "thwacked", "pulped") total_mass = 5 //yeah this is a heavy thing, beating people with it while it's off is not going to do you any favors. (to curb stun-kill rampaging without it being on) var/obj/item/stock_parts/cell/cell = /obj/item/stock_parts/cell/high From 00c70acee936304b2faac57db2af2e06c0c5159d Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 24 Feb 2020 13:20:12 -0700 Subject: [PATCH 135/175] Target wew --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 10bbceab4d..24cb265093 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1222,7 +1222,7 @@ if(user) target.lastattacker = user.real_name target.lastattackerckey = user.ckey - target.visible_message("[user] has shocked [user] with [src]!", \ + target.visible_message("[user] has shocked [target] with [src]!", \ "[user] has shocked you with [src]!") log_combat(user, user, "stunned with an electrostaff") playsound(src, 'sound/weapons/staff.ogg', 50, 1, -1) From 270c5f26b5d46d1cd117857ecc0bc07a9c16902c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 24 Feb 2020 16:12:47 -0600 Subject: [PATCH 136/175] Automatic changelog generation for PR #11192 [ci skip] --- html/changelogs/AutoChangeLog-pr-11192.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11192.yml diff --git a/html/changelogs/AutoChangeLog-pr-11192.yml b/html/changelogs/AutoChangeLog-pr-11192.yml new file mode 100644 index 0000000000..4fc73ee199 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11192.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - balance: "Shooting the supermatter now adds to the supermatter's power. CO2 setups beware!" From 569ea6bd615beda1f8f5a612705e6ba733483b87 Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Mon, 24 Feb 2020 16:36:45 -0600 Subject: [PATCH 137/175] unfucks paramedics access + PDA --- code/modules/jobs/job_types/paramedic.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/jobs/job_types/paramedic.dm b/code/modules/jobs/job_types/paramedic.dm index 7c617d3208..4417fa8b35 100644 --- a/code/modules/jobs/job_types/paramedic.dm +++ b/code/modules/jobs/job_types/paramedic.dm @@ -11,8 +11,8 @@ outfit = /datum/outfit/job/paramedic - access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS) - minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS) + access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_CHEMISTRY, ACCESS_GENETICS, ACCESS_CLONING, ACCESS_VIROLOGY, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS) + minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_CLONING, ACCESS_MINERAL_STOREROOM, ACCESS_MAINT_TUNNELS) display_order = JOB_DISPLAY_ORDER_PARAMEDIC @@ -34,7 +34,7 @@ r_pocket = /obj/item/pinpointer/crew l_pocket = /obj/item/pda/medical backpack_contents = list(/obj/item/roller=1) - pda_slot = ITEM_SLOT_POCKET + pda_slot = SLOT_L_STORE backpack = /obj/item/storage/backpack/medic satchel = /obj/item/storage/backpack/satchel/med From 53d5328c0c8734a3b215c581c879b735196cc101 Mon Sep 17 00:00:00 2001 From: bunny232 Date: Mon, 24 Feb 2020 18:49:34 -0500 Subject: [PATCH 138/175] Update sentience.dm --- code/modules/events/sentience.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/sentience.dm b/code/modules/events/sentience.dm index 96b6cded58..2d39e4270a 100644 --- a/code/modules/events/sentience.dm +++ b/code/modules/events/sentience.dm @@ -24,7 +24,7 @@ /datum/round_event/ghost_role/sentience/spawn_role() var/list/mob/dead/observer/candidates - candidates = get_candidates(ROLE_ALIEN, null, ROLE_ALIEN) + candidates = get_candidates(ROLE_SENTIENCE, null, ROLE_SENTIENCE) // find our chosen mob to breathe life into // Mobs have to be simple animals, mindless and on station From cf23018b6a852397f75c5310a90e482eee5b7242 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Mon, 24 Feb 2020 22:51:43 -0500 Subject: [PATCH 139/175] Update snacks_cake.dm --- code/modules/food_and_drinks/food/snacks_cake.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/snacks_cake.dm b/code/modules/food_and_drinks/food/snacks_cake.dm index 89c4637ed9..f2253ee760 100644 --- a/code/modules/food_and_drinks/food/snacks_cake.dm +++ b/code/modules/food_and_drinks/food/snacks_cake.dm @@ -389,7 +389,7 @@ obj/item/reagent_containers/food/snacks/store/cake/pound_cake /obj/item/reagent_containers/food/snacks/cakeslice/peach_slice name = "peach cake slice" desc = "A slice of peach cake." - icon_state = "peach_slice" + icon_state = "peachcake_slice" filling_color = "#00FFFF" tastes = list("cake" = 1, "sugar" = 1, "peachjuice" = 10) foodtype = GRAIN | SUGAR | DAIRY @@ -410,4 +410,4 @@ obj/item/reagent_containers/food/snacks/store/cake/pound_cake icon_state = "trumpetcakeslice" filling_color = "#7A3D80" tastes = list("cake" = 4, "violets" = 2, "jam" = 2) - foodtype = GRAIN | DAIRY | FRUIT | SUGAR \ No newline at end of file + foodtype = GRAIN | DAIRY | FRUIT | SUGAR From f48fd43e82b23152fcf580d74ff04b4a3c91e990 Mon Sep 17 00:00:00 2001 From: Persi Date: Tue, 25 Feb 2020 00:29:19 -0500 Subject: [PATCH 140/175] Fixed dining room sofas, oops --- _maps/map_files/KiloStation/KiloStation.dmm | 34 ++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 7b50420132..a645dabd18 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -31610,10 +31610,6 @@ /turf/open/floor/plasteel/dark, /area/science/research) "aXY" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 1 - }, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -31626,6 +31622,10 @@ dir = 4; name = "diner camera" }, +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/crew_quarters/bar/atrium) "aXZ" = ( @@ -44039,7 +44039,7 @@ "bqK" = ( /obj/structure/chair/sofa/corner{ color = "#c45c57"; - dir = 1 + dir = 4 }, /obj/machinery/light{ dir = 1 @@ -44642,10 +44642,6 @@ /turf/closed/wall, /area/crew_quarters/toilet/restrooms) "brE" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 1 - }, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -44653,6 +44649,10 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/crew_quarters/bar/atrium) "brF" = ( @@ -44681,10 +44681,6 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/bar/atrium) "brG" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 1 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -44696,6 +44692,10 @@ dir = 1; pixel_y = -26 }, +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/crew_quarters/bar/atrium) "brH" = ( @@ -44708,10 +44708,6 @@ /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/bar/atrium) "brI" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 1 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -44720,6 +44716,10 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/crew_quarters/bar/atrium) "brJ" = ( From 2aeb1e1b4a7e688620e2c3837e5801ab68ca36d2 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Tue, 25 Feb 2020 00:32:45 -0500 Subject: [PATCH 141/175] Update overmind.dm --- code/modules/antagonists/blob/blob/overmind.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/blob/blob/overmind.dm b/code/modules/antagonists/blob/blob/overmind.dm index 5d3c8cd8ca..fe1c700014 100644 --- a/code/modules/antagonists/blob/blob/overmind.dm +++ b/code/modules/antagonists/blob/blob/overmind.dm @@ -24,7 +24,7 @@ GLOBAL_LIST_EMPTY(blob_nodes) hud_type = /datum/hud/blob_overmind var/obj/structure/blob/core/blob_core = null // The blob overmind's core var/blob_points = 0 - var/max_blob_points = 100 + var/max_blob_points = 250 var/last_attack = 0 var/datum/reagent/blob/blob_reagent_datum = new/datum/reagent/blob() var/list/blob_mobs = list() From bf8a91b4f728fb157f2a565a74c850ba51ca222b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Feb 2020 07:22:34 -0600 Subject: [PATCH 142/175] Automatic changelog generation for PR #11238 [ci skip] --- html/changelogs/AutoChangeLog-pr-11238.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11238.yml diff --git a/html/changelogs/AutoChangeLog-pr-11238.yml b/html/changelogs/AutoChangeLog-pr-11238.yml new file mode 100644 index 0000000000..c268fcfdb0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11238.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - bugfix: "Peach cake slices are no long made by mimes" From d37112d330075b05790d17797880df07f16699de Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Feb 2020 07:23:59 -0600 Subject: [PATCH 143/175] Automatic changelog generation for PR #11212 [ci skip] --- html/changelogs/AutoChangeLog-pr-11212.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11212.yml diff --git a/html/changelogs/AutoChangeLog-pr-11212.yml b/html/changelogs/AutoChangeLog-pr-11212.yml new file mode 100644 index 0000000000..62d6c4fb19 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11212.yml @@ -0,0 +1,4 @@ +author: "r4d6" +delete-after: True +changes: + - bugfix: "fixed a missing tile" From 00403a39c6a221a88863bdbcd31153500624f758 Mon Sep 17 00:00:00 2001 From: Artur Date: Tue, 25 Feb 2020 15:47:15 +0200 Subject: [PATCH 144/175] Reverts tracker changes somewhat --- code/modules/power/tracker.dm | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/code/modules/power/tracker.dm b/code/modules/power/tracker.dm index 69d2564892..16775edf48 100644 --- a/code/modules/power/tracker.dm +++ b/code/modules/power/tracker.dm @@ -47,11 +47,14 @@ /obj/machinery/power/tracker/proc/Make(obj/item/solar_assembly/S) if(!S) - S = new /obj/item/solar_assembly - S.glass_type = new /obj/item/stack/sheet/glass(null, 2) - S.tracker = TRUE - S.anchored = TRUE - S.forceMove(src) + assembly = new /obj/item/solar_assembly + assembly.glass_type = new /obj/item/stack/sheet/glass(null, 2) + assembly.tracker = TRUE + assembly.anchored = TRUE + else + S.moveToNullspace() + assembly = S + update_icon() /obj/machinery/power/tracker/crowbar_act(mob/user, obj/item/I) playsound(src.loc, 'sound/machines/click.ogg', 50, TRUE) @@ -70,14 +73,14 @@ /obj/machinery/power/tracker/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) if(disassembled) - var/obj/item/solar_assembly/S = locate() in src - if(S) - S.forceMove(loc) - S.give_glass(stat & BROKEN) + if(assembly) + assembly.forceMove(loc) + assembly.give_glass(stat & BROKEN) else playsound(src, "shatter", 70, TRUE) - new /obj/item/shard(src.loc) - new /obj/item/shard(src.loc) + var/shard = assembly?.glass_type ? assembly.glass_type.shard_type : /obj/item/shard + new shard(loc) + new shard(loc) qdel(src) // Tracker Electronic From 3ab027aca6e0d8be95879ad678b6e0ec07357723 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Feb 2020 07:48:40 -0600 Subject: [PATCH 145/175] Automatic changelog generation for PR #11169 [ci skip] --- html/changelogs/AutoChangeLog-pr-11169.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11169.yml diff --git a/html/changelogs/AutoChangeLog-pr-11169.yml b/html/changelogs/AutoChangeLog-pr-11169.yml new file mode 100644 index 0000000000..c0d150acb5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11169.yml @@ -0,0 +1,8 @@ +author: "PersianXerxes" +delete-after: True +changes: + - rscadd: "Added Kilo Station" + - tweak: "Adjusts Kilo Station to be more in line with Citadel standards" + - imageadd: "Added area icons required to make Kilo Station editable on Citadel code" + - code_imp: "Fixed a reagent container on Kilo pointing to a nonexistent reagent" + - config: "Adds Kilo Station to the maps config file, does not fix Meta Station's population requirement" From 5bdbe1a60a8d9b60fc59aebadfd62efc3ced2606 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Feb 2020 08:19:31 -0600 Subject: [PATCH 146/175] Automatic changelog generation for PR #11236 [ci skip] --- html/changelogs/AutoChangeLog-pr-11236.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11236.yml diff --git a/html/changelogs/AutoChangeLog-pr-11236.yml b/html/changelogs/AutoChangeLog-pr-11236.yml new file mode 100644 index 0000000000..bda625e02b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11236.yml @@ -0,0 +1,4 @@ +author: "bunny232" +delete-after: True +changes: + - tweak: "Changes the simple animal sentience event from the xenomorph preference to sentience potion preference." From e02a6f6deaaf12b9a645178479f1a4b0d16e339a Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Tue, 25 Feb 2020 15:37:02 +0100 Subject: [PATCH 147/175] Fixing virology cause someone didn't covert ALL mob/species biotypes to flags. --- .../modules/mob/living/carbon/human/species_types/bugmen.dm | 2 +- .../mob/living/carbon/human/species_types/furrypeople.dm | 3 +-- .../modules/mob/living/carbon/human/species_types/golems.dm | 4 ++-- code/modules/mob/living/carbon/human/species_types/ipc.dm | 2 +- code/modules/mob/living/simple_animal/astral.dm | 2 +- code/modules/mob/living/simple_animal/friendly/bumbles.dm | 6 ++---- code/modules/mob/living/simple_animal/hostile/hivebot.dm | 2 +- .../mob/living/simple_animal/hostile/megafauna/swarmer.dm | 2 +- .../hostile/mining_mobs/elites/goliath_broodmother.dm | 4 ++-- code/modules/mob/living/simple_animal/hostile/zombie.dm | 2 +- tgstation.dme | 1 + 11 files changed, 14 insertions(+), 16 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/bugmen.dm b/code/modules/mob/living/carbon/human/species_types/bugmen.dm index 718599c550..e2e41330fb 100644 --- a/code/modules/mob/living/carbon/human/species_types/bugmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/bugmen.dm @@ -3,7 +3,7 @@ id = "insect" default_color = "00FF00" species_traits = list(LIPS,EYECOLOR,HAIR,FACEHAIR,MUTCOLORS,HORNCOLOR,WINGCOLOR) - inherent_biotypes = list(MOB_ORGANIC, MOB_HUMANOID, MOB_BUG) + inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID|MOB_BUG mutant_bodyparts = list("mam_ears","mam_tail", "taur", "insect_wings","mam_snout", "mam_snouts", "insect_fluff","insect_markings") default_features = list("mcolor" = "FFF","mcolor2" = "FFF","mcolor3" = "FFF", "mam_tail" = "None", "mam_ears" = "None", "insect_wings" = "None", "insect_fluff" = "None", "mam_snouts" = "None", "taur" = "None", "insect_markings" = "None") diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index e2adb2acd9..ab86b2cc5d 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -4,7 +4,7 @@ default_color = "4B4B4B" should_draw_citadel = TRUE species_traits = list(MUTCOLORS,EYECOLOR,LIPS,HAIR,HORNCOLOR,WINGCOLOR) - inherent_biotypes = list(MOB_ORGANIC, MOB_HUMANOID) + inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID|MOB_BEAST mutant_bodyparts = list("mam_tail", "mam_ears", "mam_body_markings", "mam_snouts", "deco_wings", "taur", "horns", "legs") default_features = list("mcolor" = "FFF","mcolor2" = "FFF","mcolor3" = "FFF", "mam_snouts" = "Husky", "mam_tail" = "Husky", "mam_ears" = "Husky", "deco_wings" = "None", "mam_body_markings" = "Husky", "taur" = "None", "horns" = "None", "legs" = "Plantigrade", "meat_type" = "Mammalian") @@ -57,7 +57,6 @@ default_color = "00FF00" should_draw_citadel = TRUE species_traits = list(MUTCOLORS,EYECOLOR,LIPS) - inherent_biotypes = list(MOB_ORGANIC, MOB_HUMANOID) mutant_bodyparts = list("xenotail", "xenohead", "xenodorsal", "mam_body_markings", "taur", "legs") default_features = list("xenotail"="Xenomorph Tail","xenohead"="Standard","xenodorsal"="Standard", "mam_body_markings" = "Xeno","mcolor" = "0F0","mcolor2" = "0F0","mcolor3" = "0F0","taur" = "None", "legs" = "Digitigrade") attack_verb = "slash" diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm index 6da73f0b79..446e726256 100644 --- a/code/modules/mob/living/carbon/human/species_types/golems.dm +++ b/code/modules/mob/living/carbon/human/species_types/golems.dm @@ -636,7 +636,7 @@ limbs_id = "clockgolem" info_text = "As a Clockwork Golem, you are faster than other types of golems, and are capable of using guns. On death, you will break down into scrap." species_traits = list(NOBLOOD,NO_UNDERWEAR,NOEYES,NOGENITALS,NOAROUSAL) - inherent_biotypes = list(MOB_ROBOTIC, MOB_HUMANOID) + inherent_biotypes = MOB_ROBOTIC|MOB_HUMANOID inherent_traits = list(TRAIT_RESISTHEAT,TRAIT_NOBREATH,TRAIT_RESISTCOLD,TRAIT_RESISTHIGHPRESSURE,TRAIT_RESISTLOWPRESSURE,TRAIT_NOFIRE,TRAIT_RADIMMUNE,TRAIT_PIERCEIMMUNE,TRAIT_NODISMEMBER) inherent_biotypes = MOB_ROBOTIC|MOB_HUMANOID armor = 20 //Reinforced, but much less so to allow for fast movement @@ -969,7 +969,7 @@ special_names = list("Head", "Broth", "Fracture", "Rattler", "Appetit") liked_food = GROSS | MEAT | RAW toxic_food = null - inherent_biotypes = list(MOB_UNDEAD, MOB_HUMANOID) + inherent_biotypes = MOB_UNDEAD|MOB_HUMANOID mutanttongue = /obj/item/organ/tongue/bone sexes = FALSE fixed_mut_color = "ffffff" diff --git a/code/modules/mob/living/carbon/human/species_types/ipc.dm b/code/modules/mob/living/carbon/human/species_types/ipc.dm index 15f3dd808b..add0e17c43 100644 --- a/code/modules/mob/living/carbon/human/species_types/ipc.dm +++ b/code/modules/mob/living/carbon/human/species_types/ipc.dm @@ -7,7 +7,7 @@ blacklisted = 0 sexes = 0 species_traits = list(MUTCOLORS,NOEYES,NOTRANSSTING) - inherent_biotypes = list(MOB_ROBOTIC, MOB_HUMANOID) + inherent_biotypes = MOB_ROBOTIC|MOB_HUMANOID mutant_bodyparts = list("ipc_screen", "ipc_antenna") default_features = list("ipc_screen" = "Blank", "ipc_antenna" = "None") meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/ipc diff --git a/code/modules/mob/living/simple_animal/astral.dm b/code/modules/mob/living/simple_animal/astral.dm index 472cbd7414..6edf99981a 100644 --- a/code/modules/mob/living/simple_animal/astral.dm +++ b/code/modules/mob/living/simple_animal/astral.dm @@ -4,7 +4,7 @@ icon = 'icons/mob/mob.dmi' icon_state = "ghost" icon_living = "ghost" - mob_biotypes = list(MOB_SPIRIT) + mob_biotypes = MOB_SPIRIT attacktext = "raises the hairs on the neck of" response_harm = "disrupts the concentration of" response_disarm = "wafts" diff --git a/code/modules/mob/living/simple_animal/friendly/bumbles.dm b/code/modules/mob/living/simple_animal/friendly/bumbles.dm index 63e9fbf852..17e1490c3f 100644 --- a/code/modules/mob/living/simple_animal/friendly/bumbles.dm +++ b/code/modules/mob/living/simple_animal/friendly/bumbles.dm @@ -18,7 +18,7 @@ pass_flags = PASSTABLE | PASSGRILLE | PASSMOB ventcrawler = VENTCRAWLER_ALWAYS mob_size = MOB_SIZE_TINY - mob_biotypes = list(MOB_ORGANIC, MOB_BEAST) + mob_biotypes = MOB_ORGANIC|MOB_BEAST gold_core_spawnable = FRIENDLY_SPAWN verb_say = "bzzs" verb_ask = "bzzs inquisitively" @@ -34,14 +34,12 @@ AddElement(/datum/element/wuv, "bzzs!") /mob/living/simple_animal/pet/bumbles/update_canmove() - ..() + . = ..() if(client && stat != DEAD) if (resting) icon_state = "[icon_living]_rest" - collar_type = "[initial(collar_type)]_rest" else icon_state = "[icon_living]" - collar_type = "[initial(collar_type)]" regenerate_icons() /mob/living/simple_animal/pet/bumbles/bee_friendly() diff --git a/code/modules/mob/living/simple_animal/hostile/hivebot.dm b/code/modules/mob/living/simple_animal/hostile/hivebot.dm index ee9d1dddbd..1cc675825f 100644 --- a/code/modules/mob/living/simple_animal/hostile/hivebot.dm +++ b/code/modules/mob/living/simple_animal/hostile/hivebot.dm @@ -10,7 +10,7 @@ icon_living = "basic" icon_dead = "basic" gender = NEUTER - mob_biotypes = list(MOB_ROBOTIC) + mob_biotypes = MOB_ROBOTIC health = 50 maxHealth = 50 healable = 0 diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm index c7d90f9556..1ddd9079b2 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm @@ -47,7 +47,7 @@ GLOBAL_LIST_INIT(AISwarmerCapsByType, list(/mob/living/simple_animal/hostile/swa icon_state = "swarmer_console" health = 750 maxHealth = 750 //""""low-ish"""" HP because it's a passive boss, and the swarm itself is the real foe - mob_biotypes = list(MOB_ROBOTIC) + mob_biotypes = MOB_ROBOTIC medal_type = BOSS_MEDAL_SWARMERS score_type = SWARMER_BEACON_SCORE faction = list("mining", "boss", "swarmer") diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/goliath_broodmother.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/goliath_broodmother.dm index 116e2b8e45..fdc3e2e9b7 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/goliath_broodmother.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/goliath_broodmother.dm @@ -37,7 +37,7 @@ throw_message = "does nothing to the rocky hide of the" speed = 2 move_to_delay = 5 - mob_biotypes = list(MOB_ORGANIC, MOB_BEAST) + mob_biotypes = MOB_ORGANIC|MOB_BEAST mouse_opacity = MOUSE_OPACITY_ICON deathmessage = "explodes into gore!" loot_drop = /obj/item/crusher_trophy/broodmother_tongue @@ -178,7 +178,7 @@ throw_message = "does nothing to the rocky hide of the" speed = 2 move_to_delay = 5 - mob_biotypes = list(MOB_ORGANIC, MOB_BEAST) + mob_biotypes = MOB_ORGANIC|MOB_BEAST mouse_opacity = MOUSE_OPACITY_ICON butcher_results = list() guaranteed_butcher_results = list(/obj/item/stack/sheet/animalhide/goliath_hide = 1) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index ae3f0465d5..e926a5d332 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -64,7 +64,7 @@ icon_state = "husk" icon_living = "husk" icon_dead = "husk" - mob_biotypes = list(MOB_ORGANIC, MOB_HUMANOID) + mob_biotypes = MOB_ORGANIC|MOB_HUMANOID speak_chance = 0 stat_attack = UNCONSCIOUS //braains maxHealth = 100 diff --git a/tgstation.dme b/tgstation.dme index ee098a0ec7..56c96e8c7f 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -2329,6 +2329,7 @@ #include "code\modules\mob\living\simple_animal\bot\mulebot.dm" #include "code\modules\mob\living\simple_animal\bot\secbot.dm" #include "code\modules\mob\living\simple_animal\bot\SuperBeepsky.dm" +#include "code\modules\mob\living\simple_animal\friendly\bumbles.dm" #include "code\modules\mob\living\simple_animal\friendly\butterfly.dm" #include "code\modules\mob\living\simple_animal\friendly\cat.dm" #include "code\modules\mob\living\simple_animal\friendly\cockroach.dm" From 0a698d1eeba3337f997b0f26cb58b580ad23b002 Mon Sep 17 00:00:00 2001 From: Putnam Date: Tue, 25 Feb 2020 20:07:07 -0800 Subject: [PATCH 148/175] oy. --- code/modules/vore/eating/vore.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/vore/eating/vore.dm b/code/modules/vore/eating/vore.dm index 35f0653617..ba468ee4ab 100644 --- a/code/modules/vore/eating/vore.dm +++ b/code/modules/vore/eating/vore.dm @@ -108,6 +108,7 @@ GLOBAL_LIST_EMPTY(vore_preferences_datums) digestable = json_from_file["digestable"] devourable = json_from_file["devourable"] feeding = json_from_file["feeding"] + licking = json_from_file["licking"] vore_taste = json_from_file["vore_taste"] belly_prefs = json_from_file["belly_prefs"] @@ -133,6 +134,7 @@ GLOBAL_LIST_EMPTY(vore_preferences_datums) "digestable" = digestable, "devourable" = devourable, "feeding" = feeding, + "licking" = licking, "vore_taste" = vore_taste, "belly_prefs" = belly_prefs, ) From c906f8f17f9f60941bba6e80261bc2fbcb92b6d1 Mon Sep 17 00:00:00 2001 From: Putnam Date: Tue, 25 Feb 2020 20:49:01 -0800 Subject: [PATCH 149/175] lickable. --- code/modules/vore/eating/vore.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/vore.dm b/code/modules/vore/eating/vore.dm index ba468ee4ab..abb5bbb988 100644 --- a/code/modules/vore/eating/vore.dm +++ b/code/modules/vore/eating/vore.dm @@ -108,7 +108,7 @@ GLOBAL_LIST_EMPTY(vore_preferences_datums) digestable = json_from_file["digestable"] devourable = json_from_file["devourable"] feeding = json_from_file["feeding"] - licking = json_from_file["licking"] + lickable = json_from_file["lickable"] vore_taste = json_from_file["vore_taste"] belly_prefs = json_from_file["belly_prefs"] @@ -119,6 +119,8 @@ GLOBAL_LIST_EMPTY(vore_preferences_datums) devourable = FALSE if(isnull(feeding)) feeding = FALSE + if(isnull(lickable)) + lickable = FALSE if(isnull(belly_prefs)) belly_prefs = list() @@ -134,7 +136,7 @@ GLOBAL_LIST_EMPTY(vore_preferences_datums) "digestable" = digestable, "devourable" = devourable, "feeding" = feeding, - "licking" = licking, + "lickable" = lickable, "vore_taste" = vore_taste, "belly_prefs" = belly_prefs, ) From 7fe6ebb2c90df513619434441f8b5f51b9568eaf Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Wed, 26 Feb 2020 00:24:09 -0500 Subject: [PATCH 150/175] Update chair.dm --- code/game/objects/structures/beds_chairs/chair.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index fbb98f4299..0d38f5eca6 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -407,7 +407,7 @@ buildstackamount = 1 /obj/structure/chair/stool/bar/alien - name = "bronze bar stool" + name = "alien bar stool" desc = "A hard bar stool made of advanced alien alloy." icon_state = "baralien" icon = 'icons/obj/abductor.dmi' @@ -612,4 +612,4 @@ icon_state = "sofacorner" /obj/structure/chair/sofa/corner/handle_layer() //only the armrest/back of this chair should cover the mob. - return \ No newline at end of file + return From 626cf886d6a360b2ecba22f0a2a55b45c7f62ce1 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 26 Feb 2020 05:31:47 -0700 Subject: [PATCH 151/175] Update twohanded.dm --- code/game/objects/items/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 24cb265093..06b81a424d 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -1019,7 +1019,7 @@ /obj/item/twohanded/electrostaff icon = 'icons/obj/items_and_weapons.dmi' - icon_state = "electrostaff" + icon_state = "electrostaff_3" item_state = "electrostaff" lefthand_file = 'icons/mob/inhands/weapons/staves_lefthand.dmi' righthand_file = 'icons/mob/inhands/weapons/staves_righthand.dmi' From 27b6469c6781e67368ba81a69919ac78d75b814c Mon Sep 17 00:00:00 2001 From: Artur Date: Wed, 26 Feb 2020 16:42:38 +0200 Subject: [PATCH 152/175] Forgot a var --- code/modules/power/tracker.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/power/tracker.dm b/code/modules/power/tracker.dm index 16775edf48..0627a55de0 100644 --- a/code/modules/power/tracker.dm +++ b/code/modules/power/tracker.dm @@ -15,6 +15,7 @@ var/id = 0 var/obj/machinery/power/solar_control/control + var/obj/item/solar_assembly/assembly /obj/machinery/power/tracker/Initialize(mapload, obj/item/solar_assembly/S) . = ..() From c232356a889e53b4688840ee2e1c2837cde89bd3 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 26 Feb 2020 09:51:48 -0500 Subject: [PATCH 153/175] Makes clicking open closets with items on harm intent attack the closet rather than put the item in the closet --- code/game/objects/structures/crates_lockers/closets.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 71fcef753c..f95f900a48 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -359,7 +359,7 @@ "You hear [welder ? "welding" : "rustling of screws and metal"].") deconstruct(TRUE) return - if(user.transferItemToLoc(W, drop_location())) // so we put in unlit welder too + if(user.a_intent != INTENT_HARM && user.transferItemToLoc(W, drop_location())) // so we put in unlit welder too return TRUE else if(istype(W, /obj/item/electronics/airlock)) handle_lock_addition(user, W) From d7192a7c3563b0697b0b1b34ff9e171e1b634a7f Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 26 Feb 2020 10:21:26 -0500 Subject: [PATCH 154/175] Makes the default sprint config options match live's actual config --- code/controllers/configuration/entries/game_options.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm index 595af38848..87cccdd9f2 100644 --- a/code/controllers/configuration/entries/game_options.dm +++ b/code/controllers/configuration/entries/game_options.dm @@ -254,13 +254,13 @@ config_entry_value = 1 /datum/config_entry/number/movedelay/sprint_buffer_max - config_entry_value = 42 + config_entry_value = 24 /datum/config_entry/number/movedelay/sprint_stamina_cost - config_entry_value = 0.7 + config_entry_value = 1.4 /datum/config_entry/number/movedelay/sprint_buffer_regen_per_ds - config_entry_value = 0.3 + config_entry_value = 0.4 /////////////////////////////////////////////////Outdated move delay /datum/config_entry/number/outdated_movedelay From c708d30d47daf260808a2b38eb65954e6f57fc1a Mon Sep 17 00:00:00 2001 From: Lin Date: Wed, 26 Feb 2020 20:59:32 +0000 Subject: [PATCH 155/175] shitty webedit --- code/game/objects/structures/kitchen_spike.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm index 21622519c9..830f25277d 100644 --- a/code/game/objects/structures/kitchen_spike.dm +++ b/code/game/objects/structures/kitchen_spike.dm @@ -64,6 +64,9 @@ /obj/structure/kitchenspike/attack_hand(mob/user) if(VIABLE_MOB_CHECK(user.pulling) && user.a_intent == INTENT_GRAB && !has_buckled_mobs()) var/mob/living/L = user.pulling + if(has_trait(user, TRAIT_PACIFISM) && L.stat != DEAD) + to_chat(user, "You don't want to hurt a living creature!") + return if(do_mob(user, src, 120)) if(has_buckled_mobs()) //to prevent spam/queing up attacks return From ac384e4d703378d1cb2d152951aa09bd7657c89e Mon Sep 17 00:00:00 2001 From: Lin Date: Wed, 26 Feb 2020 21:01:34 +0000 Subject: [PATCH 156/175] consistency? --- code/game/objects/structures/kitchen_spike.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm index 830f25277d..91266423e6 100644 --- a/code/game/objects/structures/kitchen_spike.dm +++ b/code/game/objects/structures/kitchen_spike.dm @@ -65,7 +65,7 @@ if(VIABLE_MOB_CHECK(user.pulling) && user.a_intent == INTENT_GRAB && !has_buckled_mobs()) var/mob/living/L = user.pulling if(has_trait(user, TRAIT_PACIFISM) && L.stat != DEAD) - to_chat(user, "You don't want to hurt a living creature!") + to_chat(user, "You don't want to hurt a living creature!") return if(do_mob(user, src, 120)) if(has_buckled_mobs()) //to prevent spam/queing up attacks From 69e3d857a8324586771eaf7c6c38667cbf624f7e Mon Sep 17 00:00:00 2001 From: Lin Date: Wed, 26 Feb 2020 21:39:53 +0000 Subject: [PATCH 157/175] derp --- code/game/objects/structures/kitchen_spike.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm index 91266423e6..dc00abd264 100644 --- a/code/game/objects/structures/kitchen_spike.dm +++ b/code/game/objects/structures/kitchen_spike.dm @@ -65,7 +65,7 @@ if(VIABLE_MOB_CHECK(user.pulling) && user.a_intent == INTENT_GRAB && !has_buckled_mobs()) var/mob/living/L = user.pulling if(has_trait(user, TRAIT_PACIFISM) && L.stat != DEAD) - to_chat(user, "You don't want to hurt a living creature!") + to_chat(user, "You don't want to hurt a living creature!") return if(do_mob(user, src, 120)) if(has_buckled_mobs()) //to prevent spam/queing up attacks From 6dd35355ef30d2f3ee0ef225097299f6e3aa7dc5 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Feb 2020 17:54:44 -0600 Subject: [PATCH 158/175] Automatic changelog generation for PR #11150 [ci skip] --- html/changelogs/AutoChangeLog-pr-11150.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11150.yml diff --git a/html/changelogs/AutoChangeLog-pr-11150.yml b/html/changelogs/AutoChangeLog-pr-11150.yml new file mode 100644 index 0000000000..0548ec177e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11150.yml @@ -0,0 +1,8 @@ +author: "raspyosu" +delete-after: True +changes: + - rscadd: "some flavor text for lunge, cloak" + - tweak: "mesmerize, cloak functionality/requirements" + - balance: "mesmerize, lunge, cloak" + - soundadd: "lunge telegraph sound" + - spellcheck: "mesmerized status icon flavor text" From 1ca755e358d4eb6c65cc350937966a1cbc3f474c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Feb 2020 17:54:56 -0600 Subject: [PATCH 159/175] Automatic changelog generation for PR #10877 [ci skip] --- html/changelogs/AutoChangeLog-pr-10877.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-10877.yml diff --git a/html/changelogs/AutoChangeLog-pr-10877.yml b/html/changelogs/AutoChangeLog-pr-10877.yml new file mode 100644 index 0000000000..4cf54b422f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-10877.yml @@ -0,0 +1,4 @@ +author: "kevinz000" +delete-after: True +changes: + - rscadd: "Security now has riot quarterstaves in their lethal shotgun locker." From 2c642d550745a9850c40c10c9fb0182a0002a7d7 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Thu, 27 Feb 2020 01:10:38 +0100 Subject: [PATCH 160/175] Update kitchen_spike.dm --- code/game/objects/structures/kitchen_spike.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm index dc00abd264..ebac89579b 100644 --- a/code/game/objects/structures/kitchen_spike.dm +++ b/code/game/objects/structures/kitchen_spike.dm @@ -64,7 +64,7 @@ /obj/structure/kitchenspike/attack_hand(mob/user) if(VIABLE_MOB_CHECK(user.pulling) && user.a_intent == INTENT_GRAB && !has_buckled_mobs()) var/mob/living/L = user.pulling - if(has_trait(user, TRAIT_PACIFISM) && L.stat != DEAD) + if(HAS_TRAIT(user, TRAIT_PACIFISM) && L.stat != DEAD) to_chat(user, "You don't want to hurt a living creature!") return if(do_mob(user, src, 120)) From 176d263d3a4e2aded09ee046edebaea1a991a97b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Feb 2020 18:11:26 -0600 Subject: [PATCH 161/175] Automatic changelog generation for PR #11254 [ci skip] --- html/changelogs/AutoChangeLog-pr-11254.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11254.yml diff --git a/html/changelogs/AutoChangeLog-pr-11254.yml b/html/changelogs/AutoChangeLog-pr-11254.yml new file mode 100644 index 0000000000..63856f65e8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11254.yml @@ -0,0 +1,4 @@ +author: "Bhijn" +delete-after: True +changes: + - tweak: "Clicking an open closet with harm intent no longer attempts to place your currently held item inside, but rather attacks it." From 46c76d9848a95a2f37cdc904d2961ec56dba3c0a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Feb 2020 18:19:00 -0600 Subject: [PATCH 162/175] Automatic changelog generation for PR #11257 [ci skip] --- html/changelogs/AutoChangeLog-pr-11257.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11257.yml diff --git a/html/changelogs/AutoChangeLog-pr-11257.yml b/html/changelogs/AutoChangeLog-pr-11257.yml new file mode 100644 index 0000000000..1c96361503 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11257.yml @@ -0,0 +1,4 @@ +author: "Linzolle" +delete-after: True +changes: + - tweak: "pacifists can no longer meatspike living things" From 3049ab3e51800ccd08241c0ff499f3ab198bcade Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 01:53:13 -0600 Subject: [PATCH 163/175] Automatic changelog generation for PR #11240 [ci skip] --- html/changelogs/AutoChangeLog-pr-11240.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11240.yml diff --git a/html/changelogs/AutoChangeLog-pr-11240.yml b/html/changelogs/AutoChangeLog-pr-11240.yml new file mode 100644 index 0000000000..dc9e24e86f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11240.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - balance: "Blobs now can store 250 points." From 420856b3856b352e1703422a43a4d395aa2aa8d5 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 01:54:50 -0600 Subject: [PATCH 164/175] Automatic changelog generation for PR #11219 [ci skip] --- html/changelogs/AutoChangeLog-pr-11219.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11219.yml diff --git a/html/changelogs/AutoChangeLog-pr-11219.yml b/html/changelogs/AutoChangeLog-pr-11219.yml new file mode 100644 index 0000000000..8340efea51 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11219.yml @@ -0,0 +1,5 @@ +author: "YakumoChen" +delete-after: True +changes: + - imageadd: "Nekomata (double cat) tails." + - imageadd: "2CAT LMAO" From d606d8670cc555e2ea04fd10935b3db019ea76c4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 01:57:56 -0600 Subject: [PATCH 165/175] Automatic changelog generation for PR #11244 [ci skip] --- html/changelogs/AutoChangeLog-pr-11244.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11244.yml diff --git a/html/changelogs/AutoChangeLog-pr-11244.yml b/html/changelogs/AutoChangeLog-pr-11244.yml new file mode 100644 index 0000000000..ee262dc682 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11244.yml @@ -0,0 +1,4 @@ +author: "Ghommie" +delete-after: True +changes: + - bugfix: "Fixed viruses not working on anthros and some others species." From d97d806ff461536005d5573cb75777734017ba3d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 01:59:22 -0600 Subject: [PATCH 166/175] Automatic changelog generation for PR #11220 [ci skip] --- html/changelogs/AutoChangeLog-pr-11220.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11220.yml diff --git a/html/changelogs/AutoChangeLog-pr-11220.yml b/html/changelogs/AutoChangeLog-pr-11220.yml new file mode 100644 index 0000000000..1d46cede32 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11220.yml @@ -0,0 +1,4 @@ +author: "Kraseo" +delete-after: True +changes: + - balance: "If you have the powersink objective, you will now receive a free beacon." From 62f823f9bb4e229436987a0aaa72228f70709465 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 01:59:59 -0600 Subject: [PATCH 167/175] Automatic changelog generation for PR #11202 [ci skip] --- html/changelogs/AutoChangeLog-pr-11202.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11202.yml diff --git a/html/changelogs/AutoChangeLog-pr-11202.yml b/html/changelogs/AutoChangeLog-pr-11202.yml new file mode 100644 index 0000000000..5c5c5da66b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11202.yml @@ -0,0 +1,4 @@ +author: "Hatterhat" +delete-after: True +changes: + - rscadd: "Beegions! Like Legions, but with actual bees. As in, the bees from the holodeck sim with the randomly-generated toxic bees." From 8eaad92404a28acee0cc0d4079d4d789513e626e Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 02:00:48 -0600 Subject: [PATCH 168/175] Automatic changelog generation for PR #11235 [ci skip] --- html/changelogs/AutoChangeLog-pr-11235.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11235.yml diff --git a/html/changelogs/AutoChangeLog-pr-11235.yml b/html/changelogs/AutoChangeLog-pr-11235.yml new file mode 100644 index 0000000000..bad485400b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11235.yml @@ -0,0 +1,4 @@ +author: "Detective-Google" +delete-after: True +changes: + - bugfix: "my dumb stupid paramedics" From e0c7c98253bf1e2ce27173362998d171817c6527 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Thu, 27 Feb 2020 08:01:13 +0000 Subject: [PATCH 169/175] Update tails.dm --- .../mob/dead/new_player/sprite_accessories/tails.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index f4f5a44044..946005af16 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -574,6 +574,16 @@ /datum/sprite_accessory/mam_tails_animated/catbig name = "Cat, Big" icon_state = "catbig" + +/datum/sprite_accessory/tails/mam__tails/twocat + name = "Cat, Double" + icon_state = "twocat" + color_src = MATRIXED + +/datum/sprite_accessory/mam_tails_animated/human/twocat + name = "Cat, Double" + icon_state = "twocat" + color_src = MATRIXED /datum/sprite_accessory/mam_tails/corvid name = "Corvid" From 5f7097aa43bb4c24edbe80a7406717feb75a87ef Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 02:03:54 -0600 Subject: [PATCH 170/175] Automatic changelog generation for PR #11241 [ci skip] --- html/changelogs/AutoChangeLog-pr-11241.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11241.yml diff --git a/html/changelogs/AutoChangeLog-pr-11241.yml b/html/changelogs/AutoChangeLog-pr-11241.yml new file mode 100644 index 0000000000..41f50fdf26 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11241.yml @@ -0,0 +1,5 @@ +author: "MrPerson" +delete-after: True +changes: + - rscadd: "Solar panels will visually rotate a lot more smoothly instead of being locked to only 8 directions." + - rscadd: "Timed solar tracking is in degrees per minute. You're still not gonna use it though." From 2cb95e200a5aeca404fa17e598adc9aca613e02d Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Thu, 27 Feb 2020 08:04:32 +0000 Subject: [PATCH 171/175] Update tails.dm --- code/modules/mob/dead/new_player/sprite_accessories/tails.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index 946005af16..553963df1b 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -575,12 +575,12 @@ name = "Cat, Big" icon_state = "catbig" -/datum/sprite_accessory/tails/mam__tails/twocat +/datum/sprite_accessory/tails/mam_tails/twocat name = "Cat, Double" icon_state = "twocat" color_src = MATRIXED -/datum/sprite_accessory/mam_tails_animated/human/twocat +/datum/sprite_accessory/mam_tails_animated/twocat name = "Cat, Double" icon_state = "twocat" color_src = MATRIXED From 2008c2f78f5964f3fe761d88fd0d7a52b6539f93 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 02:05:59 -0600 Subject: [PATCH 172/175] Automatic changelog generation for PR #11248 [ci skip] --- html/changelogs/AutoChangeLog-pr-11248.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11248.yml diff --git a/html/changelogs/AutoChangeLog-pr-11248.yml b/html/changelogs/AutoChangeLog-pr-11248.yml new file mode 100644 index 0000000000..f7b845926a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11248.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - bugfix: "Made lickable pref save" From e682845ebf7b36b8c03e5e42a532297be8b8999b Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Thu, 27 Feb 2020 08:09:34 +0000 Subject: [PATCH 173/175] Update tails.dm --- code/modules/mob/dead/new_player/sprite_accessories/tails.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index 553963df1b..08c2342fa8 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -575,7 +575,7 @@ name = "Cat, Big" icon_state = "catbig" -/datum/sprite_accessory/tails/mam_tails/twocat +/datum/sprite_accessory/mam_tails/twocat name = "Cat, Double" icon_state = "twocat" color_src = MATRIXED From f6c170d31b36476e9621501c1425372fc150111b Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Thu, 27 Feb 2020 08:15:27 +0000 Subject: [PATCH 174/175] Update tails.dm --- code/modules/mob/dead/new_player/sprite_accessories/tails.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index 08c2342fa8..5ae3c9a8b3 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -578,12 +578,10 @@ /datum/sprite_accessory/mam_tails/twocat name = "Cat, Double" icon_state = "twocat" - color_src = MATRIXED /datum/sprite_accessory/mam_tails_animated/twocat name = "Cat, Double" icon_state = "twocat" - color_src = MATRIXED /datum/sprite_accessory/mam_tails/corvid name = "Corvid" From 721f4f6bff476a7863fa76f8c48914af27469aa7 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Feb 2020 05:40:43 -0600 Subject: [PATCH 175/175] Automatic changelog generation for PR #11249 [ci skip] --- html/changelogs/AutoChangeLog-pr-11249.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11249.yml diff --git a/html/changelogs/AutoChangeLog-pr-11249.yml b/html/changelogs/AutoChangeLog-pr-11249.yml new file mode 100644 index 0000000000..2988e5ca92 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11249.yml @@ -0,0 +1,4 @@ +author: "Trilbyspaceclone" +delete-after: True +changes: + - spellcheck: "Alien bar stool is no longer bronze"

  2. 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 diff --git a/icons/obj/items_and_weapons.dmi b/icons/obj/items_and_weapons.dmi index 7058b9918be81de0a733f3abf022978b960fb430..bdad12b0b69cf333014bbe76822cdae96f8ed672 100644 GIT binary patch literal 133100 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 aWQIQ>Zm)4~Ru(|OpNgX9^OC2Q@BTk~r~5tt diff --git a/icons/mob/landmarks.dmi b/icons/mob/landmarks.dmi index e8ce4907db90f473c978f603744a36b873040fae..284809da700691cab9a040b3aa778d65064e0021 100644 GIT binary patch delta 8422 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 V<%piWG9<*MEUzI~En^=1e*pXH#pwV5 delta 9224 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 Date: Thu, 20 Feb 2020 22:47:43 -0600 Subject: [PATCH 046/175] Update tgstation.dme --- tgstation.dme | 1 - 1 file changed, 1 deletion(-) diff --git a/tgstation.dme b/tgstation.dme index 8f676c5bd1..8c49eec3fd 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1981,7 +1981,6 @@ #include "code\modules\jobs\job_types\medical_doctor.dm" #include "code\modules\jobs\job_types\mime.dm" #include "code\modules\jobs\job_types\paramedic.dm" -#include "code\modules\jobs\job_types\psychologist.dm" #include "code\modules\jobs\job_types\quartermaster.dm" #include "code\modules\jobs\job_types\research_director.dm" #include "code\modules\jobs\job_types\roboticist.dm" From 7889ea0d68bcf9bb3bacb290b4959065ff15b10a Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Thu, 20 Feb 2020 22:58:43 -0600 Subject: [PATCH 047/175] fix + maps --- _maps/map_files/BoxStation/BoxStation.dmm | 637 +++--------------- .../map_files/Deltastation/DeltaStation2.dmm | 19 +- _maps/map_files/MetaStation/MetaStation.dmm | 2 + _maps/map_files/PubbyStation/PubbyStation.dmm | 15 +- icons/obj/clothing/uniforms.dmi | Bin 108550 -> 109356 bytes 5 files changed, 137 insertions(+), 536 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index a86d9c30b1..d03cfcaad7 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -31389,6 +31389,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, /area/medical/sleeper) "bzg" = ( @@ -44022,12 +44023,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/science/misc_lab) -"ccS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) "ccT" = ( /obj/machinery/light{ dir = 4 @@ -52193,14 +52188,6 @@ }, /turf/closed/wall/r_wall, /area/engine/engineering) -"cDM" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "cDN" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -53223,11 +53210,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/science/circuit) -"cVU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/bed, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "cXU" = ( /obj/effect/turf_decal/tile/red, /obj/machinery/light{ @@ -53235,9 +53217,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"cYG" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "daI" = ( /obj/structure/reagent_dispensers/foamtank, /obj/effect/turf_decal/tile/yellow{ @@ -53322,9 +53301,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"diM" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "dly" = ( /obj/machinery/door/window/southright{ name = "Target Storage" @@ -53430,14 +53406,6 @@ "dFX" = ( /turf/closed/wall, /area/crew_quarters/fitness/pool) -"dGN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "dKP" = ( /turf/closed/wall, /area/maintenance/bar) @@ -53461,9 +53429,6 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"dOr" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "dPk" = ( /obj/structure/closet{ name = "Costume Closet" @@ -53493,9 +53458,6 @@ "dVU" = ( /turf/open/floor/plating, /area/space/nearstation) -"dXo" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "dXq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -53522,14 +53484,6 @@ }, /turf/open/space, /area/solar/starboard/fore) -"ebT" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "ecg" = ( /turf/open/floor/plasteel/yellowsiding/corner{ dir = 4 @@ -53570,9 +53524,6 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"ekE" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "elh" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -53613,9 +53564,6 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"esx" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "esZ" = ( /obj/machinery/door/airlock{ desc = "Private study room where nerds are probably playing Dungeons and Dragons 13e, or a place for blood cult rituals."; @@ -53814,11 +53762,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"ffy" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) "fgG" = ( /obj/structure/table/wood, /obj/machinery/requests_console{ @@ -54030,11 +53973,6 @@ "fHG" = ( /turf/open/floor/plasteel, /area/crew_quarters/fitness) -"fIq" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "fIs" = ( /obj/structure/grille, /obj/structure/lattice, @@ -54045,17 +53983,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/science/circuit) -"fKF" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) -"fKZ" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) -"fMZ" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "fOA" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; @@ -54142,14 +54069,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"geH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "gfr" = ( /obj/structure/bed, /turf/open/floor/plating, @@ -54196,15 +54115,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"gni" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) -"gob" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "gpD" = ( /obj/machinery/light_switch{ pixel_y = 28 @@ -54308,14 +54218,6 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"gMV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "gNC" = ( /obj/structure/cable{ icon_state = "1-2" @@ -54482,12 +54384,6 @@ }, /turf/open/floor/plating, /area/space/nearstation) -"hul" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "hzK" = ( /turf/open/floor/plasteel/yellowsiding/corner{ dir = 1 @@ -54636,11 +54532,6 @@ /obj/structure/falsewall, /turf/open/floor/plating, /area/maintenance/bar) -"inO" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) "inR" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -54704,9 +54595,6 @@ /obj/effect/turf_decal/tile/green, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"iwv" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "iwB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -54721,18 +54609,12 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"iAv" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "iBv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) -"iBU" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "iDo" = ( /obj/structure/grille, /turf/open/space/basic, @@ -54787,14 +54669,6 @@ /obj/structure/reagent_dispensers/cooking_oil, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"iOe" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "iTq" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -54832,11 +54706,6 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) -"iYY" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "jaF" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/tank/air{ @@ -54961,12 +54830,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"juP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "jvd" = ( /obj/structure/closet/athletic_mixed, /turf/open/floor/plasteel, @@ -54978,12 +54841,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port) -"jzi" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"jzF" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "jAD" = ( /obj/structure/grille, /turf/open/floor/plating/airless, @@ -55154,6 +55011,10 @@ }, /turf/open/floor/plasteel, /area/science/circuit) +"jUN" = ( +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) "jVl" = ( /obj/structure/cable{ icon_state = "4-8" @@ -55163,14 +55024,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jWJ" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "jZT" = ( /obj/structure/cable{ icon_state = "4-8" @@ -55183,14 +55036,6 @@ "kaq" = ( /turf/closed/wall/mineral/titanium, /area/space/nearstation) -"kcB" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "kdO" = ( /obj/machinery/pool/controller, /turf/open/floor/plasteel/yellowsiding, @@ -55383,9 +55228,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/science/mixing) -"kzV" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "kAH" = ( /obj/machinery/camera{ c_tag = "Bar West"; @@ -55444,14 +55286,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"kLk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "kMt" = ( /obj/structure/lattice, /turf/closed/wall, @@ -55471,11 +55305,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"kNN" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) "kPd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ @@ -55507,11 +55336,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"kSu" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "kWp" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -55525,12 +55349,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"kZa" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"kZw" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) "laq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, @@ -55596,29 +55414,11 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"lvU" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"lwb" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "lyR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/prison) -"lzC" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "lAB" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall, @@ -55650,11 +55450,6 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"lOe" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) "lPr" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "applebush" @@ -55671,9 +55466,6 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"lSk" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "lUS" = ( /obj/structure/table/wood/fancy/black, /obj/machinery/light/small, @@ -55721,9 +55513,6 @@ /obj/item/target/syndicate, /turf/open/floor/plating, /area/security/prison) -"mcA" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) "meb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/bed, @@ -55733,24 +55522,10 @@ /obj/structure/bed, /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) -"miN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "mjr" = ( /obj/structure/reagent_dispensers/keg/milk, /turf/open/floor/wood, /area/crew_quarters/bar) -"mjw" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"mko" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "mkv" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Room"; @@ -55809,13 +55584,6 @@ /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) -"mse" = ( -/obj/structure/pool/ladder{ - dir = 1; - pixel_y = -24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) "mvt" = ( /obj/machinery/airalarm{ dir = 1; @@ -55823,14 +55591,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"mwU" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "myh" = ( /obj/structure/piano, /obj/structure/window/reinforced, @@ -56004,9 +55764,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"mWU" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) "nbT" = ( /obj/structure/cable{ icon_state = "0-8" @@ -56052,9 +55809,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"nji" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "nkP" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ @@ -56079,9 +55833,6 @@ "nsA" = ( /turf/closed/wall, /area/crew_quarters/abandoned_gambling_den) -"ntF" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "nuw" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ @@ -56105,9 +55856,6 @@ }, /turf/open/floor/plating, /area/construction) -"nFm" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "nGf" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/light{ @@ -56246,12 +55994,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"obc" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"obd" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "oce" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -56272,25 +56014,12 @@ /obj/machinery/vending/kink, /turf/open/floor/plating, /area/maintenance/bar) -"oer" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"ofa" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "ofU" = ( /obj/structure/chair/comfy/black{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"ogc" = ( -/obj/structure/pool/ladder{ - dir = 2; - pixel_y = 24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) "ohq" = ( /obj/machinery/airalarm{ dir = 4; @@ -56365,9 +56094,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/grass, /area/crew_quarters/bar) -"oxp" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "oyl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -56433,11 +56159,6 @@ /obj/effect/spawner/lootdrop/keg, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"oFi" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) "oHB" = ( /turf/open/floor/plasteel/dark, /area/crew_quarters/dorms) @@ -56477,14 +56198,6 @@ }, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) -"oLn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) "oTW" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -56507,9 +56220,6 @@ /obj/structure/pool/ladder, /turf/open/pool, /area/crew_quarters/fitness/pool) -"oWT" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) "oZl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/closet/wardrobe/pjs, @@ -56655,14 +56365,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness) -"pHa" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "pHl" = ( /obj/structure/table, /obj/item/storage/box/beakers{ @@ -56721,9 +56423,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"pNf" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "pPi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -56762,15 +56461,6 @@ }, /turf/open/floor/plating, /area/crew_quarters/fitness) -"pSl" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"pSK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "pTB" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -56888,9 +56578,6 @@ /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) -"qAm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "qBi" = ( /obj/structure/lattice, /turf/closed/wall/r_wall, @@ -56908,9 +56595,6 @@ }, /turf/open/space, /area/solar/port/aft) -"qLk" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "qLR" = ( /obj/structure/mirror{ pixel_y = 32 @@ -57002,17 +56686,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel, /area/maintenance/disposal/incinerator) -"rgW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) -"rje" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/bed, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "rjQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, @@ -57178,22 +56851,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"rHr" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "rIA" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) -"rKg" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "rKP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -57237,9 +56900,6 @@ }, /turf/open/floor/plasteel/dark, /area/bridge/meeting_room) -"rTT" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "rXl" = ( /obj/structure/chair/office/light, /obj/machinery/firealarm{ @@ -57323,9 +56983,6 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"soq" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "spu" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -57456,9 +57113,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"sGo" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "sHx" = ( /obj/structure/table, /obj/item/book/manual/hydroponics_pod_people{ @@ -57523,9 +57177,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"sNo" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "sNK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable{ @@ -57610,19 +57261,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/crew_quarters/bar) -"sZG" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) "tal" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/hallway/secondary/service) -"tbG" = ( -/obj/structure/bed, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "tgH" = ( /obj/structure/filingcabinet/employment, /turf/open/floor/wood, @@ -57724,9 +57366,6 @@ /obj/item/crowbar/red, /turf/open/floor/plating, /area/maintenance/port) -"tyd" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "tyX" = ( /obj/structure/cable{ icon_state = "4-8" @@ -57759,9 +57398,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore/secondary) -"tAN" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "tCa" = ( /obj/structure/table/wood, /obj/item/instrument/guitar{ @@ -57784,9 +57420,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"tFa" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "tJi" = ( /obj/machinery/airalarm{ dir = 4; @@ -57846,9 +57479,6 @@ /obj/effect/turf_decal/loading_area, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"tMM" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) "tNF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -57882,10 +57512,6 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"tSh" = ( -/obj/structure/bed, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "tWj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4; @@ -57906,11 +57532,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"tZk" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) "uaj" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -58053,9 +57674,6 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"upW" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "usO" = ( /obj/machinery/vending/snack/random, /obj/machinery/light/small{ @@ -58086,9 +57704,6 @@ /obj/structure/mineral_door/wood, /turf/open/floor/wood, /area/maintenance/bar) -"uxe" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "uxY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -58231,9 +57846,6 @@ /obj/machinery/power/terminal, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"uRu" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "uRS" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -58335,9 +57947,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/locker) -"vie" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "viF" = ( /obj/structure/table/wood, /obj/item/instrument/trumpet, @@ -58599,9 +58208,6 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"vSu" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "vZA" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -58689,9 +58295,6 @@ }, /turf/open/floor/plating, /area/construction/mining/aux_base) -"wpR" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "wql" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, @@ -58753,9 +58356,6 @@ }, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"wHU" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "wIG" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -58831,14 +58431,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) -"wXa" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PoolShut"; - name = "Pool Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "wXl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/camera{ @@ -58909,9 +58501,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"xgo" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "xgC" = ( /obj/structure/cable{ icon_state = "0-4" @@ -59038,12 +58627,6 @@ /obj/machinery/light, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"xsO" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"xtO" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "xtP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59062,9 +58645,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"xyT" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "xzd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59152,9 +58732,6 @@ /obj/machinery/vending/wardrobe/curator_wardrobe, /turf/open/floor/carpet, /area/library) -"xFB" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) "xIa" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -59296,12 +58873,6 @@ /obj/machinery/suit_storage_unit/rd, /turf/open/floor/plasteel, /area/science/mixing) -"yfk" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"yfL" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) "yhz" = ( /obj/structure/table, /obj/item/folder/blue, @@ -94095,7 +93666,7 @@ aiA ahn ahn grc -ccS +anE aod ahn apx @@ -94352,7 +93923,7 @@ uei ahn ahn grc -ccS +anE aod aoK oyX @@ -95123,7 +94694,7 @@ aaa aaa dFX wWW -iwv +dqb lCo ohq wXl @@ -95378,17 +94949,17 @@ aaa aaa aaa aaa -miN +uEx ulM wcR -oFi -oFi -oFi -oFi -oFi +uzs +uzs +uzs +uzs +uzs ecg jLT -hul +veS arm fHG aya @@ -95635,15 +95206,15 @@ aaa aaa aaa aaa -miN +uEx azm -oer +gvX qWV -ekE +con oVo -ekE -ekE -tZk +con +con +eVJ ujS aqs coh @@ -95892,16 +95463,16 @@ aaa aaa aaa aaa -miN +uEx stF -oer -ekE -ekE -ekE -ekE -ekE -tZk -iwv +gvX +con +con +con +con +con +eVJ +dqb qeA lXE pFX @@ -96151,15 +95722,15 @@ aaa aaa dFX lnk -oer -ogc -ekE -ekE -ekE +gvX +wQg +con +con +con fyS -tZk -iwv -hul +eVJ +dqb +veS xzd sJI jJg @@ -96406,15 +95977,15 @@ aaa aaa aaa aaa -miN -iwv -oer -ekE -ekE -ekE -ekE -ekE -tZk +uEx +dqb +gvX +con +con +con +con +con +eVJ iBv lZK fZm @@ -96663,16 +96234,16 @@ aaa aaa aaa aaa -miN -iwv +uEx +dqb kdO -ekE -ekE +con +con uSC -ekE -ekE -tZk -pSK +con +con +eVJ +wHk ewu pQp pQp @@ -96725,7 +96296,7 @@ bAv bvj bCO bDR -bDR +jUN bDR bIn bJC @@ -96920,16 +96491,16 @@ aaa aaa aaa aaa -miN -iwv -oer -ekE -ekE -ekE -ekE -ekE -tZk -pSK +uEx +dqb +gvX +con +con +con +con +con +eVJ +wHk aqu aro aro @@ -97179,14 +96750,14 @@ aaa aaa dFX jMW -oer -ogc -ekE -ekE -ekE +gvX +wQg +con +con +con fyS -tZk -pSK +eVJ +wHk aqu aro aro @@ -97434,16 +97005,16 @@ aaa aaa aaa aaa -miN +uEx sth -oer -ekE -ekE -ekE -ekE -ekE -tZk -pSK +gvX +con +con +con +con +con +eVJ +wHk aqu aro aro @@ -97691,16 +97262,16 @@ aaa aaa aaa aaa -miN +uEx wag -oer -ekE -ekE +gvX +con +con voW -ekE -ekE -tZk -pSK +con +con +eVJ +wHk aqu aro aro @@ -97948,14 +97519,14 @@ aaa aaa aaa aaa -miN +uEx tAC uAH -ffy -ffy +unR +unR dCr -ffy -ffy +unR +unR hzK iYE aqu @@ -98211,9 +97782,9 @@ mgF mgF mgF vAl -rje -rje -rje +meb +meb +meb iMv vmQ pQp @@ -98464,13 +98035,13 @@ aaS aaa dFX dFX -miN -miN -miN +uEx +uEx +uEx dFX -miN -miN -miN +uEx +uEx +uEx dFX dFX aaa diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 13597584ae..1d738b7382 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -86375,6 +86375,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, /area/medical/storage) "cPF" = ( @@ -127461,6 +127462,22 @@ /obj/machinery/light/small, /turf/open/floor/plasteel, /area/security/prison) +"vEq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/storage) "wei" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, @@ -174855,7 +174872,7 @@ cAm cKO cMm cNO -cPF +vEq cRi cSV cUN diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 3c8e251bb1..e33bb015f4 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -52211,6 +52211,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, /area/medical/storage) "bZZ" = ( @@ -54651,6 +54652,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, /area/medical/storage) "cez" = ( diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index b34da30300..e6b2af59e1 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -57031,6 +57031,10 @@ }, /turf/open/floor/engine, /area/science/xenobiology) +"naS" = ( +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "ncm" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -61095,6 +61099,13 @@ }, /turf/open/floor/wood, /area/lawoffice) +"wtE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "wun" = ( /obj/structure/cable{ icon_state = "1-2" @@ -88795,7 +88806,7 @@ bzQ ioj bsA bEw -bkh +naS bkh bId bFO @@ -89566,7 +89577,7 @@ bBc bCm bDr bEz -bnF +wtE buh bIg bjc diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index ce458a1de3bd7b4edfa61ae1011cae42bfc474f2..0881a2c289b2ae1093e800c5bf4d2bba3b8b4782 100644 GIT binary patch delta 16663 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 delta 16177 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 P@S~#eQodN$IOzWXV{l}f From 04f6559b3d2dd4d1e849963accbcf9fd267f5338 Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Thu, 20 Feb 2020 23:12:28 -0600 Subject: [PATCH 048/175] fixes the janky jobs panel --- code/__DEFINES/jobs.dm | 46 +++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/code/__DEFINES/jobs.dm b/code/__DEFINES/jobs.dm index d45762ee34..35348df3d1 100644 --- a/code/__DEFINES/jobs.dm +++ b/code/__DEFINES/jobs.dm @@ -59,27 +59,29 @@ #define JOB_DISPLAY_ORDER_ASSISTANT 1 #define JOB_DISPLAY_ORDER_CAPTAIN 2 #define JOB_DISPLAY_ORDER_HEAD_OF_PERSONNEL 3 -#define JOB_DISPLAY_ORDER_BARTENDER 4 -#define JOB_DISPLAY_ORDER_COOK 5 -#define JOB_DISPLAY_ORDER_BOTANIST 6 -#define JOB_DISPLAY_ORDER_JANITOR 7 -#define JOB_DISPLAY_ORDER_CLOWN 8 -#define JOB_DISPLAY_ORDER_MIME 9 -#define JOB_DISPLAY_ORDER_CURATOR 10 -#define JOB_DISPLAY_ORDER_LAWYER 11 -#define JOB_DISPLAY_ORDER_CHAPLAIN 12 -#define JOB_DISPLAY_ORDER_QUARTERMASTER 13 -#define JOB_DISPLAY_ORDER_CARGO_TECHNICIAN 14 -#define JOB_DISPLAY_ORDER_SHAFT_MINER 15 -#define JOB_DISPLAY_ORDER_CHIEF_ENGINEER 16 -#define JOB_DISPLAY_ORDER_STATION_ENGINEER 17 -#define JOB_DISPLAY_ORDER_ATMOSPHERIC_TECHNICIAN 18 -#define JOB_DISPLAY_ORDER_CHIEF_MEDICAL_OFFICER 19 -#define JOB_DISPLAY_ORDER_MEDICAL_DOCTOR 20 -#define JOB_DISPLAY_ORDER_CHEMIST 21 -#define JOB_DISPLAY_ORDER_GENETICIST 22 -#define JOB_DISPLAY_ORDER_VIROLOGIST 23 -#define JOB_DISPLAY_ORDER_PARAMEDIC 24 +#define JOB_DISPLAY_ORDER_QUARTERMASTER 4 +#define JOB_DISPLAY_ORDER_CARGO_TECHNICIAN 5 +#define JOB_DISPLAY_ORDER_SHAFT_MINER 6 +#define JOB_DISPLAY_ORDER_BARTENDER 7 +#define JOB_DISPLAY_ORDER_COOK 8 +#define JOB_DISPLAY_ORDER_BOTANIST 9 +#define JOB_DISPLAY_ORDER_JANITOR 10 +#define JOB_DISPLAY_ORDER_CLOWN 11 +#define JOB_DISPLAY_ORDER_MIME 12 +#define JOB_DISPLAY_ORDER_CURATOR 13 +#define JOB_DISPLAY_ORDER_LAWYER 14 +#define JOB_DISPLAY_ORDER_CHAPLAIN 15 +#define JOB_DISPLAY_ORDER_AI 16 +#define JOB_DISPLAY_ORDER_CYBORG 17 +#define JOB_DISPLAY_ORDER_CHIEF_ENGINEER 18 +#define JOB_DISPLAY_ORDER_STATION_ENGINEER 19 +#define JOB_DISPLAY_ORDER_ATMOSPHERIC_TECHNICIAN 20 +#define JOB_DISPLAY_ORDER_CHIEF_MEDICAL_OFFICER 21 +#define JOB_DISPLAY_ORDER_MEDICAL_DOCTOR 22 +#define JOB_DISPLAY_ORDER_PARAMEDIC 23 +#define JOB_DISPLAY_ORDER_CHEMIST 24 +#define JOB_DISPLAY_ORDER_VIROLOGIST 25 +#define JOB_DISPLAY_ORDER_GENETICIST 26 #define JOB_DISPLAY_ORDER_RESEARCH_DIRECTOR 27 #define JOB_DISPLAY_ORDER_SCIENTIST 28 #define JOB_DISPLAY_ORDER_ROBOTICIST 29 @@ -87,5 +89,3 @@ #define JOB_DISPLAY_ORDER_WARDEN 31 #define JOB_DISPLAY_ORDER_DETECTIVE 32 #define JOB_DISPLAY_ORDER_SECURITY_OFFICER 33 -#define JOB_DISPLAY_ORDER_AI 34 -#define JOB_DISPLAY_ORDER_CYBORG 35 From 257cc813e2c8461bfbfcc21648f1deb55737d146 Mon Sep 17 00:00:00 2001 From: TrilbySpaceClone Date: Fri, 21 Feb 2020 01:10:34 -0500 Subject: [PATCH 049/175] Armorless --- _maps/map_files/BoxStation/BoxStation.dmm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index a86d9c30b1..9c292c3ea2 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -9316,8 +9316,8 @@ /obj/item/clothing/under/trek/medsci/next, /obj/item/clothing/under/trek/medsci/next, /obj/item/clothing/under/trek/medsci/next, -/obj/item/clothing/under/mw2_russian_para, -/obj/item/clothing/under/mw2_russian_para, +/obj/item/clothing/under/russobluecamooutfit, +/obj/item/clothing/under/russobluecamooutfit, /obj/item/clothing/under/gladiator, /obj/item/clothing/under/gladiator, /obj/machinery/firealarm{ @@ -53470,14 +53470,14 @@ }, /obj/item/clothing/head/russobluecamohat, /obj/item/clothing/head/russobluecamohat, -/obj/item/clothing/head/helmet/rus_ushanka, -/obj/item/clothing/head/helmet/rus_ushanka, -/obj/item/clothing/head/helmet/rus_ushanka, -/obj/item/clothing/head/helmet/rus_ushanka, -/obj/item/clothing/under/mw2_russian_para, -/obj/item/clothing/under/mw2_russian_para, -/obj/item/clothing/under/mw2_russian_para, -/obj/item/clothing/under/mw2_russian_para, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/under/russobluecamooutfit, +/obj/item/clothing/under/russobluecamooutfit, +/obj/item/clothing/under/russobluecamooutfit, +/obj/item/clothing/under/russobluecamooutfit, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, From 4542afa537418640cdf1e64414e9ad43515c331f Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Fri, 21 Feb 2020 01:14:09 -0500 Subject: [PATCH 050/175] Update trek.dm --- code/modules/clothing/under/trek.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/clothing/under/trek.dm b/code/modules/clothing/under/trek.dm index 9564d03909..20852dbe62 100644 --- a/code/modules/clothing/under/trek.dm +++ b/code/modules/clothing/under/trek.dm @@ -19,7 +19,6 @@ icon_state = "trek_engsec" item_color = "trek_engsec" item_state = "r_suit" - armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) //more sec than eng, but w/e. strip_delay = 50 /obj/item/clothing/under/trek/medsci @@ -69,4 +68,4 @@ desc = "Something about it feels off..." icon_state = "trek_Q" item_color = "trek_Q" - item_state = "r_suit" \ No newline at end of file + item_state = "r_suit" From 7d769b3984c31a996370bf5ddc6f3e0dceb151ae Mon Sep 17 00:00:00 2001 From: raspyosu Date: Fri, 21 Feb 2020 01:34:22 -0500 Subject: [PATCH 051/175] preemptive lunge buff range increased by 1 windup length decreased by 0.1s to 0.6s grabbing system altered to make grabbing more instantaneous depending on range telegraphing sound now plays to the user as well for feedback --- .../bloodsucker/powers/bs_lunge.dm | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm b/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm index 0f2aba49b6..c3a3090d55 100644 --- a/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm +++ b/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm @@ -7,7 +7,7 @@ button_icon_state = "power_lunge" bloodcost = 10 cooldown = 120 - target_range = 4 + target_range = 5 power_activates_immediately = TRUE message_Trigger = "Whom will you ensnare within your grasp?" must_be_capacitated = TRUE @@ -58,27 +58,29 @@ var/do_knockdown = !is_A_facing_B(target,owner) || owner.alpha <= 0 || istype(owner.loc, /obj/structure/closet) // CAUSES: Target has their back to me, I'm invisible, or I'm in a Closet // Step One: Heatseek toward Target's Turf - addtimer(CALLBACK(owner, .proc/_walk, 0), 2 SECONDS) target.playsound_local(get_turf(owner), 'sound/bloodsucker/lunge_warn.ogg', 60, FALSE, pressure_affected = FALSE) // target-only telegraphing - if(do_mob(owner, owner, 7, TRUE, TRUE)) - walk_towards(owner, T, 0.1, 10) // NOTE: this runs in the background! to cancel it, you need to use walk(owner.current,0), or give them a new path. + owner.playsound_local(owner, 'sound/bloodsucker/lunge_warn.ogg', 60, FALSE, pressure_affected = FALSE) // audio feedback to the user + if(do_mob(owner, owner, 6, TRUE, TRUE)) + walk_towards(owner, T, 0.1, 10) // yes i know i shouldn't use this but i don't know how to work in anything better if(get_turf(owner) != T && !(isliving(target) && target.Adjacent(owner)) && owner.incapacitated() && owner.resting) var/send_dir = get_dir(owner, T) new /datum/forced_movement(owner, get_ranged_target_turf(owner, send_dir, 1), 1, FALSE) owner.spin(10) // Step Two: Check if I'm at/adjectent to Target's CURRENT turf (not original...that was just a destination) - sleep(1.5) - if(target.Adjacent(owner)) - // LEVEL 2: If behind target, mute or unconscious! - if(do_knockdown) // && level_current >= 1) - target.Knockdown(15 + 10 * level_current,1) - target.adjustStaminaLoss(40 + 10 * level_current) - // Cancel Walk (we were close enough to contact them) - walk(owner, 0) - target.Stun(10,1) //Without this the victim can just walk away - target.grabbedby(owner) // Taken from mutations.dm under changelings - target.grippedby(owner, instant = TRUE) //instant aggro grab + for(var/i in 1 to 6) + if (target.Adjacent(owner)) + // LEVEL 2: If behind target, mute or unconscious! + if(do_knockdown) // && level_current >= 1) + target.Knockdown(15 + 10 * level_current,1) + target.adjustStaminaLoss(40 + 10 * level_current) + // Cancel Walk (we were close enough to contact them) + walk(owner, 0) + target.Stun(10,1) //Without this the victim can just walk away + target.grabbedby(owner) // Taken from mutations.dm under changelings + target.grippedby(owner, instant = TRUE) //instant aggro grab + break + sleep(i*3) /datum/action/bloodsucker/targeted/lunge/DeactivatePower(mob/living/user = owner, mob/living/target) ..() // activate = FALSE From 4de8391ba4e2564fd55a716b2908a7007a24714e Mon Sep 17 00:00:00 2001 From: raspyosu Date: Fri, 21 Feb 2020 01:40:35 -0500 Subject: [PATCH 052/175] fix filenames zzzz does this work even time to fIND OUT --- .../antagonists/bloodsucker/powers/{bs_cloak.dm => cloak.dm} | 0 .../antagonists/bloodsucker/powers/{bs_lunge.dm => lunge.dm} | 0 .../bloodsucker/powers/{bs_mesmerize.dm => mesmerize.dm} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename code/modules/antagonists/bloodsucker/powers/{bs_cloak.dm => cloak.dm} (100%) rename code/modules/antagonists/bloodsucker/powers/{bs_lunge.dm => lunge.dm} (100%) rename code/modules/antagonists/bloodsucker/powers/{bs_mesmerize.dm => mesmerize.dm} (100%) diff --git a/code/modules/antagonists/bloodsucker/powers/bs_cloak.dm b/code/modules/antagonists/bloodsucker/powers/cloak.dm similarity index 100% rename from code/modules/antagonists/bloodsucker/powers/bs_cloak.dm rename to code/modules/antagonists/bloodsucker/powers/cloak.dm diff --git a/code/modules/antagonists/bloodsucker/powers/bs_lunge.dm b/code/modules/antagonists/bloodsucker/powers/lunge.dm similarity index 100% rename from code/modules/antagonists/bloodsucker/powers/bs_lunge.dm rename to code/modules/antagonists/bloodsucker/powers/lunge.dm diff --git a/code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm b/code/modules/antagonists/bloodsucker/powers/mesmerize.dm similarity index 100% rename from code/modules/antagonists/bloodsucker/powers/bs_mesmerize.dm rename to code/modules/antagonists/bloodsucker/powers/mesmerize.dm From f35ee95d672bf46a4b328d9fad9b1b04e76d8f35 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Fri, 21 Feb 2020 01:54:23 -0500 Subject: [PATCH 053/175] Update heart.dm --- code/modules/surgery/organs/heart.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 5767e84c73..71efcbfc5e 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -222,9 +222,8 @@ obj/item/organ/heart/cybernetic/upgraded/on_life() /obj/item/organ/heart/ipc name = "IPC heart" - desc = "An electronic pump that regulates hydraulic functions, they have an auto-restart after EMPs." + desc = "An electronic pump that regulates hydraulic functions, they have an not affected by EMPs." icon_state = "heart-c" - organ_flags = ORGAN_SYNTHETIC /obj/item/organ/heart/freedom name = "heart of freedom" From 58df6486cb99c86c065b9ce764af3c2e20fd4104 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Fri, 21 Feb 2020 03:06:38 -0500 Subject: [PATCH 054/175] Hey hey people, grammar here. --- code/modules/surgery/organs/heart.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 71efcbfc5e..547ca38ead 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -222,7 +222,7 @@ obj/item/organ/heart/cybernetic/upgraded/on_life() /obj/item/organ/heart/ipc name = "IPC heart" - desc = "An electronic pump that regulates hydraulic functions, they have an not affected by EMPs." + desc = "An electronic pump that regulates hydraulic functions, the electronics have EMP shielding." icon_state = "heart-c" /obj/item/organ/heart/freedom From 7d8f1320b33c5763bc808582846288287d350ddb Mon Sep 17 00:00:00 2001 From: TrilbySpaceClone Date: Fri, 21 Feb 2020 03:07:42 -0500 Subject: [PATCH 055/175] it looks nicer --- .../living/carbon/human/species_types/ipc.dm | 6 ++++++ code/modules/surgery/organs/eyes.dm | 4 ++++ code/modules/surgery/organs/liver.dm | 4 ++++ code/modules/surgery/organs/lungs.dm | 7 ++++++- code/modules/surgery/organs/stomach.dm | 4 ++++ icons/obj/surgery.dmi | Bin 37901 -> 41535 bytes 6 files changed, 24 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/ipc.dm b/code/modules/mob/living/carbon/human/species_types/ipc.dm index 4249be098f..15f3dd808b 100644 --- a/code/modules/mob/living/carbon/human/species_types/ipc.dm +++ b/code/modules/mob/living/carbon/human/species_types/ipc.dm @@ -13,7 +13,13 @@ meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/ipc gib_types = list(/obj/effect/gibspawner/ipc, /obj/effect/gibspawner/ipc/bodypartless) mutanttongue = /obj/item/organ/tongue/robot/ipc +//Just robo looking parts. mutant_heart = /obj/item/organ/heart/ipc + mutantlungs = /obj/item/organ/lungs/ipc + mutantliver = /obj/item/organ/liver/ipc + mutantstomach = /obj/item/organ/stomach/ipc + mutanteyes = /obj/item/organ/eyes/ipc + exotic_bloodtype = "HF" var/datum/action/innate/monitor_change/screen diff --git a/code/modules/surgery/organs/eyes.dm b/code/modules/surgery/organs/eyes.dm index bdd1a444bb..a915d12838 100644 --- a/code/modules/surgery/organs/eyes.dm +++ b/code/modules/surgery/organs/eyes.dm @@ -377,3 +377,7 @@ name = "insect eyes" desc = "These eyes seem to have increased sensitivity to bright light, with no improvement to low light vision." flash_protect = -1 + +/obj/item/organ/eyes/ipc + name = "ipc eyes" + icon_state = "cybernetic_eyeballs" \ No newline at end of file diff --git a/code/modules/surgery/organs/liver.dm b/code/modules/surgery/organs/liver.dm index 680d2389de..73225fc41c 100755 --- a/code/modules/surgery/organs/liver.dm +++ b/code/modules/surgery/organs/liver.dm @@ -95,6 +95,10 @@ icon_state = "liver-p" desc = "A large crystal that is somehow capable of metabolizing chemicals, these are found in plasmamen." +/obj/item/organ/liver/ipc + name = "reagent processing liver" + icon_state = "liver-c" + /obj/item/organ/liver/cybernetic name = "cybernetic liver" icon_state = "liver-c" diff --git a/code/modules/surgery/organs/lungs.dm b/code/modules/surgery/organs/lungs.dm index 91153655d3..b774aaf793 100644 --- a/code/modules/surgery/organs/lungs.dm +++ b/code/modules/surgery/organs/lungs.dm @@ -2,6 +2,7 @@ /obj/item/organ/lungs name = "lungs" + desc = "Looking at them makes you start manual breathing." icon_state = "lungs" zone = BODY_ZONE_CHEST slot = ORGAN_SLOT_LUNGS @@ -462,6 +463,10 @@ S.reagents.add_reagent(/datum/reagent/medicine/salbutamol, 5) return S +/obj/item/organ/lungs/ipc + name = "ipc lungs" + icon_state = "lungs-c" + /obj/item/organ/lungs/plasmaman name = "plasma filter" desc = "A spongy rib-shaped mass for filtering plasma from the air." @@ -543,4 +548,4 @@ /obj/item/organ/lungs/yamerol/on_life() ..() - damage += 2 //Yamerol lungs are temporary + damage += 2 //Yamerol lungs are temporary \ No newline at end of file diff --git a/code/modules/surgery/organs/stomach.dm b/code/modules/surgery/organs/stomach.dm index 94f88cbe67..3b383581cf 100755 --- a/code/modules/surgery/organs/stomach.dm +++ b/code/modules/surgery/organs/stomach.dm @@ -96,3 +96,7 @@ name = "digestive crystal" icon_state = "stomach-p" desc = "A strange crystal that is responsible for metabolizing the unseen energy force that feeds plasmamen." + +/obj/item/organ/stomach/ipc + name = "ipc stomach" + icon_state = "stomach-ipc" diff --git a/icons/obj/surgery.dmi b/icons/obj/surgery.dmi index fcc28de7b9324ed4dada532bb91380ac2d1fb30d..e998ce442db416faf6a546f6a72e062e4e0387a0 100755 GIT binary patch literal 41535 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