diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 841b83570671..c88d42538c86 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -4,7 +4,7 @@ It's best not to mess with the numbers of the regular access levels because most of them are tied into map-placed objects. This should be reworked in the future.*/ //WE NEED TO REWORK THIS ONE DAY. Access levels make me cry - Apophis #define ACCESS_MARINE_SENIOR 1 -#define ACCESS_MARINE_DATABASE 2 +#define ACCESS_MARINE_GENERAL 2 #define ACCESS_MARINE_BRIG 3 #define ACCESS_MARINE_ARMORY 4 #define ACCESS_MARINE_CMO 5 @@ -46,6 +46,11 @@ most of them are tied into map-placed objects. This should be reworked in the fu #define ACCESS_MARINE_CHAPLAIN 38 #define ACCESS_MARINE_FIELD_DOC 39 +/// Grants access to Marine record databases +#define ACCESS_MARINE_DATABASE 40 +/// Grants administrator access to Marine record databases +#define ACCESS_MARINE_DATABASE_ADMIN 41 + // AI Core Accesses /// Used in temporary passes #define ACCESS_MARINE_AI_TEMP 90 diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm index 003f361ab351..0155477337c3 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm @@ -86,3 +86,6 @@ /// From /mob/living/carbon/human/UnarmedAttack() #define COMSIG_HUMAN_UNARMED_ATTACK "human_unarmed_attack" + +/// From /mob/living/carbon/human/hud_set_holocard() +#define COMSIG_HUMAN_TRIAGE_CARD_UPDATED "human_triage_card_updated" diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm index 4e044735793c..0d5917a6a63f 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm @@ -95,3 +95,6 @@ /// From /mob/living/carbon/xenomorph/proc/do_evolve() #define COMSIG_XENO_EVOLVE_TO_NEW_CASTE "xeno_evolve_to_new_caste" + +/// From /mob/living/carbon/human/death(cause, gibbed) +#define COMSIG_XENO_REVEAL_TACMAP "xeno_reveal_tacmap" diff --git a/code/__DEFINES/job.dm b/code/__DEFINES/job.dm index a95fd3ae872c..a36ecc2ea7f1 100644 --- a/code/__DEFINES/job.dm +++ b/code/__DEFINES/job.dm @@ -412,6 +412,25 @@ GLOBAL_LIST_INIT(job_command_roles, JOB_COMMAND_ROLES_LIST) //-------- TWE --------// #define JOB_TWE_REPRESENTATIVE "TWE Representative" +//IASF + +#define JOB_TWE_IASF_PARA "IASF Paratrooper" +#define JOB_TWE_IASF_PARA_SNIPER "IASF Paratrooper (Marksman)" +#define JOB_TWE_IASF_PARA_PILOT "IASF Fleet Air Arm (Dropship Pilot)" +#define JOB_TWE_IASF_PARA_SMARTGUNNER "IASF Paratrooper (Smartgunner)" +#define JOB_TWE_IASF_PARA_SPECIALIST "IASF Paratrooper (Specialist)" +#define JOB_TWE_IASF_PARA_ENGI "IASF Paratrooper (Combat Engineer)" +#define JOB_TWE_IASF_PARA_MEDIC "IASF Paratrooper (Combat Medical Technician)" +#define JOB_TWE_IASF_PARA_SQUAD_LEADER "IASF Paratrooper (Squad Leader)" +#define JOB_TWE_IASF_PARA_LIEUTENANT "IASF Lieutenant" +#define JOB_TWE_IASF_PARA_CAPTAIN "IASF Captain" +#define JOB_TWE_IASF_PARA_MAJOR "IASF Major" +#define JOB_TWE_IASF_PARA_COMMANDER "IASF Commanding Officer" + +#define JOB_TWE_IASF_PARA_SYNTH "IASF Support Synth" + +#define TWE_IASF_JOB_LIST list(JOB_TWE_IASF_PARA, JOB_TWE_IASF_PARA_ENGI, JOB_TWE_IASF_PARA_MEDIC, JOB_TWE_IASF_PARA_PILOT, JOB_TWE_IASF_PARA_SMARTGUNNER, JOB_TWE_IASF_PARA_SPECIALIST, JOB_TWE_IASF_PARA_SNIPER , JOB_TWE_IASF_PARA_SQUAD_LEADER, JOB_TWE_IASF_PARA_LIEUTENANT, JOB_TWE_IASF_PARA_CAPTAIN, JOB_TWE_IASF_PARA_MAJOR, JOB_TWE_IASF_PARA_COMMANDER) + //RMC #define JOB_TWE_RMC_RIFLEMAN "RMC Rifleman" #define JOB_TWE_RMC_MARKSMAN "RMC Marksman" diff --git a/code/__DEFINES/mob_hud.dm b/code/__DEFINES/mob_hud.dm index 4d68bbcb4fa6..d9139a59ce98 100644 --- a/code/__DEFINES/mob_hud.dm +++ b/code/__DEFINES/mob_hud.dm @@ -44,17 +44,18 @@ #define MOB_HUD_FACTION_WY 12 #define MOB_HUD_FACTION_HC 13 #define MOB_HUD_FACTION_TWE 14 -#define MOB_HUD_FACTION_CLF 15 -#define MOB_HUD_FACTION_PMC 16 -#define MOB_HUD_FACTION_CMB 17 -#define MOB_HUD_FACTION_NSPA 18 -#define MOB_HUD_FACTION_PAP 19 -#define MOB_HUD_FACTION_WO 20 -#define MOB_HUD_HUNTER 21 -#define MOB_HUD_HUNTER_CLAN 22 -#define MOB_HUD_EXECUTE 23 -#define MOB_HUD_NEW_PLAYER 24 -#define MOB_HUD_SPYCAMS 25 +#define MOB_HUD_FACTION_IASF 15 +#define MOB_HUD_FACTION_CLF 16 +#define MOB_HUD_FACTION_PMC 17 +#define MOB_HUD_FACTION_CMB 18 +#define MOB_HUD_FACTION_NSPA 19 +#define MOB_HUD_FACTION_PAP 20 +#define MOB_HUD_FACTION_WO 21 +#define MOB_HUD_HUNTER 22 +#define MOB_HUD_HUNTER_CLAN 23 +#define MOB_HUD_EXECUTE 24 +#define MOB_HUD_NEW_PLAYER 25 +#define MOB_HUD_SPYCAMS 26 //for SL/FTL/LZ targeting on locator huds #define TRACKER_SL "track_sl" diff --git a/code/__DEFINES/mode.dm b/code/__DEFINES/mode.dm index a92f9208305f..66721f3d84c8 100644 --- a/code/__DEFINES/mode.dm +++ b/code/__DEFINES/mode.dm @@ -249,6 +249,7 @@ DEFINE_BITFIELD(whitelist_status, list( #define FACTION_CONTRACTOR "VAI" #define FACTION_MARSHAL "Colonial Marshal" #define FACTION_NSPA "NSPA" +#define FACTION_IASF "Imperial Armed Space Force" #define FACTION_PAP "People's Armed Police" #define FACTION_HYPERDYNE "Hyperdyne Corporation" #define FACTION_WY_DEATHSQUAD "WY Death Squad" @@ -287,6 +288,7 @@ DEFINE_BITFIELD(whitelist_status, list( #define FACTION_LIST_DUTCH list(FACTION_DUTCH) #define FACTION_LIST_SURVIVOR_WY list(FACTION_SURVIVOR, FACTION_PMC, FACTION_WY) #define FACTION_LIST_SURVIVOR_NSPA list(FACTION_SURVIVOR, FACTION_NSPA, FACTION_TWE) +#define FACTION_LIST_SURVIVOR_IASF list(FACTION_SURVIVOR, FACTION_IASF, FACTION_TWE) #define FACTION_LIST_SURVIVOR_PAP list(FACTION_SURVIVOR, FACTION_PAP, FACTION_UPP) #define FACTION_LIST_SURVIVOR_UPP list(FACTION_SURVIVOR, FACTION_UPP) #define FACTION_LIST_MARINE_WY list(FACTION_MARINE, FACTION_PMC, FACTION_WY) diff --git a/code/controllers/subsystem/minimap.dm b/code/controllers/subsystem/minimap.dm index 88144925368a..17dc3de112dd 100644 --- a/code/controllers/subsystem/minimap.dm +++ b/code/controllers/subsystem/minimap.dm @@ -769,9 +769,10 @@ SUBSYSTEM_DEF(minimaps) if(faction == FACTION_NEUTRAL && isobserver(user)) faction = allowed_flags == MINIMAP_FLAG_XENO ? XENO_HIVE_NORMAL : FACTION_MARINE - if(is_xeno && xeno.hive.see_humans_on_tacmap && targeted_ztrait != ZTRAIT_MARINE_MAIN_SHIP) + if(is_xeno && xeno.hive.see_humans_on_tacmap) + if(targeted_ztrait != ZTRAIT_MARINE_MAIN_SHIP && !xeno.hive.need_round_end_check) + targeted_ztrait = ZTRAIT_MARINE_MAIN_SHIP allowed_flags |= MINIMAP_FLAG_USCM|MINIMAP_FLAG_WY|MINIMAP_FLAG_UPP|MINIMAP_FLAG_CLF - targeted_ztrait = ZTRAIT_MARINE_MAIN_SHIP map_holder = null new_current_map = get_unannounced_tacmap_data_png(faction) @@ -1048,7 +1049,7 @@ SUBSYSTEM_DEF(minimaps) return UI_CLOSE var/mob/living/carbon/xenomorph/xeno = user - if(!xeno.hive?.living_xeno_queen?.ovipositor) + if(!xeno.hive?.living_xeno_queen?.ovipositor && xeno.hive?.tacmap_requires_queen_ovi) return UI_CLOSE return UI_INTERACTIVE diff --git a/code/datums/ammo/bullet/pistol.dm b/code/datums/ammo/bullet/pistol.dm index 1dd3fc4596ae..99eee56c9f2e 100644 --- a/code/datums/ammo/bullet/pistol.dm +++ b/code/datums/ammo/bullet/pistol.dm @@ -285,3 +285,5 @@ penetration = 20 shrapnel_chance = SHRAPNEL_CHANCE_TIER_2 +/datum/ammo/bullet/pistol/l54_custom + penetration= ARMOR_PENETRATION_TIER_3 diff --git a/code/datums/ammo/bullet/smg.dm b/code/datums/ammo/bullet/smg.dm index e4618acff22d..8bd163e66dd1 100644 --- a/code/datums/ammo/bullet/smg.dm +++ b/code/datums/ammo/bullet/smg.dm @@ -159,7 +159,7 @@ /datum/ammo/bullet/smg/p90/twe_ap name = "armor-piercing submachinegun bullet" - damage = 26 + damage = 20 accurate_range = 5 effective_range_max = 8 penetration = ARMOR_PENETRATION_TIER_4 diff --git a/code/datums/ammo/rocket.dm b/code/datums/ammo/rocket.dm index a0e7d8cc67ee..0033affb69ed 100644 --- a/code/datums/ammo/rocket.dm +++ b/code/datums/ammo/rocket.dm @@ -342,6 +342,11 @@ INVOKE_ASYNC(src,PROC_REF(prime), null, projectile) /datum/ammo/rocket/brute/proc/prime(atom/atom, obj/projectile/projectile) + if(istype(projectile.firer,/mob/living/carbon)) + var/mob/living/carbon/firer = projectile.firer + firer.attack_log += "\[[time_stamp()]\] [key_name(projectile.firer)] fired [name] on [atom]" + msg_admin_niche("[key_name(firer, firer.client)] fired [src.name] on [atom.name] at ([atom.x],[atom.y],[atom.z]) [ADMIN_JMP(atom)] ") + log_game("[key_name(firer)] fired [src.name] on [atom.name] at ([atom.x],[atom.y],[atom.z])") var/angle = projectile.angle var/right_angle = (angle + 90 ) % 360 var/left_angle = (angle -90) % 360 diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index f6167a3a6bfa..d072ef2db665 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -112,15 +112,15 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) record_medical.fields["id"] = id record_medical.fields["name"] = target.real_name record_medical.name = target.name - record_medical.fields["b_type"] = target.blood_type - record_medical.fields["mi_dis"] = "None" - record_medical.fields["mi_dis_d"] = "No minor disabilities have been declared." - record_medical.fields["ma_dis"] = "None" - record_medical.fields["ma_dis_d"] = "No major disabilities have been diagnosed." - record_medical.fields["alg"] = "None" - record_medical.fields["alg_d"] = "No allergies have been detected in this patient." - record_medical.fields["cdi"] = "None" - record_medical.fields["cdi_d"] = "No diseases have been diagnosed at the moment." + record_medical.fields["blood_type"] = target.blood_type + record_medical.fields["minor_disability"] = "None" + record_medical.fields["minor_disability_details"] = "No minor disabilities have been declared." + record_medical.fields["major_disability"] = "None" + record_medical.fields["major_disability_details"] = "No major disabilities have been diagnosed." + record_medical.fields["allergies"] = "None" + record_medical.fields["allergies_details"] = "No allergies have been detected in this patient." + record_medical.fields["diseases"] = "None" + record_medical.fields["diseases_details"] = "No diseases have been diagnosed at the moment." record_medical.fields["last_scan_time"] = null record_medical.fields["last_scan_result"] = "No scan data on record" // body scanner results record_medical.fields["autodoc_data"] = list() @@ -156,7 +156,7 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) record_locked.fields["rank"] = target.job record_locked.fields["age"] = target.age record_locked.fields["sex"] = target.gender - record_locked.fields["b_type"] = target.b_type + record_locked.fields["blood_type"] = target.blood_type record_locked.fields["species"] = target.get_species() record_locked.fields["origin"] = target.origin record_locked.fields["faction"] = target.personal_faction diff --git a/code/datums/effects/heal_over_time.dm b/code/datums/effects/heal_over_time.dm index 8b4883cede4e..2a7188fa330e 100644 --- a/code/datums/effects/heal_over_time.dm +++ b/code/datums/effects/heal_over_time.dm @@ -32,3 +32,11 @@ affected_mob.updatehealth() return TRUE + +/datum/effects/heal_over_time/Destroy() + if(affected_atom) + var/mob/living/carbon/xenomorph/xeno = affected_atom + if(istype(xeno)) + xeno.balloon_alert(xeno, "our regeneration speed returns to normal.", text_color = "#17991b80") + playsound(xeno, 'sound/effects/squish_and_exhaust.ogg', 25, 1) + return ..() diff --git a/code/datums/effects/plasma_over_time.dm b/code/datums/effects/plasma_over_time.dm index c6c32c3cd872..5fb6f71c1ce5 100644 --- a/code/datums/effects/plasma_over_time.dm +++ b/code/datums/effects/plasma_over_time.dm @@ -31,3 +31,11 @@ affected_mob.gain_plasma(plasma_each_process) return TRUE + +/datum/effects/plasma_over_time/Destroy() + if(affected_atom) + var/mob/living/carbon/xenomorph/xeno = affected_atom + if(istype(xeno)) + xeno.balloon_alert(xeno, "our plasma rush subsides.", text_color = "#1e6072") + playsound(xeno, 'sound/effects/squish_and_exhaust.ogg', 25, 1) + return ..() diff --git a/code/datums/effects/xeno_strains/gain_xeno_cooldown_reduction_on_slash.dm b/code/datums/effects/xeno_strains/gain_xeno_cooldown_reduction_on_slash.dm index 5bfde0080ef7..bba62ea7eff7 100644 --- a/code/datums/effects/xeno_strains/gain_xeno_cooldown_reduction_on_slash.dm +++ b/code/datums/effects/xeno_strains/gain_xeno_cooldown_reduction_on_slash.dm @@ -26,19 +26,21 @@ /datum/effects/gain_xeno_cooldown_reduction_on_slash/Destroy() if(affected_atom) - var/mob/living/carbon/xenomorph/X = affected_atom - X.cooldown_reduction_percentage -= current_reduction - to_chat(X, SPAN_XENOWARNING("You feel your frenzy wanes! Your cooldowns are back to normal.")) - if(X.cooldown_reduction_percentage < 0) - X.cooldown_reduction_percentage = 0 + var/mob/living/carbon/xenomorph/xeno = affected_atom + xeno.cooldown_reduction_percentage -= current_reduction + to_chat(xeno, SPAN_XENOWARNING("We feel our frenzy wane! Our cooldowns are back to normal.")) + xeno.balloon_alert(xeno, "we feel our frenzy wane!", text_color = "#99461780") + playsound(xeno, 'sound/effects/squish_and_exhaust.ogg', 25, 1) + if(xeno.cooldown_reduction_percentage < 0) + xeno.cooldown_reduction_percentage = 0 return ..() /datum/effects/gain_xeno_cooldown_reduction_on_slash/proc/increase_cooldown_reduction() SIGNAL_HANDLER if(affected_atom && current_reduction < max_reduction_amount) - var/mob/living/carbon/xenomorph/X = affected_atom + var/mob/living/carbon/xenomorph/xeno = affected_atom var/previous_reduction = current_reduction current_reduction = min(current_reduction + reduction_amount_per_slash, max_reduction_amount) var/delta = current_reduction - previous_reduction - X.cooldown_reduction_percentage += delta + xeno.cooldown_reduction_percentage += delta diff --git a/code/datums/effects/xeno_strains/xeno_speed.dm b/code/datums/effects/xeno_strains/xeno_speed.dm index 0e3b86a58da3..63b80198e603 100644 --- a/code/datums/effects/xeno_strains/xeno_speed.dm +++ b/code/datums/effects/xeno_strains/xeno_speed.dm @@ -44,4 +44,6 @@ LAZYREMOVE(xeno.modifier_sources, effect_modifier_source) if(effect_end_message) to_chat(xeno, effect_end_message) + xeno.balloon_alert(xeno, "our speed fall back to normal.", text_color = "#5B248C") + playsound(xeno, 'sound/effects/squish_and_exhaust.ogg', 25, 1) return ..() diff --git a/code/datums/elements/_element.dm b/code/datums/elements/_element.dm index fa10ca2a3a91..5496b95ed678 100644 --- a/code/datums/elements/_element.dm +++ b/code/datums/elements/_element.dm @@ -28,9 +28,9 @@ /// Deactivates the functionality defines by the element on the given datum /datum/element/proc/Detach(datum/source, force) SIGNAL_HANDLER + SHOULD_CALL_PARENT(TRUE) SEND_SIGNAL(source, COMSIG_ELEMENT_DETACH, src) - SHOULD_CALL_PARENT(TRUE) UnregisterSignal(source, COMSIG_PARENT_QDELETING) /datum/element/Destroy(force) diff --git a/code/datums/emergency_calls/bodyguard.dm b/code/datums/emergency_calls/bodyguard.dm index 51b7c9e7cae0..597ebfa73724 100644 --- a/code/datums/emergency_calls/bodyguard.dm +++ b/code/datums/emergency_calls/bodyguard.dm @@ -68,8 +68,8 @@ spawn_header_leader = "You are a Weyland-Yutani PMC Lead Investigator!" /datum/emergency_call/wy_bodyguard/commando - equipment_preset = /datum/equipment_preset/pmc/commando/standard - equipment_preset_leader = /datum/equipment_preset/pmc/commando/leader + equipment_preset = /datum/equipment_preset/pmc/commando/standard/low_threat + equipment_preset_leader = /datum/equipment_preset/pmc/commando/leader/low_threat spawn_header = "You are a Weyland-Yutani Commando!" spawn_header_leader = "You are a Weyland-Yutani Commando Leader!" diff --git a/code/datums/factions/iasf.dm b/code/datums/factions/iasf.dm new file mode 100644 index 000000000000..031e39e51682 --- /dev/null +++ b/code/datums/factions/iasf.dm @@ -0,0 +1,41 @@ +/datum/faction/iasf + name = "TWE - Imperial Armed Space Force" + faction_tag = FACTION_IASF + +/datum/faction/iasf/modify_hud_holder(image/holder, mob/living/carbon/human/human) + var/hud_icon_state + var/obj/item/card/id/dogtag/ID = human.get_idcard() + var/_role + if(human.mind) + _role = human.job + else if(ID) + _role = ID.rank + switch(_role) + if(JOB_TWE_IASF_PARA_LIEUTENANT) + hud_icon_state = "lieutenant" + if(JOB_TWE_IASF_PARA_SQUAD_LEADER) + hud_icon_state = "teamleader" + if(JOB_TWE_IASF_PARA_SNIPER) + hud_icon_state = "sniper" + if(JOB_TWE_IASF_PARA_MEDIC) + hud_icon_state = "medic" + if(JOB_TWE_IASF_PARA) + hud_icon_state = "rifleman" + if(JOB_TWE_IASF_PARA_SMARTGUNNER) + hud_icon_state = "smartgunner" + if(JOB_TWE_IASF_PARA_SPECIALIST) + hud_icon_state = "spec" + if(JOB_TWE_IASF_PARA_PILOT) + hud_icon_state = "pilot" + if(JOB_TWE_IASF_PARA_ENGI) + hud_icon_state = "engi" + if(JOB_TWE_IASF_PARA_CAPTAIN) + hud_icon_state = "commander" + if(JOB_TWE_IASF_PARA_MAJOR) + hud_icon_state = "major" + if (JOB_TWE_IASF_PARA_COMMANDER) + hud_icon_state = "commander" + if (JOB_TWE_IASF_PARA_SYNTH) + hud_icon_state = "synth" + if(hud_icon_state) + holder.overlays += image('icons/mob/hud/marine_hud.dmi', human, "iasf_[hud_icon_state]") diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index d42d93cbf7e7..13cf15cb98a9 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -45,6 +45,10 @@ var/list/synth_survivor_types_by_variant var/list/CO_survivor_types + var/list/CO_survivor_types_by_variant + + var/list/CO_insert_survivor_types + var/list/CO_insert_survivor_types_by_variant var/list/defcon_triggers = list(5150, 4225, 2800, 1000, 0.0) @@ -278,6 +282,23 @@ pathed_CO_survivor_types += CO_survivor_typepath CO_survivor_types = pathed_CO_survivor_types.Copy() + if(islist(json["CO_insert_survivor_types"])) + CO_insert_survivor_types = json["CO_insert_survivor_types"] + else if ("CO_insert_survivor_types" in json) + log_world("map_config CO_insert_survivor_types is not a list!") + return + + var/list/pathed_CO_insert_survivor_types = list() + for(var/CO_insert_surv_type in CO_insert_survivor_types) + var/CO_insert_survivor_typepath = CO_insert_surv_type + if(!ispath(CO_insert_survivor_typepath)) + CO_insert_survivor_typepath = text2path(CO_insert_surv_type) + if(!ispath(CO_insert_survivor_typepath)) + log_world("[CO_insert_surv_type] isn't a proper typepath, removing from CO_insert_survivor_types list") + continue + pathed_CO_insert_survivor_types += CO_insert_survivor_typepath + CO_insert_survivor_types = pathed_CO_insert_survivor_types.Copy() + if (islist(json["monkey_types"])) monkey_types = list() for(var/monkey in json["monkey_types"]) diff --git a/code/datums/mob_hud.dm b/code/datums/mob_hud.dm index 412ee97960b9..6ef68f78f727 100644 --- a/code/datums/mob_hud.dm +++ b/code/datums/mob_hud.dm @@ -16,6 +16,7 @@ GLOBAL_LIST_INIT_TYPED(huds, /datum/mob_hud, list( MOB_HUD_FACTION_WY = new /datum/mob_hud/faction/wy(), MOB_HUD_FACTION_HC = new /datum/mob_hud/faction/hyperdyne(), MOB_HUD_FACTION_TWE = new /datum/mob_hud/faction/twe(), + MOB_HUD_FACTION_IASF = new /datum/mob_hud/faction/iasf(), MOB_HUD_FACTION_CLF = new /datum/mob_hud/faction/clf(), MOB_HUD_FACTION_PMC = new /datum/mob_hud/faction/pmc(), MOB_HUD_FACTION_CMB = new /datum/mob_hud/faction/cmb(), @@ -216,6 +217,9 @@ GLOBAL_LIST_INIT_TYPED(huds, /datum/mob_hud, list( /datum/mob_hud/faction/twe faction_to_check = FACTION_TWE +/datum/mob_hud/faction/iasf + faction_to_check = FACTION_IASF + /datum/mob_hud/faction/clf faction_to_check = FACTION_CLF @@ -798,6 +802,7 @@ GLOBAL_DATUM_INIT(hud_icon_hudfocus, /image, image('icons/mob/hud/marine_hud.dmi /mob/living/carbon/human/hud_set_holocard() var/image/holder = hud_list[HOLOCARD_HUD] holder.icon_state = holo_card_color ? "holo_card_[holo_card_color]" : "hudblank" + SEND_SIGNAL(src, COMSIG_HUMAN_TRIAGE_CARD_UPDATED) // Vampire Execute HUD /mob/living/carbon/human/proc/update_execute_hud() diff --git a/code/datums/paygrades/factions/twe/twe.dm b/code/datums/paygrades/factions/twe/twe.dm index b03c4e0379a2..bffe157f3108 100644 --- a/code/datums/paygrades/factions/twe/twe.dm +++ b/code/datums/paygrades/factions/twe/twe.dm @@ -119,106 +119,106 @@ pay_multiplier = 9 officer_grade = GRADE_FLAG -///IASF Enlisted +/// IASF Enlisted /datum/paygrade/twe/iasf/e1 paygrade = PAY_SHORT_IASFE1 - name = "Nito Rikushi" - prefix = "Nt-Shi." + name = "Private" + prefix = "Pte." /datum/paygrade/twe/iasf/e2 paygrade = PAY_SHORT_IASFE2 - name = "Itto rikushi " - prefix = "It-Shi." + name = "Private Second Class" + prefix = "Pte2." pay_multiplier = 2.1 /datum/paygrade/twe/iasf/e3 paygrade = PAY_SHORT_IASFE3 - name = "Rikushicho" - prefix = "Shi." + name = "Lance Corporal" + prefix = "LCpl." pay_multiplier = 2.2 /datum/paygrade/twe/iasf/e4 paygrade = PAY_SHORT_IASFE4 - name = "Santo rikuso" - prefix = "St-Rik." + name = "Corporal" + prefix = "Cpl." pay_multiplier = 2.3 /datum/paygrade/twe/iasf/e5 paygrade = PAY_SHORT_IASFE5 - name = "Nito rikuso" - prefix = "Nt-Rik." + name = "Sergeant" + prefix = "Sgt." pay_multiplier = 2.7 -/datum/paygrade/twe/e6 +/datum/paygrade/twe/iasf/e6 paygrade = PAY_SHORT_IASFE6 - name = "Itto rikuso" - prefix = "It-Rik." + name = "Staff Sergeant" + prefix = "SSgt." pay_multiplier = 2.7 -/datum/paygrade/twe/e7 +/datum/paygrade/twe/iasf/e7 paygrade = PAY_SHORT_IASFE7 - name = "Rikusocho " - prefix = "Rik." + name = "Warrant Officer Class 2" + prefix = "WO2." pay_multiplier = 2.7 - -///IASF officer +/// IASF Officer /datum/paygrade/twe/iasf/o1 paygrade = PAY_SHORT_IASFO1 - name = "Santo Kaii" - prefix = "St-Wei." + name = "Second Lieutenant" + prefix = "2Lt." /datum/paygrade/twe/iasf/o2 paygrade = PAY_SHORT_IASFO2 - name = "Nito Kaii" - prefix = "Nt-Wei." + name = "Lieutenant" + prefix = "Lt." pay_multiplier = 2.1 /datum/paygrade/twe/iasf/o3 paygrade = PAY_SHORT_IASFO3 - name = "Itto Kaii" - prefix = "It-Wei." + name = "Captain" + prefix = "Capt." pay_multiplier = 2.2 /datum/paygrade/twe/iasf/o4 paygrade = PAY_SHORT_IASFO4 - name = "Santo Kaisa" - prefix = "St-Sa." + name = "Major" + prefix = "Maj." pay_multiplier = 2.3 /datum/paygrade/twe/iasf/o5 paygrade = PAY_SHORT_IASFO5 - name = "Nito Kaisa" - prefix = "Nt-Sa." + name = "Lieutenant Colonel" + prefix = "LtCol." pay_multiplier = 2.7 /datum/paygrade/twe/iasf/o6 paygrade = PAY_SHORT_IASFO6 - name = "Itto Kaisa" - prefix = "It-Sa." + name = "Colonel" + prefix = "Col." pay_multiplier = 2.7 /datum/paygrade/twe/iasf/o7 paygrade = PAY_SHORT_IASFO7 - name = "Kaisho-ho" - prefix = "It-Sho." + name = "Brigadier" + prefix = "Brig." pay_multiplier = 2.7 /datum/paygrade/twe/iasf/o8 paygrade = PAY_SHORT_IASFO8 - name = "Kaisho" - prefix = "Sho." + name = "Major General" + prefix = "MajGen." pay_multiplier = 2.7 - /datum/paygrade/twe/iasf/o9 paygrade = PAY_SHORT_IASFO9 - name = "Bakuryōchō-taru-shō" - prefix = "Bt-Sho." + name = "General of the Brigade" + prefix = "GenBrig." pay_multiplier = 2.7 +// Misc + /datum/paygrade/twe/o10 paygrade = PAY_SHORT_EMP name = "Empress" diff --git a/code/datums/skills/iasf.dm b/code/datums/skills/iasf.dm new file mode 100644 index 000000000000..3abdd71ed6bd --- /dev/null +++ b/code/datums/skills/iasf.dm @@ -0,0 +1,226 @@ +/* +---------------------------- +IASF - Paratrooper +---------------------------- +*/ + +//NOTE: Skills take heavy from PMCs + + +/datum/skills/iasf + name = "IASF - Paratrooper" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/iasf/specialist + name = "IASF - Paratrooper - Specialist" // Not used in inserts. + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/iasf/pilot + name = "IASF - Paratrooper - Pilot" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_PILOT = SKILL_PILOT_EXPERT, + ) + +/datum/skills/iasf/engi + name = "IASF - Paratrooper - Engineer" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/iasf/smartgun + name = "IASF - Paratrooper - Smartgunner" // Not used in inserts. + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/iasf/medic + name = "IASF - Paratrooper - Medic" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, + SKILL_SURGERY = SKILL_SURGERY_TRAINED, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/iasf/leader + name = "IASF - Paratrooper - Squad Leader" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_TRAINED, + SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, + SKILL_PILOT = SKILL_PILOT_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_INTEL = SKILL_INTEL_TRAINED, + ) + +/datum/skills/iasf/lieutenant + name = "IASF - Paratrooper - Officer" // Not used in inserts. + skills = list( + SKILL_CQC = SKILL_CQC_EXPERT, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_EXPERT, + SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, + SKILL_INTEL = SKILL_INTEL_TRAINED, + SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, + SKILL_PILOT = SKILL_PILOT_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, + ) + +/datum/skills/iasf/captain + name = "IASF - Paratrooper - Captain" // Not used in inserts. + skills = list( + SKILL_CQC = SKILL_CQC_EXPERT, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_MASTER, + SKILL_LEADERSHIP = SKILL_LEAD_MASTER, + SKILL_INTEL = SKILL_INTEL_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, + SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, + SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, + SKILL_PILOT = SKILL_PILOT_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, + ) + +/datum/skills/iasf/major + name = "IASF - Paratrooper - Major" // Not used in inserts. + skills = list( + SKILL_CQC = SKILL_CQC_EXPERT, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_MASTER, + SKILL_LEADERSHIP = SKILL_LEAD_MASTER, + SKILL_INTEL = SKILL_INTEL_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, + SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, + SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, + SKILL_PILOT = SKILL_PILOT_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, + SKILL_EXECUTION = SKILL_EXECUTION_TRAINED, + SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, + ) + +/datum/skills/iasf/commander + name = "IASF - Paratrooper - Commanding Officer" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_LEADERSHIP = SKILL_LEAD_MASTER, + SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_JTAC = SKILL_JTAC_MASTER, + SKILL_EXECUTION = SKILL_EXECUTION_TRAINED, //can BE people + SKILL_INTEL = SKILL_INTEL_EXPERT, + SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, //can change ship alt + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, + ) diff --git a/code/datums/skills/rmc.dm b/code/datums/skills/rmc.dm index 88b5d57c614c..4a7f96857fcb 100644 --- a/code/datums/skills/rmc.dm +++ b/code/datums/skills/rmc.dm @@ -40,6 +40,24 @@ Royal Marines Commando SKILL_VEHICLE = SKILL_VEHICLE_SMALL, ) +/datum/skills/rmc/pilot + name = "Royal Marines Commando Pilot" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_SURGERY = SKILL_SURGERY_DEFAULT, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_PILOT = SKILL_PILOT_EXPERT, + ) + /datum/skills/rmc/breacher name = "Royal Marines Commando Breacher" skills = list( diff --git a/code/datums/supply_packs/ammo.dm b/code/datums/supply_packs/ammo.dm index 38878a3e9947..b0d92cfb5782 100644 --- a/code/datums/supply_packs/ammo.dm +++ b/code/datums/supply_packs/ammo.dm @@ -522,3 +522,35 @@ containertype = /obj/structure/closet/crate/ammo containername = "\improper surplus ammo crate" group = "Ammo" + +//------------------------For L54---------------- + +/datum/supply_packs/ammo_l54_mag_box + name = "Magazine box (L54, 16x regular mags)" + contains = list( + /obj/item/ammo_box/magazine/l54, + ) + cost = 20 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper L54 magazines crate" + group = "Ammo" + +/datum/supply_packs/ammo_l54_mag_box_ap + name = "Magazine box (L54, 16x AP mags)" + contains = list( + /obj/item/ammo_box/magazine/l54/ap, + ) + cost = 30 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper L54 AP magazines crate" + group = "Ammo" + +/datum/supply_packs/ammo_l54_mag_box_hp + name = "Magazine box (L54, 16x HP mags)" + contains = list( + /obj/item/ammo_box/magazine/l54/hp, + ) + cost = 30 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper L54 HP magazines crate" + group = "Ammo" diff --git a/code/datums/xeno_shields/xeno_shield.dm b/code/datums/xeno_shields/xeno_shield.dm index 83efa578b2d0..1453f6aa3e48 100644 --- a/code/datums/xeno_shields/xeno_shield.dm +++ b/code/datums/xeno_shields/xeno_shield.dm @@ -44,9 +44,15 @@ // Anything special to do on removal /datum/xeno_shield/proc/on_removal() + if(linked_xeno && istype(linked_xeno, /mob/living/carbon/xenomorph) && shield_source == XENO_SHIELD_SOURCE_GARDENER) + linked_xeno.balloon_alert(linked_xeno, "our carapace shell crumbles!", text_color = "#17997280") + playsound(linked_xeno, "shield_shatter", 25, 1) return /datum/xeno_shield/proc/begin_decay() + if(linked_xeno && istype(linked_xeno, /mob/living/carbon/xenomorph) && shield_source == XENO_SHIELD_SOURCE_GARDENER) + linked_xeno.balloon_alert(linked_xeno, "our carapace shell begins to decay!", text_color = "#17997280") + playsound(linked_xeno, 'sound/effects/squish_and_exhaust.ogg', 25, 1) START_PROCESSING(SSobj, src) processing = TRUE diff --git a/code/defines/procs/records.dm b/code/defines/procs/records.dm index aed123d81e3a..75fdaa8740b1 100644 --- a/code/defines/procs/records.dm +++ b/code/defines/procs/records.dm @@ -33,15 +33,15 @@ medical_record.fields["id"] = null medical_record.fields["name"] = person.real_name medical_record.name = person.real_name - medical_record.fields["b_type"] = person.b_type - medical_record.fields["mi_dis"] = "None" - medical_record.fields["mi_dis_d"] = "No minor disabilities have been declared." - medical_record.fields["ma_dis"] = "None" - medical_record.fields["ma_dis_d"] = "No major disabilities have been diagnosed." - medical_record.fields["alg"] = "None" - medical_record.fields["alg_d"] = "No allergies have been detected in this patient." - medical_record.fields["cdi"] = "None" - medical_record.fields["cdi_d"] = "No diseases have been diagnosed at the moment." + medical_record.fields["blood_type"] = person.blood_type + medical_record.fields["minor_disability"] = "None" + medical_record.fields["minor_disability_details"] = "No minor disabilities have been declared." + medical_record.fields["major_disability"] = "None" + medical_record.fields["major_disability_details"] = "No major disabilities have been diagnosed." + medical_record.fields["allergies"] = "None" + medical_record.fields["allergies_details"] = "No allergies have been detected in this patient." + medical_record.fields["diseases"] = "None" + medical_record.fields["diseases_details"] = "No diseases have been diagnosed at the moment." medical_record.fields["last_scan_time"] = null medical_record.fields["last_scan_result"] = "No scan data on record" medical_record.fields["autodoc_data"] = list() diff --git a/code/game/area/LV759_Hybrisa_Prospera.dm b/code/game/area/LV759_Hybrisa_Prospera.dm index 6bf124d9047a..1de7eca0b4d9 100644 --- a/code/game/area/LV759_Hybrisa_Prospera.dm +++ b/code/game/area/LV759_Hybrisa_Prospera.dm @@ -219,7 +219,7 @@ soundscape_playlist = SCAPE_PL_LV759_CAVES ceiling_muffle = FALSE minimap_color = MINIMAP_AREA_HYBRISACAVES - unoviable_timer = FALSE + unoviable_timer = 25 MINUTES always_unpowered = TRUE /area/lv759/indoors/caves/electric_fence1 @@ -323,7 +323,7 @@ soundscape_playlist = SCAPE_PL_LV759_DEEPCAVES ceiling_muffle = FALSE minimap_color = MINIMAP_AREA_HYBRISACAVES - unoviable_timer = FALSE + unoviable_timer = 25 MINUTES /area/lv759/outdoors/caves/north_west_caves_outdoors name = "Caverns - Northwest" @@ -333,7 +333,7 @@ soundscape_playlist = SCAPE_PL_LV759_CAVES ceiling_muffle = FALSE minimap_color = MINIMAP_AREA_HYBRISACAVES - unoviable_timer = FALSE + unoviable_timer = 25 MINUTES /area/lv759/indoors/caves/north_east_caves name = "Caverns - Northeast" @@ -568,6 +568,12 @@ requires_power = FALSE minimap_color = MINIMAP_AREA_COLONY +/area/lv759/indoors/spaceport/clf_dropship + name = "UD-9M 'Dogbite'" + icon_state = "wydropship" + requires_power = FALSE + minimap_color = MINIMAP_AREA_COLONY + // Garage /area/lv759/indoors/garage_reception diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm index f8f24e5c4bdc..9395db4bef69 100644 --- a/code/game/jobs/access.dm +++ b/code/game/jobs/access.dm @@ -110,7 +110,7 @@ if(ACCESS_LIST_MARINE_MAIN) return list( ACCESS_MARINE_SENIOR, - ACCESS_MARINE_DATABASE, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_COMMAND, ACCESS_MARINE_CMP, ACCESS_MARINE_BRIG, @@ -146,11 +146,13 @@ ACCESS_MARINE_CHAPLAIN, ACCESS_MARINE_FIELD_DOC, ACCESS_PRESS, + ACCESS_MARINE_DATABASE, ) if(ACCESS_LIST_MARINE_ALL) return list( ACCESS_MARINE_CO, + ACCESS_MARINE_DATABASE_ADMIN, ACCESS_MARINE_AI, ACCESS_MARINE_AI_TEMP, ) + get_access(ACCESS_LIST_MARINE_MAIN) @@ -313,8 +315,9 @@ if(5)//Command return list( ACCESS_MARINE_SENIOR, - ACCESS_MARINE_DATABASE, ACCESS_MARINE_COMMAND, + ACCESS_MARINE_GENERAL, + ACCESS_MARINE_DATABASE, ACCESS_MARINE_RO, ACCESS_MARINE_CARGO, ACCESS_MARINE_SEA, @@ -393,6 +396,10 @@ return "[MAIN_SHIP_NAME] Engineering" if(ACCESS_MARINE_OT) return "[MAIN_SHIP_NAME] Ordnance Workshop" + if(ACCESS_MARINE_GENERAL) + return "[MAIN_SHIP_NAME] General Access" + if(ACCESS_MARINE_DATABASE) + return "[MAIN_SHIP_NAME] Database Access" if(ACCESS_MARINE_SENIOR) return "[MAIN_SHIP_NAME] Senior Command" if(ACCESS_MARINE_CO) diff --git a/code/game/jobs/job/civilians/other/survivors.dm b/code/game/jobs/job/civilians/other/survivors.dm index c7eae6ddcded..889d730d359f 100644 --- a/code/game/jobs/job/civilians/other/survivors.dm +++ b/code/game/jobs/job/civilians/other/survivors.dm @@ -211,16 +211,29 @@ AddTimelock(/datum/job/civilian/survivor, list( /datum/job/civilian/survivor/commanding_officer/set_spawn_positions() var/list/CO_survivor_types = SSmapping.configs[GROUND_MAP].CO_survivor_types - if(length(CO_survivor_types)) + var/list/CO_insert_survivor_types = SSmapping.configs[GROUND_MAP].CO_insert_survivor_types + if(length(CO_survivor_types) || length(CO_insert_survivor_types)) total_positions = 1 spawn_positions = 1 return spawn_positions /datum/job/civilian/survivor/commanding_officer/handle_equip_gear(mob/living/carbon/human/equipping_human, obj/effect/landmark/survivor_spawner/picked_spawner) - if(picked_spawner.CO_equipment) + var/list/CO_survivor_types = SSmapping.configs[GROUND_MAP].CO_survivor_types + if(picked_spawner.CO_equipment) //insert with CO arm_equipment(equipping_human, picked_spawner.CO_equipment, FALSE, TRUE) return - else - var/list/CO_survivor_types = SSmapping.configs[GROUND_MAP].CO_survivor_types + else if(length(CO_survivor_types)) //map with guarenteed CO slot arm_equipment(equipping_human, pick(CO_survivor_types), FALSE, TRUE) return + else //map that has an insert that enabled rolling for CO but the insert didn't fire and there is no default CO equipment, thus equip as a normal survivor + var/preferred_variant = ANY_SURVIVOR + if(equipping_human.client?.prefs?.pref_special_job_options[JOB_SURVIVOR] != ANY_SURVIVOR) + preferred_variant = equipping_human.client?.prefs?.pref_special_job_options[JOB_SURVIVOR] + if(MAX_SURVIVOR_PER_TYPE[preferred_variant] != -1 && SSticker.mode.survivors_by_type_amounts[preferred_variant] && SSticker.mode.survivors_by_type_amounts[preferred_variant] >= MAX_SURVIVOR_PER_TYPE[preferred_variant]) + preferred_variant = ANY_SURVIVOR + + var/list/survivor_types = preferred_variant != ANY_SURVIVOR && length(SSmapping.configs[GROUND_MAP].survivor_types_by_variant[preferred_variant]) ? SSmapping.configs[GROUND_MAP].survivor_types_by_variant[preferred_variant] : SSmapping.configs[GROUND_MAP].survivor_types + arm_equipment(equipping_human, pick(survivor_types), FALSE, TRUE) + + SSticker.mode.survivors_by_type_amounts[preferred_variant] += 1 + return diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm index b913849eaa25..d036aac0ff9d 100644 --- a/code/game/machinery/computer/Operating.dm +++ b/code/game/machinery/computer/Operating.dm @@ -49,7 +49,7 @@
Name: [src.victim.real_name]
Age: [src.victim.age]
-Blood Type: [src.victim.b_type]
+Blood Type: [src.victim.blood_type]

Health: [src.victim.health]
Brute Damage: [src.victim.getBruteLoss()]
diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index 4348ec6b99c6..22772cfb2b7a 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -1,536 +1,634 @@ //This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:31 +/// view-only medical record access, for unclassified files. lowest access level. +#define MEDICAL_RECORD_ACCESS_LEVEL_0 0 // assigned to HMs and Nurses. +/// edit access for all unclassified files. view-only for classified files. +#define MEDICAL_RECORD_ACCESS_LEVEL_1 1 // access level given to Doctors, and any Officers at or above 1stLT. +/// full record database edit and viewing access. +#define MEDICAL_RECORD_ACCESS_LEVEL_2 2 // given to the CMO, Synths, and the CO/XO. + /obj/structure/machinery/computer/med_data//TODO:SANITY - name = "Medical Records" + name = "Medical Records Console" desc = "This can be used to check medical records." icon_state = "medcomp" density = TRUE req_one_access = list(ACCESS_MARINE_MEDBAY, ACCESS_WY_MEDICAL) circuit = /obj/item/circuitboard/computer/med_data var/obj/item/card/id/scan = null - var/last_user_name = "" - var/last_user_rank = "" - var/authenticated = null - var/rank = null - var/screen = null - var/datum/data/record/active1 = null - var/datum/data/record/active2 = null - var/a_id = null - var/temp = null - var/printing = null - -/obj/structure/machinery/computer/med_data/verb/eject_id() - set category = "Object" - set name = "Eject ID Card" - set src in oview(1) - - if(!usr || usr.is_mob_incapacitated()) + /// the target id of a record intended to link with a biometric scan + var/bio_link_target_record_id + /// time left for someone to authenticate a biometric scan, before it aborts + var/biometric_scan_timer + /// the current users access level for the medical record database. see define definitions for access permissions + var/access_level = MEDICAL_RECORD_ACCESS_LEVEL_0 + /// the id number of the lastest viewed record. used to manage ui data + var/currently_selected_record_id + + COOLDOWN_DECLARE(record_printing_cooldown) + +/obj/structure/machinery/computer/med_data/attack_remote(mob/user) + return attack_hand(user) + +/obj/structure/machinery/computer/med_data/attack_hand(mob/user) + if(..() || inoperable()) + to_chat(user, SPAN_INFO("It does not appear to be working.")) return - if(scan) - to_chat(usr, "You remove \the [scan] from \the [src].") - scan.forceMove(get_turf(src)) - if(!usr.get_active_hand() && istype(usr,/mob/living/carbon/human)) - usr.put_in_hands(scan) - scan = null - else - to_chat(usr, "There is nothing to remove from the console.") - return + if(bio_link_target_record_id && ishumansynth_strict(user)) + user.visible_message(SPAN_NOTICE("You hear a beep as [user]'s hand is scanned to \the [name].")) + visible_message("[SPAN_BOLD("[src]")] states, \"SCAN ENTRY: ["Scanned, please stay close until operation's end."]\"") + playsound(user.loc, 'sound/machines/screen_output1.ogg', 25, TRUE) + link_medical_data(user, bio_link_target_record_id) + bio_link_target_record_id = FALSE + return -/obj/structure/machinery/computer/med_data/attackby(obj/item/O as obj, user as mob) - if(istype(O, /obj/item/card/id) && !scan) - if(usr.drop_held_item()) - O.forceMove(src) - scan = O - last_user_name = scan.registered_name - last_user_rank = scan.rank - to_chat(user, "You insert [O].") - . = ..() + if(!allowed(user)) + to_chat(user, SPAN_WARNING("Access denied.")) + return + + if(!is_mainship_level(z)) + to_chat(user, SPAN_DANGER("Unable to establish a connection: \black You're too far away from the station!")) + return + + tgui_interact(user) + +/obj/structure/machinery/computer/med_data/proc/get_database_access_level(obj/item/card/id/id) + if(!id) + return MEDICAL_RECORD_ACCESS_LEVEL_0 + if(ACCESS_MARINE_DATABASE_ADMIN in id.access) + return MEDICAL_RECORD_ACCESS_LEVEL_2 + if(ACCESS_MARINE_DATABASE in id.access) + return MEDICAL_RECORD_ACCESS_LEVEL_1 + return MEDICAL_RECORD_ACCESS_LEVEL_0 + +/obj/structure/machinery/computer/med_data/proc/link_medical_data(mob/living/carbon/human/target, general_record_id) -/obj/structure/machinery/computer/med_data/attack_remote(user as mob) - return src.attack_hand(user) + if(biometric_scan_timer) + deltimer(biometric_scan_timer) + biometric_scan_timer = null -/obj/structure/machinery/computer/med_data/attack_hand(mob/user as mob) - if(..()) + var/assignment = "Unassigned" // whichever job is listed on the id of the current user + if(target.job) + assignment = target.job + + for (var/datum/data/record/general_record in GLOB.data_core.general) + if(general_record.fields["id"] != general_record_id) + continue + if((general_record.fields["name"] != target.real_name) && (general_record.fields["name"] != "New Record")) + balloon_alert_to_viewers("ERROR! Medical record bioscan does not match general record ID.") + playsound(src, 'sound/machines/terminal_error.ogg', 15, FALSE) + return + general_record.fields["name"] = target.real_name + general_record.name = target.real_name + general_record.fields["real_rank"] = target.job + general_record.fields["rank"] = assignment + general_record.fields["age"] = target.age + general_record.fields["p_stat"] = "Active" + general_record.fields["m_stat"] = "Stable" + general_record.fields["sex"] = capitalize(target.gender) + general_record.fields["ref"] = WEAKREF(target) + + var/datum/data/record/medical_record = new /datum/data/record() + medical_record.fields["id"] = general_record_id + medical_record.fields["name"] = target.real_name + medical_record.name = target.real_name + medical_record.fields["blood_type"] = target.blood_type + medical_record.fields["minor_disability"] = "None" + medical_record.fields["minor_disability_details"] = "No minor disabilities have been declared." + medical_record.fields["major_disability"] = "None" + medical_record.fields["major_disability_details"] = "No major disabilities have been diagnosed." + medical_record.fields["allergies"] = "None" + medical_record.fields["allergies_details"] = "No allergies have been detected in this patient." + medical_record.fields["diseases"] = "None" + medical_record.fields["diseases_details"] = "No diseases have been diagnosed at the moment." + medical_record.fields["last_scan_time"] = null + medical_record.fields["last_scan_result"] = "No scan data on record" + medical_record.fields["autodoc_data"] = list() + medical_record.fields["ref"] = WEAKREF(target) + GLOB.data_core.medical += medical_record + + currently_selected_record_id = general_record_id + update_static_data_for_all_viewers() + + +/obj/structure/machinery/computer/med_data/proc/print_medical_record(record_id, mob/living/carbon/human/user) + + if(!record_id) + // for whatever reason, the computer is asking for a record with a null ID + balloon_alert_to_viewers("Critical systems fault! Unable to process request.") + to_chat(user, SPAN_NOTICE("Critical systems fault! Unable to process request.")) + playsound(loc, 'sound/machines/terminal_shutdown.ogg', 15, FALSE) return - var/dat - if (src.temp) - dat = text("[src.temp]

Clear Screen") - else - dat = text("Confirm Identity: []
", src, (src.scan ? text("[]", src.scan.name) : "----------")) - if (src.authenticated) - switch(src.screen) - if(1.0) - dat += {" -Search Records -
List Records -
-
Medbot Tracking -
-
Record Maintenance -
{Log Out}
-"} - if(2.0) - dat += "Record List:
" - if(!isnull(GLOB.data_core.general)) - for(var/datum/data/record/R in sortRecord(GLOB.data_core.general)) - dat += text("[]: []
", src, R, R.fields["id"], R.fields["name"]) - //Foreach goto(132) - dat += text("
Back", src) - if(3.0) - dat += text("Records Maintenance
\nBackup To Disk
\nUpload From disk
\nDelete All Records
\n
\nBack", src, src, src, src) - if(4.0) - if ((istype(active1, /datum/data/record) && GLOB.data_core.general.Find(active1))) - dat += "
Medical Record

" - dat += "
Name: [active1.fields["name"]] \ - ID: [active1.fields["id"]]
\n \ - Sex: [active1.fields["sex"]]
\n \ - Age: [active1.fields["age"]]
\n \ - Physical Status: [active1.fields["p_stat"]]
\n \ - Mental Status: [active1.fields["m_stat"]]
\ - Photo:
" - else - dat += "General Record Lost!
" - if ((istype(src.active2, /datum/data/record) && GLOB.data_core.medical.Find(src.active2))) - dat += "
\n
Medical Data

\nBlood Type: [active2.fields["b_type"]]
\n
\nMinor Disabilities: [active2.fields["mi_dis"]]
\nDetails: [active2.fields["mi_dis_d"]]
\n
\nMajor Disabilities: [active2.fields["ma_dis"]]
\nDetails: [active2.fields["ma_dis_d"]]
\n
\nAllergies: [active2.fields["alg"]]
\nDetails: [active2.fields["alg_d"]]
\n
\nCurrent Diseases: [active2.fields["cdi"]] (per disease info placed in log/comment section)
\nDetails: [active2.fields["cdi_d"]]
\n
\nImportant Notes:
\n\t[decode(src.active2.fields["notes"])]
\n
\n
Comments/Log

" - var/counter = 1 - while(active2.fields[text("com_[]", counter)]) - var/current_index = text("com_[]", counter) - if(findtext(active2.fields[current_index], "
")) - dat += text("[]
Delete Entry

", active2.fields[current_index], src, counter) - else - dat += text("[]

", active2.fields[current_index]) - counter++ - dat += text("Add Entry

", src) - dat += text("Delete Record (Medical Only)

", src) - else - dat += "Medical Record Lost!
" - dat += text("New Record

") - dat += text("\nPrint Record
\n", src) - dat += text("\nPrint Latest Bodyscan

\nBack
", src, src) - if(5) - dat += "
Medical Robot Monitor
" - dat += "Back" - dat += "
Medical Robots:" - var/bdat = null - for(var/obj/structure/machinery/bot/medbot/M in GLOB.machines) - - if(M.z != src.z) - continue //only find medibots on the same z-level as the computer - var/turf/bl = get_turf(M) - if(bl) //if it can't find a turf for the medibot, then it probably shouldn't be showing up - bdat += "[M.name] - \[[bl.x],[bl.y]\] - [M.on ? "Online" : "Offline"]
" - if((!isnull(M.reagent_glass)) && M.use_beaker) - bdat += "Reservoir: \[[M.reagent_glass.reagents.total_volume]/[M.reagent_glass.reagents.maximum_volume]\]
" - else - bdat += "Using Internal Synthesizer.
" - if(!bdat) - dat += "
None detected
" - else - dat += "
[bdat]" + // Locate the general record + var/datum/data/record/general_record = find_record("general", record_id) + + // Locate the medical record + var/datum/data/record/medical_record = find_record("medical", record_id) + + if (!general_record) + balloon_alert_to_viewers("Unable to process request. Record not found!") + to_chat(user, SPAN_NOTICE("Unable to process request. Record not found!")) + playsound(loc, 'sound/machines/terminal_shutdown.ogg', 15, FALSE) + return + + var/obj/item/paper/medical_record/report = new /obj/item/paper/medical_record(loc, general_record, medical_record) + report.name = text("Medical Record ([])", general_record.fields["name"]) + +/obj/structure/machinery/computer/med_data/proc/handle_biometric_scan_timeout(mob/living/carbon/human/user) + + if(biometric_scan_timer) + deltimer(biometric_scan_timer) + biometric_scan_timer = null + + bio_link_target_record_id = null + balloon_alert_to_viewers("Aborting biometric scan! No user detected in time.") + to_chat(user, SPAN_NOTICE("Aborting biometric scan! No user detected in time.")) + playsound(loc, 'sound/machines/terminal_shutdown.ogg', 15, FALSE) + +/obj/structure/machinery/computer/med_data/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if (!ui) + ui = new(user, src, "MedicalRecords", "Medical Records") + ui.autoupdate = FALSE + ui.open() + +/obj/structure/machinery/computer/med_data/proc/gather_record_data(mob/user, datum/data/record/general) + + if(!general) + return + + var/id_number = general.fields["id"] + var/datum/data/record/medical = find_record("medical", id_number) + + var/datum/weakref/target_ref = general.fields["ref"] + var/mob/living/carbon/human/target + var/obj/item/card/id/id + var/record_classified = FALSE + + if(target_ref) + target = target_ref.resolve() + if(!target) // if the target has been gibbed, or no longer physically exists + return + id = target.get_idcard() + // checks if record target is in the chain of command, and needs their record protected + if(target.job in CHAIN_OF_COMMAND_ROLES) + record_classified = TRUE + + var/paygrade = id ? id.paygrade : "None" + + var/list/record = list( + "id" = id_number, + "general_name" = general.fields["name"], + "general_job" = general.fields["rank"], + "general_rank" = paygrade, + "general_age" = general.fields["age"], + "general_sex" = general.fields["sex"], + "general_m_stat" = medical ? general.fields["m_stat"] : null, + "general_p_stat" = medical ? general.fields["p_stat"] : null, + "medical_blood_type" = medical ? medical.fields["blood_type"] : null, + "medical_major_disability" = medical ? medical.fields["major_disability"] : null, + "medical_major_disability_details" = medical ? medical.fields["major_disability_details"] : null, + "medical_minor_disability" = medical ? medical.fields["minor_disability"] : null, + "medical_minor_disability_details" = medical ? medical.fields["minor_disability_details"] : null, + "medical_allergies" = medical ? medical.fields["allergies"] : null, + "medical_allergies_details" = medical ? medical.fields["allergies_details"] : null, + "medical_diseases" = medical ? medical.fields["diseases"] : null, + "medical_diseases_details" = medical ? medical.fields["diseases_details"] : null, + "medical_comments" = medical ? medical.fields["comments"] : null, + "record_classified" = record_classified + ) + + return record + +/obj/structure/machinery/computer/med_data/ui_status(mob/user) + if(inoperable()) + return UI_CLOSE + + if(!ishumansynth_strict(user) || (user.stat == DEAD)) + return UI_CLOSE + + if((user.stat == UNCONSCIOUS) || !allowed(user)) + return UI_DISABLED + + if(get_dist(src, user) <= 2) + return UI_INTERACTIVE + + // if none of the above were true, something is very wrong + return UI_CLOSE + +/obj/structure/machinery/computer/med_data/ui_data(mob/user) + . = ..() + + // Map medical records via id + var/list/records = list() + var/list/medical_record = list() + for (var/datum/data/record/medical in GLOB.data_core.medical) + medical_record[medical.fields["id"]] = medical + + for (var/datum/data/record/general in GLOB.data_core.general) + var/id_number = general.fields["id"] + var/datum/data/record/medical = medical_record[id_number] + + // checks if the record is being viewed, and requires more data + if((id_number == currently_selected_record_id) && currently_selected_record_id) + records |= list(gather_record_data(user, general)) + // sends photo data seperately from the records system, for ease of use + var/icon/photo_icon = new /icon('icons/misc/buildmode.dmi', "buildhelp") + var/photo_data = icon2html(photo_icon, user.client, sourceonly = TRUE) + + var/photo_front = general.fields["photo_front"] ? icon2html(general.fields["photo_front"], user.client, sourceonly = TRUE) : photo_data + var/photo_side = general.fields["photo_side"] ? icon2html(general.fields["photo_side"], user.client, sourceonly = TRUE) : photo_data + + .["photo_front"] = photo_front + .["photo_side"] = photo_side else - dat += text("{Log In}", src) - show_browser(user, dat, "Medical Records", "med_rec") - onclose(user, "med_rec") - return + var/list/record = list( + "id" = id_number, + "general_name" = general.fields["name"], + "general_job" = general.fields["rank"], + "general_p_stat" = medical ? general.fields["p_stat"] : null + ) + records |= list(record) + + .["records"] = records + +/obj/structure/machinery/computer/med_data/ui_static_data(mob/user) + . = ..() + + .["operator"] = operator + .["database_access_level"] = access_level + + var/icon/photo_icon = new /icon('icons/misc/buildmode.dmi', "buildhelp") + var/photo_data = icon2html(photo_icon, user.client, sourceonly = TRUE) -/obj/structure/machinery/computer/med_data/Topic(href, href_list) - if(..()) + // Attach to the UI data + .["fallback_image"] = photo_data + +/obj/structure/machinery/computer/med_data/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + var/mob/living/carbon/human/user = ui.user + if(!allowed(user)) + to_chat(user, SPAN_WARNING("Access denied.")) return - if (!( GLOB.data_core.general.Find(src.active1) )) - src.active1 = null + playsound(src, get_sfx("terminal_button"), 25, FALSE) + + switch(action) + if("log_in") + operator = user + var/obj/item/card/id/id = user.get_idcard() + access_level = get_database_access_level(id) + update_static_data(user, ui) + return + if("log_out") + operator = null + access_level = MEDICAL_RECORD_ACCESS_LEVEL_0 + update_static_data(user, ui) + return + //* Actions for managing records + if("select_record") + var/id = params["id"] + + if(!id) + tgui_alert(user, "Invalid record ID.") + return + + // Find the corresponding general record + var/datum/data/record/general_record = find_record("general", id) + + if(!general_record) + tgui_alert(user,"Record not found.") + return + + currently_selected_record_id = id + + return TRUE + + if("update_field") + var/id = params["id"] + var/field = params["field"] + var/value = params["value"] - if (!( GLOB.data_core.medical.Find(src.active2) )) - src.active2 = null + var/validation_error = validate_field(field, value, user, FALSE) + if (validation_error) + to_chat(user, SPAN_WARNING("Console returns error with buzzing sound: [validation_error]")) + playsound(loc, 'sound/machines/buzz-two.ogg', 15, TRUE) + return - if ((usr.contents.Find(src) || (in_range(src, usr) && istype(src.loc, /turf))) || (isRemoteControlling(usr))) - usr.set_interaction(src) + if(!id || !field) + tgui_alert(user, "Invalid record ID or field.") + return - if (href_list["temp"]) - src.temp = null + var/is_general_field = copytext(field, 1, 9) == "general_" + var/is_medical_field = copytext(field, 1, 9) == "medical_" - if (href_list["scan"]) - if (src.scan) + if(!is_general_field && !is_medical_field) + tgui_alert(user, "Invalid field prefix.") + return - if(ishuman(usr)) - scan.forceMove(usr.loc) + // Remove the prefix to map to the original field name + var/original_field = copytext(field, 9) - if(!usr.get_active_hand()) - usr.put_in_hands(scan) + // Locate the general record + var/datum/data/record/general_record = find_record("general", id) - scan = null + // Locate the medical record (if applicable) + var/datum/data/record/medical_record = find_record("medical", id) - else - src.scan.forceMove(src.loc) - src.scan = null + // Update the appropriate record + if(is_general_field && general_record && (original_field in general_record.fields)) + general_record.fields[original_field] = value + + else if(is_medical_field && medical_record && (original_field in medical_record.fields)) + medical_record.fields[original_field] = value else - var/obj/item/I = usr.get_active_hand() - if (istype(I, /obj/item/card/id)) - if(usr.drop_held_item()) - I.forceMove(src) - src.scan = I - - else if (href_list["logout"]) - src.authenticated = null - src.screen = null - src.active1 = null - src.active2 = null - - else if (href_list["login"]) - - if (isRemoteControlling(usr)) - src.active1 = null - src.active2 = null - src.authenticated = usr.name - src.rank = "AI" - src.screen = 1 - - else if (istype(src.scan, /obj/item/card/id)) - src.active1 = null - src.active2 = null - - if (src.check_access(src.scan)) - src.authenticated = src.scan.registered_name - src.rank = src.scan.assignment - src.screen = 1 - - if (src.authenticated) - - if(href_list["screen"]) - src.screen = text2num(href_list["screen"]) - if(src.screen < 1) - src.screen = 1 - - src.active1 = null - src.active2 = null - - if (href_list["del_all"]) - src.temp = text("Are you sure you wish to delete all records?
\n\tYes
\n\tNo
", src, src) - - if (href_list["del_all2"]) - for(var/datum/data/record/R as anything in GLOB.data_core.medical) - GLOB.data_core.medical -= R - qdel(R) - //Foreach goto(494) - temp = "All records deleted." - msg_admin_niche("[key_name_admin(usr)] deleted all medical records.") - - if (href_list["field"]) - var/a1 = active1 - var/a2 = active2 - switch(href_list["field"]) - if("sex") - if (istype(active1, /datum/data/record)) - var/new_value = "Male" - if (active1.fields["sex"] == "Male") - new_value = "Female" - active1.fields["sex"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record sex for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("age") - if (istype(active1, /datum/data/record)) - var/new_value = input("Please input age:", "Med. records", active1.fields["age"], null) as num - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) - return - active1.fields["age"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record age for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("mi_dis") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please input minor disabilities list:", "Med. records", active2.fields["mi_dis"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["mi_dis"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record minor disabilities list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("mi_dis_d") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please summarize minor dis.:", "Med. records", active2.fields["mi_dis_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["mi_dis_d"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record minor disabilities desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("ma_dis") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please input major diabilities list:", "Med. records", active2.fields["ma_dis"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["ma_dis"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record major disabilities list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("ma_dis_d") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please summarize major dis.:", "Med. records", active2.fields["ma_dis_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["ma_dis_d"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record major disabilities desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("alg") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please state allergies:", "Med. records", active2.fields["alg"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["alg"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record allergies list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("alg_d") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please summarize allergies:", "Med. records", active2.fields["alg_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["alg_d"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record allergies desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("cdi") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please state diseases:", "Med. records", active2.fields["cdi"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["cdi"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record disabilities list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("cdi_d") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(trim(strip_html(input("Please summarize diseases:", "Med. records", active2.fields["cdi_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["cdi_d"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record disabilities desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("notes") - if (istype(active2, /datum/data/record)) - var/new_value = copytext(html_encode(trim(input("Please summarize notes:", "Med. records", html_decode(active2.fields["notes"]), null) as message)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - active2.fields["notes"] = new_value - msg_admin_niche("[key_name_admin(usr)] set the medical record notes for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") - if("p_stat") - if (istype(active1, /datum/data/record)) - temp = text("Physical Condition:
\n\t*Deceased*
\n\t*SSD*
\n\tActive
\n\tPhysically Unfit
\n\tDisabled
", src, src, src, src, src) - if("m_stat") - if (istype(active1, /datum/data/record)) - temp = text("Mental Condition:
\n\t*Insane*
\n\t*Unstable*
\n\t*Watch*
\n\tStable
", src, src, src, src) - if("b_type") - if (istype(active2, /datum/data/record)) - temp = text("Blood Type:
\n\tA- A+
\n\tB- B+
\n\tAB- AB+
\n\tO- O+
", src, src, src, src, src, src, src, src) - - - if (href_list["p_stat"]) - if(istype(active1, /datum/data/record)) - switch(href_list["p_stat"]) - if("deceased") - active1.fields["p_stat"] = "*Deceased*" - if("ssd") - active1.fields["p_stat"] = "*SSD*" - if("active") - active1.fields["p_stat"] = "Active" - if("unfit") - active1.fields["p_stat"] = "Physically Unfit" - if("disabled") - active1.fields["p_stat"] = "Disabled" - msg_admin_niche("[key_name_admin(usr)] set the medical record physical state for [active1.fields["name"]] ([active1.fields["id"]]) to [href_list["p_stat"]].") - - if (href_list["m_stat"]) - if(istype(active1, /datum/data/record)) - switch(href_list["m_stat"]) - if("insane") - active1.fields["m_stat"] = "*Insane*" - if("unstable") - active1.fields["m_stat"] = "*Unstable*" - if("watch") - active1.fields["m_stat"] = "*Watch*" - if("stable") - active1.fields["m_stat"] = "Stable" - msg_admin_niche("[key_name_admin(usr)] set the medical record mental state for [active1.fields["name"]] ([active1.fields["id"]]) to [href_list["m_stat"]].") - - if (href_list["b_type"]) - if(istype(active2, /datum/data/record)) - switch(href_list["b_type"]) - if("an") - active2.fields["b_type"] = "A-" - if("bn") - active2.fields["b_type"] = "B-" - if("abn") - active2.fields["b_type"] = "AB-" - if("on") - active2.fields["b_type"] = "O-" - if("ap") - active2.fields["b_type"] = "A+" - if("bp") - active2.fields["b_type"] = "B+" - if("abp") - active2.fields["b_type"] = "AB+" - if("op") - active2.fields["b_type"] = "O+" - msg_admin_niche("[key_name_admin(usr)] set the medical record blood type for [active1.fields["name"]] ([active1.fields["id"]]) to [active2.fields["b_type"]].") - - if (href_list["del_r"]) - if(istype(active2, /datum/data/record)) - temp = text("Are you sure you wish to delete the record (Medical Portion Only)?
\n\tYes
\n\tNo
", src, src) - - if (href_list["del_r2"]) - msg_admin_niche("[key_name_admin(usr)] deleted the medical record for [active1.fields["name"]] ([active1.fields["id"]]).") - QDEL_NULL(active2) - - if (href_list["d_rec"]) - var/datum/data/record/R = locate(href_list["d_rec"]) - var/datum/data/record/M = locate(href_list["d_rec"]) - if (!( GLOB.data_core.general.Find(R) )) - src.temp = "Record Not Found!" - return - for(var/datum/data/record/E in GLOB.data_core.medical) - if ((E.fields["ref"] == R.fields["ref"] || E.fields["id"] == R.fields["id"])) - M = E - src.active1 = R - src.active2 = M - src.screen = 4 - - if (href_list["new"]) - if ((istype(src.active1, /datum/data/record) && !( istype(src.active2, /datum/data/record) ))) - var/datum/data/record/R = new /datum/data/record( ) - R.fields["name"] = src.active1.fields["name"] - R.fields["id"] = src.active1.fields["id"] - R.name = text("Medical Record #[]", R.fields["id"]) - R.fields["b_type"] = "Unknown" - R.fields["mi_dis"] = "None" - R.fields["mi_dis_d"] = "No minor disabilities have been declared." - R.fields["ma_dis"] = "None" - R.fields["ma_dis_d"] = "No major disabilities have been diagnosed." - R.fields["alg"] = "None" - R.fields["alg_d"] = "No allergies have been detected in this patient." - R.fields["cdi"] = "None" - R.fields["cdi_d"] = "No diseases have been diagnosed at the moment." - R.fields["notes"] = "No notes." - GLOB.data_core.medical += R - src.active2 = R - src.screen = 4 - - if (href_list["add_c"]) - if (!( istype(active2, /datum/data/record) )) - return - var/a2 = active2 - var/new_value = copytext(trim(strip_html(input("Add Comment:", "Med. records", null, null) as message)),1,MAX_MESSAGE_LEN) - if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) - return - var/counter = 1 - while(active2.fields[text("com_[]", counter)]) - counter++ - active2.fields[text("com_[counter]")] = text("Made by [authenticated] ([rank]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [GLOB.game_year]
[new_value]") - msg_admin_niche("[key_name_admin(usr)] added a medical comment for [active1.fields["name"]] ([active1.fields["id"]]): [new_value].") - - if (href_list["del_c"]) - if ((istype(active2, /datum/data/record) && active2.fields[text("com_[]", href_list["del_c"])])) - msg_admin_niche("[key_name_admin(usr)] deleted a medical comment for [active1.fields["name"]] ([active1.fields["id"]]): [active2.fields[text("com_[]", href_list["del_c"])]].") - active2.fields[text("com_[]", href_list["del_c"])] = text("Deleted entry by [authenticated] ([rank]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [GLOB.game_year]") - - if (href_list["search"]) - var/t1 = stripped_input(usr, "Search String: (Name, DNA, or ID)", "Med. records") - if ((!( t1 ) || usr.stat || !( src.authenticated ) || usr.is_mob_restrained() || ((!in_range(src, usr)) && (!isRemoteControlling(usr))))) - return - src.active1 = null - src.active2 = null - t1 = lowertext(t1) - for(var/datum/data/record/R as anything in GLOB.data_core.medical) - if ((lowertext(R.fields["name"]) == t1 || t1 == lowertext(R.fields["id"]))) - src.active2 = R - if (!active2) - temp = "Could not locate record [t1]." - else - for(var/datum/data/record/E in GLOB.data_core.general) - if ((E.fields["name"] == src.active2.fields["name"] || E.fields["id"] == src.active2.fields["id"])) - src.active1 = E - src.screen = 4 - - if (href_list["print_p"]) - if (!( src.printing )) - src.printing = 1 - var/datum/data/record/record1 = null - var/datum/data/record/record2 = null - if ((istype(src.active1, /datum/data/record) && GLOB.data_core.general.Find(src.active1))) - record1 = active1 - if ((istype(src.active2, /datum/data/record) && GLOB.data_core.medical.Find(src.active2))) - record2 = active2 - playsound(src.loc, 'sound/machines/fax.ogg', 15, 1) - sleep(40) - var/obj/item/paper/P = new /obj/item/paper( src.loc ) - P.info = "
Medical Record

" - if (record1) - P.info += text("Name: []
\nID: []
\nSex: []
\nAge: []
\nPhysical Status: []
\nMental Status: []
", record1.fields["name"], record1.fields["id"], record1.fields["sex"], record1.fields["age"], record1.fields["p_stat"], record1.fields["m_stat"]) - P.name = text("Medical Record ([])", record1.fields["name"]) - else - P.info += "General Record Lost!
" - P.name = "Medical Record" - if (record2) - P.info += "
\n
Medical Data

\nBlood Type: [record2.fields["b_type"]]
\n
\nMinor Disabilities: [record2.fields["mi_dis"]]
\nDetails: [record2.fields["mi_dis_d"]]
\n
\nMajor Disabilities: [record2.fields["ma_dis"]]
\nDetails: [record2.fields["ma_dis_d"]]
\n
\nAllergies: [record2.fields["alg"]]
\nDetails: [record2.fields["alg_d"]]
\n
\nCurrent Diseases: [record2.fields["cdi"]] (per disease info placed in log/comment section)
\nDetails: [record2.fields["cdi_d"]]
\n
\nImportant Notes:
\n\t[decode(record2.fields["notes"])]
\n
\n
Comments/Log

" - var/counter = 1 - while(record2.fields[text("com_[]", counter)]) - P.info += text("[]
", record2.fields[text("com_[]", counter)]) - counter++ - else - P.info += "Medical Record Lost!
" - P.info += "" - P.info += text("

This report was printed by [] [].
The [MAIN_SHIP_NAME],[]/[], []

\n",rank,authenticated,time2text(world.timeofday, "MM/DD"),GLOB.game_year,worldtime2text()) - src.printing = null - - if(href_list["print_bs"])//Prints latest body scan - if(!(src.printing)) - src.printing = 1 - var/datum/data/record/record - if ((istype(src.active1, /datum/data/record) && GLOB.data_core.general.Find(src.active1))) - record = active1 - if(!record) - return - playsound(src.loc, 'sound/machines/fax.ogg', 15, 1) - sleep(40) - var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - var/obj/item/paper/P = new /obj/item/paper( src.loc ) - P.name = text("Scan: [], []",record.fields["name"],worldtime2text()) - P.info += text("

Official Weyland-Yutani Document
Scan Record

[]

\n
",record.fields["name"]) - for(var/datum/data/record/R as anything in GLOB.data_core.medical) - if (R.fields["name"] == record.fields["name"]) - if(R.fields["last_scan_time"] && R.fields["last_scan_result"]) - P.info += R.fields["last_scan_result"] - break - else - P.info += "No scan on record." - P.info += text("

This report was printed by [] [].
The [MAIN_SHIP_NAME], []/[], []

\n",rank,authenticated,time2text(world.timeofday, "MM/DD"),GLOB.game_year,worldtime2text()) - src.printing = null - - - - src.add_fingerprint(usr) - src.updateUsrDialog() - return + tgui_alert(user, "Record or associated field not found.") + return -/obj/structure/machinery/computer/med_data/emp_act(severity) - . = ..() - if(inoperable()) + var/name = general_record.fields["name"] + // record modifications to be ported to ARES logs in future + msg_admin_niche("[key_name(user)] changed the record of [name] at [get_location_in_text(user)]. Field [original_field] value changed to [value] [ADMIN_JMP(loc)]") + + return TRUE + + if ("add_comment") + var/id = params["id"] + var/comment = params["comment"] + + if (!id || !comment || length(trim(comment)) == 0) + to_chat(user, SPAN_WARNING("Invalid input. Ensure both ID and comment are provided.")) + return + + // Locate the medical record + var/datum/data/record/medical_record = find_record("medical", id) + + if (!medical_record) + to_chat(user, SPAN_WARNING("Record not found.")) + return + + var/comment_id = length(medical_record.fields["comments"] || list()) + 1 + var/created_at = text("[] [] []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), GLOB.game_year) + + var/new_comment = list( + "entry" = strip_html(trim(comment)), + "created_by" = list("name" = user.get_authentification_name(), "rank" = user.get_assignment()), + "created_at" = created_at, + "deleted_by" = null, + "deleted_at" = null + ) + + if (!islist(medical_record.fields["comments"])) + medical_record.fields["comments"] = list("[comment_id]" = new_comment) + else + medical_record.fields["comments"]["[comment_id]"] = new_comment + + to_chat(user, SPAN_NOTICE("Comment added successfully.")) + msg_admin_niche("[key_name_admin(user)] added medical comment for [medical_record.fields["name"]] at [get_location_in_text(user)] [ADMIN_JMP(loc)]") + + return TRUE + + if ("delete_comment") + var/id = params["id"] + var/comment_key = params["key"] + + if (!id || !comment_key) + to_chat(user, SPAN_WARNING("Invalid input. Ensure both ID and comment key are provided.")) + return + + // Locate the medical record + var/datum/data/record/medical_record = find_record("medical", id) + + if (!medical_record) + to_chat(user, SPAN_WARNING("Record not found.")) + return + + if (!medical_record.fields["comments"] || !medical_record.fields["comments"][comment_key]) + to_chat(user, SPAN_WARNING("Comment not found.")) + return + + var/comment = medical_record.fields["comments"][comment_key] + if (comment["deleted_by"]) + to_chat(user, SPAN_WARNING("This comment is already deleted.")) + return + + comment["deleted_by"] = "[user.get_authentification_name()] ([user.get_assignment()])" + comment["deleted_at"] = text("[] [] []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), GLOB.game_year) + + medical_record.fields["comments"][comment_key] = comment + + to_chat(user, SPAN_NOTICE("Comment deleted successfully.")) + msg_admin_niche("[key_name_admin(user)] deleted comment [comment_key] on [medical_record.fields["name"]]'s medical record at [get_location_in_text(user)] [ADMIN_JMP(loc)]") + + return TRUE + + //* Records maintenance actions + if ("new_medical_record") + if(access_level != MEDICAL_RECORD_ACCESS_LEVEL_2) + to_chat(user, SPAN_WARNING("Insufficient access credentials!")) + return + + var/id = params["id"] + var/name = params["name"] + + if (name && id) + balloon_alert_to_viewers("Place a hand on the biometric reader to create a new medical record.") + to_chat(user, SPAN_WARNING("Place a hand on the biometric reader to create a new medical record.")) + playsound(src, 'sound/machines/ping.ogg', 15, FALSE) + bio_link_target_record_id = id + biometric_scan_timer = addtimer(CALLBACK(src, PROC_REF(handle_biometric_scan_timeout), user), 10 SECONDS, TIMER_STOPPABLE) + + return + + if ("new_general_record") + + if(access_level != MEDICAL_RECORD_ACCESS_LEVEL_2) + to_chat(user, SPAN_WARNING("Insufficient access credentials!")) + return + + CreateGeneralRecord() + to_chat(user, SPAN_NOTICE("You successfully created a new general record.")) + msg_admin_niche("[key_name_admin(user)] created new general record at [get_location_in_text(user)] [ADMIN_JMP(loc)].") + update_static_data_for_all_viewers() + + return TRUE + + if ("delete_medical_record") + if(access_level != MEDICAL_RECORD_ACCESS_LEVEL_2) + to_chat(user, SPAN_WARNING("Insufficient access credentials!")) + return + + var/id = params["id"] + var/datum/data/record/medical_record = find_record("medical", id) + var/datum/data/record/general_record = find_record("medical", id) + + if (!medical_record || !general_record) + to_chat(user, SPAN_WARNING("Record not found.")) + return + + var/record_name = general_record.fields["name"] + if ((istype(medical_record, /datum/data/record) && GLOB.data_core.medical.Find(medical_record))) + GLOB.data_core.medical -= medical_record + msg_admin_niche("[key_name_admin(user)] deleted the medical record of [record_name] at [get_location_in_text(user)] [ADMIN_JMP(loc)].") + qdel(medical_record) + + tgui_interact(user, ui) + + return + + //* Actions for ingame objects interactions + if ("print_medical_record") + var/target_record_id = params["id"] + if (!COOLDOWN_FINISHED(src, record_printing_cooldown)) + to_chat(user, SPAN_WARNING("Woah there buddy! Let the printer catch its breath before ordering the next document.")) + return + + COOLDOWN_START(src, record_printing_cooldown, 7 SECONDS) + + balloon_alert_to_viewers("Printing record!") + to_chat(user, SPAN_NOTICE("Printing record!")) + playsound(loc, 'sound/machines/fax.ogg', 15, TRUE) + + addtimer(CALLBACK(src, PROC_REF(print_medical_record), target_record_id, user), 3 SECONDS) + return + + if ("update_photo") + var/id = params["id"] + var/photo_profile = params["photo_profile"] + var/icon/image = get_photo(user) + if(!image) + to_chat(user, SPAN_WARNING("You are currently not holding any photo.")) + return + + // Locate the general record + var/datum/data/record/general_record = find_record("general", id) + + if (!general_record) + to_chat(user, SPAN_WARNING("Record not found.")) + return + + general_record.fields["photo_[photo_profile]"] = image + ui.send_update(list( + "photo_[photo_profile]" = icon2html(image, user.client, sourceonly = TRUE), + )) + + to_chat(user, SPAN_NOTICE("You successfully updated record [photo_profile] photo")) + msg_admin_niche("[key_name_admin(user)] updated the record photo of [general_record.fields["name"]] at [get_location_in_text(user)] [ADMIN_JMP(loc)]") + + return TRUE + +/obj/structure/machinery/computer/med_data/proc/validate_field(field, value, mob/user = usr, strict_mode = FALSE) + var/list/validators = list( + "general_name" = list( + "type" = "string", + "max_length" = 49, + "required" = TRUE, + "regex" = regex(@"^[a-zA-Z' ]+$"), // Allow letters, spaces, and single quotes + ), + "general_age" = list( + "type" = "number", + "required" = TRUE, + "min_value" = 18, + "max_value" = 100, + ), + "general_sex" = list( + "type" = "string", + "required" = TRUE, + "allowed_values" = list("Male", "Female"), + ), + "medical_major_disability" = list( + "type" = "string", + "max_length" = 50, + ), + "medical_minor_disability" = list( + "type" = "string", + "max_length" = 50, + ), + "medical_diseases" = list( + "type" = "string", + "max_length" = 50, + ), + "medical_allergies" = list( + "type" = "string", + "max_length" = 50, + ), + "medical_comments" = list( + "type" = "string", + "max_length" = 500, + "required" = TRUE, + ) + ) + + var/list/rules = validators[field] + // Handle strict mode: if the field is undefined, fail immediately + if (strict_mode && !rules) + return "[field] is not a recognized property." + + // If not in strict mode and the field is undefined, allow it through without checks + if (!rules) return - for(var/datum/data/record/R as anything in GLOB.data_core.medical) - if(prob(10/severity)) - switch(rand(1,6)) - if(1) - msg_admin_niche("The medical record name of [R.fields["name"]] was scrambled!") - R.fields["name"] = "[pick(pick(GLOB.first_names_male), pick(GLOB.first_names_female))] [pick(GLOB.last_names)]" - if(2) - R.fields["sex"] = pick("Male", "Female") - msg_admin_niche("The medical record sex of [R.fields["name"]] was scrambled!") - if(3) - R.fields["age"] = rand(5, 85) - msg_admin_niche("The medical record age of [R.fields["name"]] was scrambled!") - if(4) - R.fields["b_type"] = pick("A-", "B-", "AB-", "O-", "A+", "B+", "AB+", "O+") - msg_admin_niche("The medical record blood type of [R.fields["name"]] was scrambled!") - if(5) - R.fields["p_stat"] = pick("*SSD*", "Active", "Physically Unfit", "Disabled") - msg_admin_niche("The medical record physical state of [R.fields["name"]] was scrambled!") - if(6) - R.fields["m_stat"] = pick("*Insane*", "*Unstable*", "*Watch*", "Stable") - msg_admin_niche("The medical record mental state of [R.fields["name"]] was scrambled!") - continue + // Check required + if (rules["required"] && isnull(value)) + return "[field] is required." + + // Check type + if (rules["type"] == "string" && !istext(value)) + return "[field] must be a string." + + // Check max_length + if (rules["type"] == "string" && rules["max_length"] && length(value) > rules["max_length"]) + return "[field] exceeds maximum length of [rules["max_length"]]." + + // Validate value range for numbers + if (rules["type"] == "number") + var/regex/regex_number = regex(@"^[-+]?[0-9]*(\.[0-9]+)?$") + if (!regex_number.Find(value)) + return "Field [field] must be a valid number." + + var/min_value = rules["min_value"] + var/max_value = rules["max_value"] + var/num_value = text2num(value) + if (rules["min_value"] && num_value < min_value) + return "Field [field] must not be less than [min_value]." + if (rules["max_value"] && num_value > max_value) + return "Field [field] must not exceed [max_value]." + + // Check regex + var/regex/regex = rules["regex"] + if (rules["regex"] && !regex.Find(value)) + return "[field] contains invalid characters." + + // Check allowed_values + if (rules["allowed_values"] && !(value in rules["allowed_values"])) + return "[value] is not a valid value for [field]." - else if(prob(1)) - msg_admin_niche("The medical record of [R.fields["name"]] was lost!") - GLOB.data_core.medical -= R - qdel(R) - continue + return +/obj/structure/machinery/computer/med_data/proc/find_record(record_type, id) + // Determine the list to search based on record_type + var/list/records = null + if (record_type == "general") + records = GLOB.data_core.general + else if (record_type == "medical") + records = GLOB.data_core.medical + else + return // Unsupported record type + // There are actually other types of records as well, but I want to make it foolproof + + // Iterate over the records to find the one matching the ID + for (var/datum/data/record/record in records) + if (record.fields["id"] == id) + return record + +/obj/structure/machinery/computer/med_data/proc/get_photo(mob/user) + if(istype(user.get_active_hand(), /obj/item/photo)) + var/obj/item/photo/photo = user.get_active_hand() + return photo.img /obj/structure/machinery/computer/med_data/laptop name = "Medical Laptop" diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 970bb44ac73f..4640cbcd4356 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -622,7 +622,7 @@ name = "\improper Alpha Squad Preparations" icon = 'icons/obj/structures/doors/prepdoor_alpha.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA) opacity = FALSE glass = TRUE @@ -670,7 +670,7 @@ name = "\improper Bravo Squad Preparations" icon = 'icons/obj/structures/doors/prepdoor_bravo.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_BRAVO) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_BRAVO) opacity = FALSE glass = TRUE @@ -718,7 +718,7 @@ name = "\improper Charlie Squad Preparations" icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE) opacity = FALSE glass = TRUE @@ -766,7 +766,7 @@ name = "\improper Delta Squad Preparations" icon = 'icons/obj/structures/doors/prepdoor_delta.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_DELTA) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_DELTA) opacity = FALSE glass = TRUE @@ -841,14 +841,14 @@ /obj/structure/machinery/door/airlock/almayer/marine/shared name = "\improper Squads Preparations" icon = 'icons/obj/structures/doors/prepdoor.dmi' - req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) + req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) opacity = FALSE glass = TRUE /obj/structure/machinery/door/airlock/almayer/marine/shared/alpha_bravo name = "\improper Alpha-Bravo Squads Preparations" icon = 'icons/obj/structures/doors/prepdoor_alpha.dmi' - req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO) + req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO) /obj/structure/machinery/door/airlock/almayer/marine/shared/alpha_bravo/yellow icon = 'icons/obj/structures/doors/prepdoor_bravo.dmi' @@ -856,7 +856,7 @@ /obj/structure/machinery/door/airlock/almayer/marine/shared/charlie_delta name = "\improper Charlie-Delta Squads Preparations" icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) + req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) /obj/structure/machinery/door/airlock/almayer/marine/shared/charlie_delta/blue icon = 'icons/obj/structures/doors/prepdoor_delta.dmi' diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index 19335938fadf..d0c5d2039a8d 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -570,37 +570,37 @@ name = "\improper Alpha Squad Preparations" icon = 'icons/obj/structures/doors/2x1prepdoor_alpha.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA) /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo name = "\improper Bravo Squad Preparations" icon = 'icons/obj/structures/doors/2x1prepdoor_bravo.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_BRAVO) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_BRAVO) /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie name = "\improper Charlie Squad Preparations" icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE) /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta name = "\improper Delta Squad Preparations" icon = 'icons/obj/structures/doors/2x1prepdoor_delta.dmi' req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_DELTA) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_DELTA) /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared name = "\improper Squads Preparations" icon = 'icons/obj/structures/doors/prepdoor.dmi' - req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) + req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) opacity = FALSE glass = TRUE /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo name = "\improper Alpha-Bravo Squads Preparations" icon = 'icons/obj/structures/doors/2x1prepdoor_alpha.dmi' - req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO) + req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_ALPHA, ACCESS_MARINE_BRAVO) /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow icon = 'icons/obj/structures/doors/2x1prepdoor_bravo.dmi' @@ -608,7 +608,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta name = "\improper Charlie-Delta Squads Preparations" icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) + req_one_access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO, ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA) /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue icon = 'icons/obj/structures/doors/2x1prepdoor_delta.dmi' diff --git a/code/game/machinery/doors/poddoor/poddoor.dm b/code/game/machinery/doors/poddoor/poddoor.dm index a313987cb82e..63f10f98f3ca 100644 --- a/code/game/machinery/doors/poddoor/poddoor.dm +++ b/code/game/machinery/doors/poddoor/poddoor.dm @@ -159,7 +159,7 @@ vehicle_resistant = FALSE unslashable = FALSE gender = PLURAL - health = 200 + health = 100 /obj/structure/machinery/door/poddoor/hybrisa/open_shutters/bullet_act(obj/projectile/P) health -= P.damage diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm index 26ad6a98e02b..36786713c99b 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm @@ -7,7 +7,7 @@ desc = "An automated weapon rack hooked up to a big storage of standard-issue weapons." icon_state = "guns" req_access = list() - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP) + req_one_access = list(ACCESS_MARINE_GENERAL, ACCESS_MARINE_PREP) hackable = TRUE vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_STOCK_DYNAMIC @@ -217,7 +217,7 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_ALPHA, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) + req_one_access = list(ACCESS_MARINE_ALPHA, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha/populate_product_list(scale) ..() @@ -228,7 +228,7 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/bravo req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_BRAVO, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) + req_one_access = list(ACCESS_MARINE_BRAVO, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/bravo/populate_product_list(scale) ..() @@ -239,7 +239,7 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/charlie req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) + req_one_access = list(ACCESS_MARINE_CHARLIE, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/charlie/populate_product_list(scale) ..() @@ -250,7 +250,7 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/delta req_access = list(ACCESS_MARINE_PREP) - req_one_access = list(ACCESS_MARINE_DELTA, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) + req_one_access = list(ACCESS_MARINE_DELTA, ACCESS_MARINE_GENERAL, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/delta/populate_product_list(scale) ..() diff --git a/code/game/objects/effects/decals/hybrisa_decals.dm b/code/game/objects/effects/decals/hybrisa_decals.dm index d5c647e931a6..02194c4bb53c 100644 --- a/code/game/objects/effects/decals/hybrisa_decals.dm +++ b/code/game/objects/effects/decals/hybrisa_decals.dm @@ -224,3 +224,15 @@ icon_state = "colorable_rug" layer = TURF_LAYER density = FALSE + +/// Large TWE Logo + +/obj/effect/decal/hybrisa/TWE_logo_large + icon = 'icons/effects/3WE_logo_tile.dmi' + icon_state = "twe_logo_c" + +/obj/effect/decal/hybrisa/TWE_logo_large/directional + icon_state = "twe_logo_directional" + +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1 + icon_state = "twe_logo_directional1" diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index 2ecdd3d9fa70..3407f16d7af5 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -567,7 +567,10 @@ equipment = /datum/equipment_preset/survivor/forecon/squad_leader spawn_priority = SPAWN_PRIORITY_HIGH -// Trijent UPP +// Trijent UPP insert + +/obj/effect/landmark/survivor_spawner/upp + icon_state = "surv_upp" /obj/effect/landmark/survivor_spawner/upp/soldier icon_state = "surv_upp" @@ -619,6 +622,62 @@ story_text = "Your orders were simple, Recon the site, ascertain if there is a biological weapons program in the area, and if so to secure the colony and retrieve a sample. However your team failed to account for an active anti-air battery near the area. Both your craft and your sister ship crashed. Barely having a chance to catch your breath, you found yourself being assailed by vile xenomorphs! You and your team have barely held your ground, at the cost of four of your own, but more are coming and ammo is low. You believe an American rescue force is en route." spawn_priority = SPAWN_PRIORITY_VERY_HIGH +/// IASF /// + +/obj/effect/landmark/survivor_spawner/twe + icon_state = "surv_twe" + +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper + equipment = /datum/equipment_preset/survivor/iasf/paratrooper + synth_equipment = /datum/equipment_preset/synth/survivor/iasf_synth + CO_equipment = /datum/equipment_preset/survivor/hybrisa/iasf_commander + intro_text = list("

You are a member of the IASF Parachute Regiment!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to survive.") + story_text = "

Outpost Souter was your final posting before withdrawal. With Weyland-Yutani buying out Hybrisa, the TWE began pulling its forces off-world — the IASF included. Your Regiment was standing down, preparing to hand over control during the transition. Then the outbreak hit. You've spent the last weeks barely holding the outpost together, repelling wave after wave while sheltering what few survivors you could. Now, only your squad remains. The outpost is falling apart, the armoury's dry, and the dropship in the hangar still has no fuel. A distress signal was sent over a week ago. All you can do now is hold your ground — and pray someone answers.

" + spawn_priority = SPAWN_PRIORITY_LOW + +/obj/effect/landmark/survivor_spawner/twe/iasf/engi + equipment = /datum/equipment_preset/survivor/iasf/engi + synth_equipment = /datum/equipment_preset/synth/survivor/iasf_synth + CO_equipment = /datum/equipment_preset/survivor/hybrisa/iasf_commander + intro_text = list("

You are a member of the IASF Parachute Regiment!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to survive.") + story_text = "

Outpost Souter was your final posting before withdrawal. With Weyland-Yutani buying out Hybrisa, the TWE began pulling its forces off-world — the IASF included. Your Regiment was standing down, preparing to hand over control during the transition. Then the outbreak hit. You've spent the last weeks barely holding the outpost together, repelling wave after wave while sheltering what few survivors you could. Now, only your squad remains. The outpost is falling apart, the armoury's dry, and the dropship in the hangar still has no fuel. A distress signal was sent over a week ago. All you can do now is hold your ground — and pray someone answers.

" + spawn_priority = SPAWN_PRIORITY_MEDIUM + + +/obj/effect/landmark/survivor_spawner/twe/iasf/medic + equipment = /datum/equipment_preset/survivor/iasf/medic + synth_equipment = /datum/equipment_preset/synth/survivor/iasf_synth + CO_equipment = /datum/equipment_preset/survivor/hybrisa/iasf_commander + intro_text = list("

You are a member of the IASF Parachute Regiment!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to survive.") + story_text = "

Outpost Souter was your final posting before withdrawal. With Weyland-Yutani buying out Hybrisa, the TWE began pulling its forces off-world — the IASF included. Your Regiment was standing down, preparing to hand over control during the transition. Then the outbreak hit. You've spent the last weeks barely holding the outpost together, repelling wave after wave while sheltering what few survivors you could. Now, only your squad remains. The outpost is falling apart, the armoury's dry, and the dropship in the hangar still has no fuel. A distress signal was sent over a week ago. All you can do now is hold your ground — and pray someone answers.

" + spawn_priority = SPAWN_PRIORITY_MEDIUM + +/obj/effect/landmark/survivor_spawner/twe/iasf/pilot + equipment = /datum/equipment_preset/survivor/iasf/pilot + synth_equipment = /datum/equipment_preset/synth/survivor/iasf_synth + CO_equipment = /datum/equipment_preset/survivor/hybrisa/iasf_commander + intro_text = list("

You are a member of the IASF Parachute Regiment!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to survive.") + story_text = "

Outpost Souter was your final posting before withdrawal. With Weyland-Yutani buying out Hybrisa, the TWE began pulling its forces off-world — the IASF included. Your Regiment was standing down, preparing to hand over control during the transition. Then the outbreak hit. You've spent the last weeks barely holding the outpost together, repelling wave after wave while sheltering what few survivors you could. Now, only your squad remains. The outpost is falling apart, the armoury's dry, and the dropship in the hangar still has no fuel. A distress signal was sent over a week ago. All you can do now is hold your ground — and pray someone answers.

" + spawn_priority = SPAWN_PRIORITY_HIGH + +/obj/effect/landmark/survivor_spawner/twe/iasf/squad_leader + equipment = /datum/equipment_preset/survivor/iasf/squad_leader + synth_equipment = /datum/equipment_preset/synth/survivor/iasf_synth + CO_equipment = /datum/equipment_preset/survivor/hybrisa/iasf_commander + intro_text = list("

You are a member of the IASF Parachute Regiment!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to survive.") + story_text = "

Outpost Souter was your final posting before withdrawal. With Weyland-Yutani buying out Hybrisa, the TWE began pulling its forces off-world — the IASF included. Your Regiment was standing down, preparing to hand over control during the transition. Then the outbreak hit. You've spent the last weeks barely holding the outpost together, repelling wave after wave while sheltering what few survivors you could. Now, only your squad remains. The outpost is falling apart, the armoury's dry, and the dropship in the hangar still has no fuel. A distress signal was sent over a week ago. All you can do now is hold your ground — and pray someone answers.

" + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + /// Soro UPP - SOF - Survivors /obj/effect/landmark/survivor_spawner/SOF_survivor/soldier diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index e92bf6bc403e..efa6342f6c86 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -269,33 +269,43 @@ /obj/structure/closet/bodybag/cryobag/update_icon() . = ..() // Bump up a living player in the bag to layer of an actual corpse and not just an accidentally coverable prop - if(stasis_mob) - layer = LYING_BETWEEN_MOB_LAYER - else + + overlays.Cut() // makes sure any previous triage cards are removed + + if(!stasis_mob) layer = initial(layer) + return + + layer = LYING_BETWEEN_MOB_LAYER + + if(stasis_mob.holo_card_color && !opened) + var/image/holo_card_icon = image('icons/obj/bodybag.dmi', src, "cryocard_[stasis_mob.holo_card_color]") + + if(!holo_card_icon) // makes sure an icon was actually located + return + + overlays |= holo_card_icon /obj/structure/closet/bodybag/cryobag/open() - var/mob/living/L = locate() in contents - if(L) - L.in_stasis = FALSE - stasis_mob = null - STOP_PROCESSING(SSobj, src) . = ..() + if(stasis_mob) + stasis_mob.in_stasis = FALSE + UnregisterSignal(stasis_mob, COMSIG_HUMAN_TRIAGE_CARD_UPDATED) + stasis_mob = null + STOP_PROCESSING(SSobj, src) if(used > max_uses) new /obj/item/trash/used_stasis_bag(loc) qdel(src) -/obj/structure/closet/bodybag/cryobag/store_mobs(stored_units) // overriding this +/obj/structure/closet/bodybag/cryobag/store_mobs(stored_units) + . = ..() var/list/mobs_can_store = list() - for(var/mob/living/carbon/human/H in loc) - if(H.buckled) + for(var/mob/living/carbon/human/human in loc) + if(human.buckled || (human.stat == DEAD)) continue - if(H.stat == DEAD) // dead, nope - continue - mobs_can_store += H - var/mob/living/carbon/human/mob_to_store + mobs_can_store += human if(length(mobs_can_store)) - mob_to_store = pick(mobs_can_store) + var/mob/living/carbon/human/mob_to_store = pick(mobs_can_store) mob_to_store.forceMove(src) stored_units += mob_size return stored_units @@ -303,11 +313,13 @@ /obj/structure/closet/bodybag/cryobag/close() . = ..() last_use = used + 1 - var/mob/living/carbon/human/H = locate() in contents - if(H) - stasis_mob = H + for(var/mob/living/carbon/human/human in contents) + stasis_mob = human + // Uses RegisterSignal with an override, just in case the human escaped the last bag without calling open() somehow + RegisterSignal(human, COMSIG_HUMAN_TRIAGE_CARD_UPDATED, PROC_REF(update_icon), TRUE) START_PROCESSING(SSobj, src) update_icon() + return /obj/structure/closet/bodybag/cryobag/process() used++ diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 08517bf25e46..453a6971367b 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -1291,6 +1291,17 @@ hud_type = MOB_HUD_FACTION_TWE volume = RADIO_VOLUME_IMPORTANT +/obj/item/device/radio/headset/distress/iasf + name = "IASF Headset" + desc = "A sleek headset used by the IASF. Low profile enough to fit under any headgear." + frequency = RMC_FREQ + icon_state = "vai_headset" + initial_keys = list(/obj/item/device/encryptionkey/public, /obj/item/device/encryptionkey/royal_marine) + has_hud = TRUE + hud_type = MOB_HUD_FACTION_IASF + additional_hud_types = list(MOB_HUD_FACTION_TWE, MOB_HUD_FACTION_IASF, MOB_HUD_FACTION_MARINE) + volume = RADIO_VOLUME_IMPORTANT + //CMB Headsets /obj/item/device/radio/headset/distress/CMB name = "\improper CMB Earpiece" diff --git a/code/game/objects/items/explosives/plastic.dm b/code/game/objects/items/explosives/plastic.dm index 6c27d3aaad28..f5aa47b58ea1 100644 --- a/code/game/objects/items/explosives/plastic.dm +++ b/code/game/objects/items/explosives/plastic.dm @@ -68,8 +68,6 @@ to_chat(user, SPAN_NOTICE("Timer set for [timer] seconds.")) /obj/item/explosive/plastic/afterattack(atom/target, mob/user, flag) - setDir(get_dir(user, target)) - if(user.action_busy || !flag) return if(!skillcheck(user, req_skill, req_skill_level)) @@ -94,6 +92,7 @@ disarm() return + setDir(get_dir(user, target)) user.drop_held_item() cause_data = create_cause_data(initial(name), user) plant_target = target diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 8eb311170bd3..9a155dc4371a 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -383,14 +383,17 @@ /obj/item/storage/backpack/satchel/blue icon_state = "satchel_blue" + item_state = "satchel_blue" /obj/item/storage/backpack/satchel/black icon_state = "satchel_black" + item_state = "satchel_black" /obj/item/storage/backpack/satchel/norm name = "satchel" desc = "A trendy-looking satchel." icon_state = "satchel-norm" + item_state = "satchel-sec" /obj/item/storage/backpack/satchel/norm/blue icon_state = "satchel-chem" @@ -408,41 +411,49 @@ name = "industrial satchel" desc = "A tough satchel with extra pockets." icon_state = "satchel-eng" + item_state = "satchel-eng" /obj/item/storage/backpack/satchel/med name = "medical satchel" desc = "A sterile satchel used in medical departments." icon_state = "satchel-med" + item_state = "satchel-med" /obj/item/storage/backpack/satchel/vir name = "virologist satchel" desc = "A sterile satchel with virologist colors." icon_state = "satchel-vir" + item_state = "satchel-vir" /obj/item/storage/backpack/satchel/chem name = "chemist satchel" desc = "A sterile satchel with chemist colors." icon_state = "satchel-chem" + item_state = "satchel-chem" /obj/item/storage/backpack/satchel/gen name = "geneticist satchel" desc = "A sterile satchel with geneticist colors." icon_state = "satchel-gen" + item_state = "satchel-gen" /obj/item/storage/backpack/satchel/tox name = "scientist satchel" desc = "Useful for holding research materials." icon_state = "satchel-tox" + item_state = "satchel-tox" /obj/item/storage/backpack/satchel/sec //Universal between USCM MPs & Colony, should be split at some point. name = "security satchel" desc = "A robust satchel composed of two drop pouches and a large internal pocket. Made of a stiff fabric, it isn't very comfy to wear." icon_state = "satchel-sec" + item_state = "satchel-sec" /obj/item/storage/backpack/satchel/hyd name = "hydroponics satchel" desc = "A green satchel for plant-related work." icon_state = "satchel_hyd" + item_state = "satchel_hyd" //==========================// MARINE BACKPACKS\\================================\\ //=======================================================================\\ @@ -905,7 +916,6 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r unacidable = TRUE explo_proof = TRUE uniform_restricted = list(/obj/item/clothing/suit/storage/marine/M3S) //Need to wear Scout armor and helmet to equip this. - flags_atom = FPRINT|NO_GAMEMODE_SKIN // same sprite for all gamemodes var/camo_active = FALSE var/camo_alpha = 10 var/allow_gun_usage = FALSE @@ -918,8 +928,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r actions_types = list(/datum/action/item_action/specialist/toggle_cloak) /obj/item/storage/backpack/marine/satchel/scout_cloak/select_gamemode_skin(expected_type, list/override_icon_state, list/override_protection) - . = ..() - if(!(flags_atom & NO_GAMEMODE_SKIN)) + if(flags_atom & NO_GAMEMODE_SKIN) return switch(SSmapping.configs[GROUND_MAP].camouflage_type) if("urban") @@ -1072,6 +1081,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r name = "M7X Mark II optical camouflage powerpack" desc = "A heavy-duty powerpack carried by Weyland-Yutani combat androids. Powers the reverse-engineered optical camouflage system utilized by M7X Mark II Apesuit." icon_state = "invis_android_powerpack" + flags_atom = FPRINT|NO_GAMEMODE_SKIN // same sprite for all gamemodes icon = 'icons/obj/items/clothing/backpack/backpacks_by_faction/WY.dmi' item_icons = list( WEAR_BACK = 'icons/mob/humans/onmob/clothing/back/backpacks_by_faction/WY.dmi' @@ -1483,6 +1493,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r name = "\improper V86 Thermal Cloak" desc = "A thermo-optic camouflage cloak commonly used by UPP commando units." uniform_restricted = list(/obj/item/clothing/suit/storage/marine/faction/UPP/commando) //Need to wear UPP commando armor to equip this. + flags_atom = FPRINT|NO_GAMEMODE_SKIN // same sprite for all gamemodes max_storage_space = 21 camo_alpha = 10 diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 062de0c4401e..8bf6e74a7ca0 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -688,6 +688,26 @@ new /obj/item/restraint/handcuffs(src) new /obj/item/explosive/grenade/flashbang(src) +/obj/item/storage/belt/security/MP/WY + name = "\improper M276-C corporate security rig" + desc = "A Weyland-Yutani adaptation of the M276 load-bearing equipment, designed for corporate security forces. This modular black rig features multiple pouches for carrying restraints, ammunition, and a mix of lethal and non-lethal equipment for maintaining order." + +/obj/item/storage/belt/security/MP/WY/full/fill_preset_inventory() + new /obj/item/weapon/gun/energy/taser(src) + new /obj/item/device/flash(src) + new /obj/item/weapon/baton(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/reagent_container/spray/pepper(src) + new /obj/item/device/clue_scanner(src) + +/obj/item/storage/belt/security/MP/WY/full/synth/fill_preset_inventory() + new /obj/item/explosive/grenade/flashbang(src) + new /obj/item/device/flash(src) + new /obj/item/weapon/baton(src) + new /obj/item/reagent_container/spray/pepper(src) + new /obj/item/device/clue_scanner(src) + new /obj/item/restraint/handcuffs(src) + /obj/item/storage/belt/marine name = "\improper M276 pattern ammo load rig" desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This is the standard variant, designed for bulk ammunition-carrying operations." @@ -2408,6 +2428,51 @@ for(var/i in 1 to storage_slots - 1) new /obj/item/ammo_magazine/revolver/webley(src) +/obj/item/storage/belt/gun/iasf_para_belt + name = "\improper IASF paratrooper belt" + desc = "A sturdy belt fitted with a black leather holster designed for IASF Paratroopers. A large utility pouch and several smaller compartments provide ample space for extra ammunition and field essentials—standard gear for IASF airborne forces dropping into hostile territory." + icon_state = "iasf_pistol_para" + item_state = "iasf_pistol_para" + icon = 'icons/obj/items/clothing/belts/belts_by_faction/TWE.dmi' + item_icons = list( + WEAR_WAIST = 'icons/mob/humans/onmob/clothing/belts/belts_by_faction/TWE.dmi', + WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/clothing/belts_lefthand.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/clothing/belts_righthand.dmi' + ) + storage_slots = 8 + can_hold = list( + /obj/item/weapon/gun/revolver, + /obj/item/ammo_magazine/revolver, + /obj/item/weapon/gun/pistol, + /obj/item/ammo_magazine/pistol, + ) + flags_atom = FPRINT|NO_NAME_OVERRIDE|NO_GAMEMODE_SKIN + holster_slots = list( + "1" = list( + "icon_x" = -1, + "icon_y" = -3)) + +/obj/item/storage/belt/gun/iasf_para_belt/full/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/revolver/m44/custom/webley/IASF_webley()) + for(var/i in 1 to storage_slots - 1) + new /obj/item/ammo_magazine/revolver/webley(src) + +/obj/item/storage/belt/gun/iasf_para_belt/webley_near_empty/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/revolver/m44/custom/webley/IASF_webley()) + for(var/i = 1 to 3) + new /obj/item/ammo_magazine/revolver/webley(src) + +/obj/item/storage/belt/gun/iasf_para_belt/custom + name = "\improper IASF custom paratrooper belt" + desc = "A modified IASF paratrooper belt featuring a black leather holster with gold inlay, a large utility pouch and several smaller compartments provide ample space for extra ammunition and field essentials—standard gear for IASF airborne forces dropping into hostile territory." + icon_state = "iasf_pistol_para_custom" + item_state = "iasf_pistol_para_custom" + +/obj/item/storage/belt/gun/iasf_para_belt/custom/full/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/l54_custom()) + for(var/i in 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/l54_custom(src) + /obj/item/storage/belt/gun/smartgunner name = "\improper M802 pattern smartgunner sidearm rig" desc = "The M802 is a limited-issue mark of USCM load-bearing equipment, designed to carry smartgun ammunition and a sidearm." @@ -2727,6 +2792,16 @@ new /obj/item/reagent_container/hypospray/autoinjector/dexalinp(src) new /obj/item/device/healthanalyzer(src) +/obj/item/storage/belt/medical/rmc/survivor/fill_preset_inventory() + new /obj/item/storage/pill_bottle/packet/bicaridine(src) + new /obj/item/storage/pill_bottle/packet/kelotane(src) + new /obj/item/storage/pill_bottle/packet/tramadol(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/storage/pill_bottle/packet/tricordrazine(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/device/healthanalyzer(src) + /obj/item/storage/belt/gun/l905 name = "\improper L905 gunbelt" desc = "Finely-tooled leather, a L905, and six magazines. More than enough for the standard RMC commando." @@ -2768,3 +2843,26 @@ handle_item_insertion(new /obj/item/weapon/gun/revolver/upp()) for(var/i = 1 to storage_slots - 1) new /obj/item/ammo_magazine/revolver/upp(src) + +/obj/item/storage/belt/gun/l54 + name = "\improper pistol belt" + desc = "A dark brown leather pistol belt commonly issued to NSPA officers. Although designed for the L54 service pistol, it accommodates most sidearms along with spare magazines. Standard issue across TWE law enforcement, military, and security forces." + icon_state = "l54_holster" + item_state = "l54_holster" + icon = 'icons/obj/items/clothing/belts/belts_by_faction/TWE.dmi' + item_icons = list( + WEAR_WAIST = 'icons/mob/humans/onmob/clothing/belts/belts_by_faction/TWE.dmi', + WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/clothing/belts_lefthand.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/clothing/belts_righthand.dmi' + ) + flags_atom = FPRINT|NO_NAME_OVERRIDE|NO_GAMEMODE_SKIN + storage_slots = 7 + can_hold = list( + /obj/item/weapon/gun/pistol, + /obj/item/ammo_magazine/pistol, + ) + +/obj/item/storage/belt/gun/l54/full/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/pistol/l54()) + for(var/i in 1 to storage_slots - 1) + new /obj/item/ammo_magazine/pistol/l54(src) diff --git a/code/game/objects/items/storage/briefcase.dm b/code/game/objects/items/storage/briefcase.dm index b1fc2595e72a..8d0099c2dcf0 100644 --- a/code/game/objects/items/storage/briefcase.dm +++ b/code/game/objects/items/storage/briefcase.dm @@ -1,5 +1,5 @@ /obj/item/storage/briefcase - name = "briefcase" + name = "brown briefcase" desc = "It's made of AUTHENTIC faux-leather and has a price-tag still attached. Its owner must be a real professional." icon = 'icons/obj/items/storage/briefcases.dmi' item_icons = list( @@ -43,8 +43,37 @@ return /obj/item/storage/briefcase/stowaway - name = "briefcase" - desc = "It's made of AUTHENTIC faux-leather and has a price-tag still attached. Its owner must be a real professional." + name = "suitcase" + desc = "An old suitcase suited for when you want to travel. This one sure has seen better days." icon_state = "suitcase" item_state = "suitcase" force = 8 + +/obj/item/storage/briefcase/black + name = "black briefcase" + icon_state = "briefcase_b" + item_state = "briefcase_b" + +/obj/item/storage/briefcase/maroon + name = "maroon briefcase" + icon_state = "briefcase_c" + item_state = "briefcase_c" + +/obj/item/storage/briefcase/flap + name = "flap-closure brown briefcase" + desc = "It's made of AUTHENTIC faux-leather and has a price-tag still attached. Its owner must be a real professional. This one is less rigid, made with a flap and softer leather." + icon_state = "briefcase_d" + item_state = "briefcase_d" + +/obj/item/storage/briefcase/flap/black + name = "flap-closure black briefcase" + icon_state = "briefcase_e" + item_state = "briefcase_e" + +/obj/item/storage/briefcase/flap/maroon + name = "flap-closure maroon briefcase" + icon_state = "briefcase_f" + item_state = "briefcase_f" + + + diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm index 3e7367597788..fe7e99cc1c35 100644 --- a/code/game/objects/items/storage/large_holster.dm +++ b/code/game/objects/items/storage/large_holster.dm @@ -469,9 +469,6 @@ FP.toggle_fuel() /obj/item/storage/belt/gun/brutepack - flags_equip_slot = SLOT_BACK //yes we are belt subtype that is worn on back - storage_slots = 7 - max_w_class = SIZE_MEDIUM name = "\improper M271A2 Pattern Launcher Rig" desc = "A special-issue harness designed to allow the user to freely and securely holster a M6H-BRUTE launcher system on their back without impeding movement, while also having several other integrated storage packs for additional ammo and equipment." icon = 'icons/obj/items/clothing/backpack/backpacks_by_faction/UA.dmi' @@ -480,12 +477,16 @@ item_icons = list( WEAR_BACK = 'icons/mob/humans/onmob/clothing/back/backpacks_by_faction/UA.dmi' ) + flags_equip_slot = SLOT_BACK //yes we are belt subtype that is worn on back + storage_slots = 7 + max_w_class = SIZE_MEDIUM can_hold = list( /obj/item/ammo_magazine, /obj/item/weapon/gun/launcher/rocket/brute, ) bypass_w_limit = list(/obj/item/weapon/gun/launcher/rocket/brute) + /obj/item/storage/belt/gun/brutepack/update_icon() . = ..() var/mob/living/carbon/human/user = loc diff --git a/code/game/objects/items/storage/lockbox.dm b/code/game/objects/items/storage/lockbox.dm index 5ba9578aab6e..299365db9b9f 100644 --- a/code/game/objects/items/storage/lockbox.dm +++ b/code/game/objects/items/storage/lockbox.dm @@ -5,11 +5,11 @@ desc = "A locked box." icon = 'icons/obj/items/storage/briefcases.dmi' item_icons = list( - WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/items/storage_lefthand.dmi', - WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/items/storage_righthand.dmi', + WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/equipment/briefcases_lefthand.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/equipment/briefcases_righthand.dmi', ) icon_state = "lockbox+l" - item_state = "box" + item_state = "lockbox" w_class = SIZE_LARGE max_w_class = SIZE_MEDIUM max_storage_space = 14 //The sum of the w_classes of all the items in this storage item. diff --git a/code/game/objects/items/toys/toy_weapons.dm b/code/game/objects/items/toys/toy_weapons.dm index a9845c2bc7f8..7afd9870ac6a 100644 --- a/code/game/objects/items/toys/toy_weapons.dm +++ b/code/game/objects/items/toys/toy_weapons.dm @@ -202,16 +202,33 @@ * Toy swords */ /obj/item/toy/sword - name = "toy sword" - desc = "A cheap, plastic replica of an energy sword. Realistic sounds! Ages 8 and up." + name = "blue toy light-sword" + desc = "A cheap, plastic replica of a light-sword, very popular toy among fans of those new Star Skirmishes movies. Realistic sounds! Ages 8 and up." icon = 'icons/obj/items/weapons/melee/energy.dmi' + item_icons = list( + WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/weapons/melee/energy_lefthand.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/weapons/melee/energy_righthand.dmi', + ) icon_state = "sword0" item_state = "sword0" var/active = 0 + var/sword_type = "blue" w_class = SIZE_SMALL flags_item = NOSHIELD attack_verb = list("attacked", "struck", "hit") +/obj/item/toy/sword/red + name = "red toy light-sword" + sword_type = "red" + +/obj/item/toy/sword/green + name = "green toy light-sword" + sword_type = "green" + +/obj/item/toy/sword/purple + name = "green toy light-sword" + sword_type = "purple" + /obj/item/toy/sword/attack_self(mob/user) ..() @@ -219,8 +236,8 @@ if (active) to_chat(user, SPAN_NOTICE(" You extend the plastic blade with a quick flick of your wrist.")) playsound(user, 'sound/weapons/saberon.ogg', 15, 1) - icon_state = "swordblue" - item_state = "swordblue" + icon_state = "sword[sword_type]" + item_state = "sword[sword_type]" w_class = SIZE_LARGE else to_chat(user, SPAN_NOTICE(" You push the plastic blade back down into the handle.")) diff --git a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm index 261d26f64ec9..afc121803f1d 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm @@ -267,6 +267,11 @@ desc = "A supply crate containing sixty W-Y brand ration packets." supplies = list(/obj/item/ammo_box/magazine/misc/mre/wy = 5) +/obj/structure/largecrate/supply/supplies/mre/twe + name = "\improper TWE ORP rations crate (x60)" + desc = "A supply crate containing sixty TWE ORP ration packets." + supplies = list(/obj/item/ammo_box/magazine/misc/mre/twe = 5) + /obj/structure/largecrate/supply/supplies/wy_emergency_food name = "\improper WY emergency nutrition briquettes crate (x100)" desc = "A supply crate containing one hundred WY emergency nutrition briquettes." diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index ead8d2f8c3fd..64c565ca1b28 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -1081,8 +1081,15 @@ window_frame = /obj/structure/window_frame/upp_ship/reinforced /obj/structure/window/framed/upp_ship/hull - desc = "A glass window. Something tells you this one is somehow indestructible." -// icon_state = "upp_rwindow0" + name = "hull window" + desc = "A glass window with a special rod matrix inside a wall frame. This one was made out of exotic materials to prevent hull breaches. No way to get through here." + // icon_state = "upp_rwindow0" + not_damageable = TRUE + not_deconstructable = TRUE + unslashable = TRUE + unacidable = TRUE + health = 1000000 + window_frame = /obj/structure/window_frame/upp_ship/hull //UPP almayer retexture windows @@ -1105,7 +1112,14 @@ window_frame = /obj/structure/window_frame/upp/reinforced /obj/structure/window/framed/upp/hull + name = "hull window" desc = "A glass window. Something tells you this one is somehow indestructible." + not_damageable = TRUE + not_deconstructable = TRUE + unslashable = TRUE + unacidable = TRUE + health = 1000000 + window_frame = /obj/structure/window_frame/upp/hull // icon_state = "upp_rwindow0" // Hybrisa Windows diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm index 964d4055990f..011022414508 100644 --- a/code/game/turfs/closed.dm +++ b/code/game/turfs/closed.dm @@ -462,14 +462,36 @@ /turf/closed/shuttle/transit/r_end icon_state = "swall8" -// Hybrisa Shuttles +// Hybrisa Shuttles & Dropships -/turf/closed/shuttle/dropship2/WY/HorizonRunner +/turf/closed/shuttle/dropship4/WY + icon = 'icons/turf/dropship4.dmi' + icon_state = "1" + +/turf/closed/shuttle/dropship4/WY/HorizonRunner name = "\improper WY-LWI Horizon Runner HR-150" desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport." - icon = 'icons/turf/dropship4.dmi' + icon_state = "1" -/turf/closed/shuttle/dropship2/WY/StarGlider +/turf/closed/shuttle/dropship4/WY/HorizonRunner/transparent + opacity = FALSE + +/turf/closed/shuttle/dropship4/WY/StarGlider name = "\improper WY-LWI StarGlider SG-200" desc = "The WY-LWI StarGlider SG-200, a product of the collaborative ingenuity between Weyland Yutani and Lunnar-Welsun Industries, This small dropship is designed for short-range commercial transport." - icon = 'icons/turf/dropship4.dmi' + icon_state = "1" + +/turf/closed/shuttle/dropship4/WY/StarGlider/transparent + opacity = FALSE + +/turf/closed/shuttle/dropship5/CLF + icon = 'icons/turf/CLF_dropship.dmi' + icon_state = "1" + +/turf/closed/shuttle/dropship5/CLF/Fire + name = "\improper UD-9M 'Dogbite'" + desc = "The UD-9M 'Dogbite' is a repurposed utility dropship, originally designed for short-haul cargo operations across colonial systems. Stolen and heavily modified by the Colonial Liberation Front, it's now a rugged smuggler and strike craft, capable of dropping a full fireteam through tight patrol nets. Its hull is scarred with gunfire, rust, and graffiti — a patchwork of rebellion held together by grit and stolen parts." + icon_state = "1" + +/turf/closed/shuttle/dropship5/CLF/Fire/transparent + opacity = FALSE diff --git a/code/game/turfs/walls/wall_icon.dm b/code/game/turfs/walls/wall_icon.dm index 336922bd1022..58a285085f92 100644 --- a/code/game/turfs/walls/wall_icon.dm +++ b/code/game/turfs/walls/wall_icon.dm @@ -77,8 +77,8 @@ for(var/turf/T in orange(src, 1)) var/success = 0 for(var/obj/O in T) - for(var/b_type in blend_objects) - if(istype(O, b_type)) + for(var/blood_type in blend_objects) + if(istype(O, blood_type)) success = TRUE for(var/nb_type in noblend_objects) if(istype(O, nb_type)) diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index ab02bfc69fed..551d2f6b6f12 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -782,6 +782,11 @@ GLOBAL_LIST_EMPTY(roles_with_gear) slot = WEAR_IN_BACK fluff_cost = 4 +/datum/gear/weapon/l54_pistol + display_name = "L54 Pistol" // TWE service pistol - same stats as the m4a3 + path = /obj/item/weapon/gun/pistol/l54 + allowed_origins = USCM_ORIGINS + /datum/gear/weapon/m4a3_custom display_name = "M4A3 Custom Pistol" path = /obj/item/weapon/gun/pistol/m4a3/custom @@ -1329,6 +1334,13 @@ GLOBAL_LIST_EMPTY(roles_with_gear) display_name = "Suntex-Sightware rounded shades, bloodred" path = /obj/item/clothing/glasses/sunglasses/hippie/bloodred +// Headband + +/datum/gear/civilian/headwear/headband_rebel + display_name = "CLF headband" + path = /obj/item/clothing/head/headband/rebel + fluff_cost = 2 + // Civilian shoes /datum/gear/civilian/shoes diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 865c18fe73df..a519b30a1375 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -692,7 +692,7 @@ S["underwear"] >> underwear S["undershirt"] >> undershirt S["backbag"] >> backbag - //S["b_type"] >> b_type + //S["blood_type"] >> blood_type //Jobs S["alternate_option"] >> alternate_option @@ -780,7 +780,7 @@ backbag = sanitize_integer(backbag, 1, length(GLOB.backbaglist), initial(backbag)) preferred_armor = sanitize_inlist(preferred_armor, GLOB.armor_style_list, "Random") night_vision_preference = sanitize_inlist(night_vision_preference, GLOB.nvg_color_list, "Green") - //b_type = sanitize_text(b_type, initial(b_type)) + //blood_type = sanitize_text(blood_type, initial(blood_type)) alternate_option = sanitize_integer(alternate_option, 0, 3, initial(alternate_option)) if(!job_preference_list) @@ -852,7 +852,7 @@ S["underwear"] << underwear S["undershirt"] << undershirt S["backbag"] << backbag - //S["b_type"] << b_type + //S["blood_type"] << blood_type S["spawnpoint"] << spawnpoint //Jobs diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm index d56aa01fa231..60414fce7c78 100644 --- a/code/modules/clothing/head/head.dm +++ b/code/modules/clothing/head/head.dm @@ -307,6 +307,10 @@ icon = 'icons/obj/items/clothing/hats/hats_by_faction/CLF.dmi' item_icons = list( WEAR_HEAD = 'icons/mob/humans/onmob/clothing/head/hats_by_faction/CLF.dmi', + WEAR_AS_GARB = 'icons/mob/humans/onmob/clothing/helmet_garb/headbands.dmi', + ) + item_state_slots = list( + WEAR_AS_GARB = "headbandrebel", // will be prefixed with either hat_ or helmet_ ) item_state_slots = null flags_atom = NO_GAMEMODE_SKIN @@ -1142,3 +1146,13 @@ GLOBAL_LIST_INIT(allowed_hat_items, list( /obj/item/clothing/head/beret/royal_marine/team_leader icon_state = "rmc_beret_tl" item_state = "rmc_beret_tl" + +/obj/item/clothing/head/beret/iasf_commander_cap + name = "IASF officer's service cap" + desc = "A distinguished service cap worn by officers of the Imperial Armed Space Force. Featuring a crimson band, gold IASF emblem, and a black patent peak, it reflects the discipline and authority of the Empire’s airborne command." + icon = 'icons/obj/items/clothing/hats/hats_by_faction/TWE.dmi' + item_icons = list( + WEAR_HEAD = 'icons/mob/humans/onmob/clothing/head/hats_by_faction/TWE.dmi' + ) + icon_state = "iasf_co_cap" + item_state = "iasf_co_cap" diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index ddc69db3f995..fd92c3f0ef60 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -306,6 +306,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/headband/brown = PREFIX_HELMET_GARB_OVERRIDE, // helmet_ /obj/item/clothing/head/headband/gray = PREFIX_HELMET_GARB_OVERRIDE, // helmet_ /obj/item/clothing/head/headband/squad = PREFIX_HELMET_GARB_OVERRIDE, // helmet_ + /obj/item/clothing/head/headband/rebel = PREFIX_HELMET_GARB_OVERRIDE, // helmet_ /obj/item/tool/candle = NO_GARB_OVERRIDE, /obj/item/clothing/mask/facehugger = NO_GARB_OVERRIDE, /obj/item/clothing/mask/facehugger/lamarr = NO_GARB_OVERRIDE, @@ -1742,6 +1743,48 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( start_down_visor_type = /obj/item/device/helmet_visor/medical camera_factions = FACTION_LIST_TWE +/obj/item/clothing/head/helmet/marine/veteran/royal_marine/generic + name = "\improper L1 ballistic helmet" + desc = "A versatile ballistic helmet designed by Alphatech for general use across various branches of the TWE military and affiliated organizations. Drawing some design inspiration from the USCM’s M10 Pattern Helmet, the L1 offers reliable protection against shrapnel and ballistic threats." + icon_state = "generic_helm" + item_state = "generic_helm" + flags_marine_helmet = HELMET_GARB_OVERLAY + +/obj/item/clothing/head/helmet/marine/veteran/royal_marine/pilot + name = "\improper PH-4 'Spitfire' flight helmet" + desc = "Standard flight helmet used across the Three World Empire’s aerospace forces, from fighter pilots to atmospheric crews. This PH-4 variant is tailored for dropship operations in space, featuring reinforced plating, HUD optics, and encrypted comms. Essential for high-risk insertions, landings, and exfil missions. Nicknamed “Spitfire” for its reliability under fire." + icon_state = "pilot_helm" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_HIGH + min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT + flags_inventory = BLOCKSHARPOBJ + flags_inv_hide = HIDEALLHAIR + +/obj/item/clothing/head/helmet/marine/veteran/royal_marine/pilot/alt + icon_state = "pilot_helm_alt" + +/obj/item/clothing/head/helmet/marine/veteran/iasf_beret + name = "\improper IASF beret" + desc = "A distinctive crimson beret worn by the Imperial Armed Space Force. Reinforced with flexible Kevlar, it offers minimal protection while maintaining a traditional and respected appearance." + icon_state = "beret_iasf" + item_state = "beret_iasf" + icon = 'icons/obj/items/clothing/hats/hats_by_faction/TWE.dmi' + item_icons = list( + WEAR_HEAD = 'icons/mob/humans/onmob/clothing/head/hats_by_faction/TWE.dmi', + ) + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT + flags_inventory = BLOCKSHARPOBJ + flags_inv_hide = NO_FLAGS + flags_marine_helmet = NO_FLAGS + +/obj/item/clothing/head/helmet/marine/veteran/iasf_beret/tl + icon_state = "beret_iasf_tl" + item_state = "beret_iasf_tl" /obj/item/clothing/head/helmet/marine/veteran/royal_marine/breacher name = "\improper L5A3 ballistic helmet" diff --git a/code/modules/clothing/hybrisa_clothing.dm b/code/modules/clothing/hybrisa_clothing.dm index 39c2e705013c..ceaea14249c7 100644 --- a/code/modules/clothing/hybrisa_clothing.dm +++ b/code/modules/clothing/hybrisa_clothing.dm @@ -1028,8 +1028,8 @@ new /obj/item/clothing/suit/armor/vest/hybrisa/nspa_vest(src) new /obj/item/clothing/under/hybrisa/nspa_officer(src) new /obj/item/storage/backpack/security(src) - new /obj/item/storage/belt/security(src) new /obj/item/clothing/shoes/jackboots(src) + new /obj/item/storage/belt/gun/l54(src) // Miner Closet @@ -1082,6 +1082,11 @@ armor_rad = CLOTHING_ARMOR_NONE armor_internaldamage = CLOTHING_ARMOR_LOW +/obj/item/clothing/under/hybrisa/nspa_officer/warm_weather + desc = "A short-sleeved olive-green button-up shirt with matching trousers and black webbing straps; a standard NSPA warm weather patrol uniform, issued for use in hotter climates across the Neroid Sector, inspired by historic colonial policing attire for a practical yet sharp look." + icon_state = "nspa_police_warm" + worn_state = "nspa_police_warm" + // Suits & Armor /obj/item/clothing/suit/armor/vest/hybrisa/nspa_vest diff --git a/code/modules/clothing/masks/breath.dm b/code/modules/clothing/masks/breath.dm index 1cb46179fe56..3b2d1022a5fe 100644 --- a/code/modules/clothing/masks/breath.dm +++ b/code/modules/clothing/masks/breath.dm @@ -446,6 +446,11 @@ item_state = "neckerchief_black" original_state = "neckerchief_black" +/obj/item/clothing/mask/neckerchief/brown + icon_state = "neckerchief_brown" + item_state = "neckerchief_brown" + original_state = "neckerchief_brown" + /obj/item/clothing/mask/owlf_mask name = "\improper OWLF gas mask" desc = "A close-fitting mask that can be connected to an air supply." diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index 221180fdc591..9d4766973305 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -268,7 +268,7 @@ //=ROYAL MARINES=\\ -/obj/item/clothing/shoes/royal_marine +/obj/item/clothing/shoes/marine/royal_marine name = "\improper L10 pattern combat boots" desc = "Standard issue combat boots for combat scenarios or combat situations. Used by the three world empires royal marines commando units." icon_state = "rmc_boots" @@ -295,7 +295,7 @@ ) flags_atom = NO_NAME_OVERRIDE -/obj/item/clothing/shoes/royal_marine/knife +/obj/item/clothing/shoes/marine/royal_marine/knife spawn_item_type = /obj/item/attachable/bayonet/rmc /obj/item/clothing/shoes/dress/rmc diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm index 9c80fa60b536..1a6c22ca3d60 100644 --- a/code/modules/clothing/suits/marine_armor/ert.dm +++ b/code/modules/clothing/suits/marine_armor/ert.dm @@ -874,7 +874,52 @@ /atom/movable/marine_light light_system = DIRECTIONAL_LIGHT +//======================//=IASF=\\==============================\\ +//===============================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf + + name = "goshawk airborne vest" + desc = "A lightweight, high-mobility flak vest designed for the Imperial Armed Space Force’s airborne troops. Developed by Alphatech, the Goshawk offers crucial protection while ensuring paratroopers retain full freedom of movement during high-risk insertions. Advanced composite plating and reinforced webbing make it effective against shrapnel and small-arms fire, striking the perfect balance between defense and agility for those who strike fast and strike hard." + icon_state = "iasf_light" + item_state = "iasf_light" + storage_slots = 3 + + armor_melee = CLOTHING_ARMOR_MEDIUMLOW // Goon stats + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + + flags_armor_protection = (BODY_FLAG_CHEST) + flags_cold_protection = (BODY_FLAG_CHEST) + flags_heat_protection = (BODY_FLAG_CHEST) + + slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT // Gotta go fast + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf/synth + + name = "goshawk airborne synthetic vest" + desc = "A lightweight, high-mobility flak vest designed for the Imperial Armed Space Force’s airborne troops. Developed by Alphatech, the Goshawk offers crucial protection while ensuring paratroopers retain full freedom of movement during high-risk insertions. Advanced composite plating and reinforced webbing make it effective against shrapnel and small-arms fire, striking the perfect balance between defense and agility for those who strike fast and strike hard." + icon_state = "iasf_light" + item_state = "iasf_light" + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + storage_slots = 4 + slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT + flags_marine_armor = parent_type::flags_marine_armor|SYNTH_ALLOWED + //CBRN + /obj/item/clothing/suit/storage/marine/cbrn name = "\improper M3-M armor" desc = "While lacking the appearance of the M3 pattern armor worn in regular service, this armor piece is still a derivative of it. It has been heavily modified to fit over the MOPP suit with additional padding and Venlar composite layers removed, so as not to restrict the wearer’s movement. However, with the reduction of composite layers, the personal protection offered is less than desired with complaints having been lodged since 2165." diff --git a/code/modules/clothing/suits/marine_coat.dm b/code/modules/clothing/suits/marine_coat.dm index 27c275ab6d46..7a8c5fabed06 100644 --- a/code/modules/clothing/suits/marine_coat.dm +++ b/code/modules/clothing/suits/marine_coat.dm @@ -527,3 +527,57 @@ item_icons = list( WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi' ) + +// TWE - IASF - Imperial Armed Space Force + +/obj/item/clothing/suit/storage/jacket/marine/rmc/service/iasf_co + name = "\improper IASF Commanding Officer’s service jacket" + desc = "A service jacket typically worn by Commanding Officers of the IASF. Reinforced with lightweight Kevlar shards, it offers limited protection against stabbing weapons and small arms fire while maintaining a formal yet practical design for airborne leadership in the field." + icon_state = "iasf_service_co" + has_buttons = FALSE + +/obj/item/clothing/suit/storage/jacket/marine/rmc/service/iasf_co/alt + icon_state = "iasf_service_co_alt" + +/obj/item/clothing/suit/storage/jacket/marine/rmc/service/iasf_combat_jacket + name = "\improper IASF combat jacket" + desc = "A rugged, all-weather combat jacket issued to the Imperial Armed Space Force. Designed for versatility, it serves as both a field garment and a lightweight layer of protection. Reinforced with ballistic fibers and treated for weather resistance, it offers limited defense against shrapnel and small arms fire while keeping paratroopers comfortable in harsh conditions. Its deep green color and durable fabric make it a staple for both active deployment and off-duty wear." + has_buttons = TRUE + icon_state = "iasf_jacket" + initial_icon_state = "iasf_jacket" + icon = 'icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi' + ) + + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_ARMS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_ARMS + + allowed = list ( + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/mateba, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/weapon/gun, + + /obj/item/device/flashlight, + /obj/item/device/healthanalyzer, + /obj/item/device/radio, + /obj/item/tank/emergency_oxygen, + /obj/item/tool/crowbar, + /obj/item/tool/crew_monitor, + /obj/item/tool/pen, + /obj/item/storage/large_holster/machete, + /obj/item/storage/large_holster/katana, + /obj/item/device/motiondetector, + ) + min_cold_protection_temperature = T0C + siemens_coefficient = 0.7 + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index 8d6985c2a9b0..e87835c79847 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -1830,7 +1830,7 @@ ) icon_state = "rmc_uniform" worn_state = "rmc_uniform" - flags_atom = NO_NAME_OVERRIDE|NO_GAMEMODE_SKIN + flags_atom = FPRINT|NO_NAME_OVERRIDE|NO_GAMEMODE_SKIN /obj/item/clothing/under/marine/veteran/royal_marine/tl icon_state = "rmc_uniform_teaml" @@ -1851,11 +1851,28 @@ ) icon_state = "rmc_uniform_service" worn_state = "rmc_uniform_service" + flags_atom = FPRINT|NO_NAME_OVERRIDE|NO_GAMEMODE_SKIN /obj/item/clothing/under/marine/officer/royal_marine/black icon_state = "rmc_uniform_service_alt" worn_state = "rmc_uniform_service_alt" +// IASF + +/obj/item/clothing/under/marine/veteran/royal_marine/iasf + name = "IASF No.8 combat uniform" + desc = "Standard issue No.8 Pattern BDU used by the Imperial Armed Space Force. Identical in cut and protection to the Royal Marine Commando variant, but issued in woodland camouflage. Lightweight Kevlar mesh offers limited protection against shrapnel and close-quarters threats." + icon_state = "iasf_uniform" + worn_state = "iasf_uniform" + +/obj/item/clothing/under/marine/officer/royal_marine/iasf + name = "IASF No.2 service uniform" + desc = "A formal No.2 service uniform worn by IASF officers. Features the same upper torso cut as the No.8 BDU, but paired with pressed khaki trousers. Issued for inspections, ceremonial duties, or when deployed in an advisory role." + icon_state = "iasf_uniform_service" + worn_state = "iasf_uniform_service" + +// CBRN + /obj/item/clothing/under/marine/cbrn //CBRN MOPP suit name = "\improper M3 MOPP suit" desc = "M3 MOPP suits are specially designed and engineered to protect the wearer from unshielded exposure to any Chemical, Biological, Radiological, or Nuclear (CBRN) threats in the field. The suit has a recommended lifespan of twenty-four hours once contact with a toxic environment is made, but depending on the severity this can be shortened to eight hours or less." diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm index 0052dc72e7b6..b8b32df00a13 100644 --- a/code/modules/clothing/under/ties.dm +++ b/code/modules/clothing/under/ties.dm @@ -816,6 +816,12 @@ icon_state = "webbing_black" item_state = "webbing_black" +/obj/item/clothing/accessory/storage/webbing/iasf + name = "IASF airborne webbing" + desc = "A durable harness system issued to IASF airborne forces, designed to distribute weight evenly for comfort and mobility. Fitted with reinforced pouches for carrying essential gear during high-risk insertions." + icon_state = "webbing_twe" + item_state = "webbing_twe" + /obj/item/clothing/accessory/storage/webbing/five_slots hold = /obj/item/storage/internal/accessory/webbing/five_slots diff --git a/code/modules/cm_aliens/XenoStructures.dm b/code/modules/cm_aliens/XenoStructures.dm index a3fff8ce0b36..966727fd7207 100644 --- a/code/modules/cm_aliens/XenoStructures.dm +++ b/code/modules/cm_aliens/XenoStructures.dm @@ -1167,6 +1167,8 @@ for(var/mob/living/carbon/xenomorph/candidate in votes) if(votes[candidate] > primary_votes) + secondary_votes = primary_votes + secondary_candidate = primary_candidate primary_votes = votes[candidate] primary_candidate = candidate else if(votes[candidate] > secondary_votes) diff --git a/code/modules/cm_aliens/structures/fruit.dm b/code/modules/cm_aliens/structures/fruit.dm index 650706472bf0..daabc45c4874 100644 --- a/code/modules/cm_aliens/structures/fruit.dm +++ b/code/modules/cm_aliens/structures/fruit.dm @@ -46,18 +46,18 @@ new_fruit.color = n_color user.put_in_hands(new_fruit) -/obj/effect/alien/resin/fruit/Initialize(mapload, obj/effect/alien/weeds/W, mob/living/carbon/xenomorph/X) - if(!istype(X)) +/obj/effect/alien/resin/fruit/Initialize(mapload, obj/effect/alien/weeds/weed, mob/living/carbon/xenomorph/xeno) + if(!istype(xeno)) return INITIALIZE_HINT_QDEL - bound_xeno = X - bound_weed = W - hivenumber = X.hivenumber - RegisterSignal(W, COMSIG_PARENT_QDELETING, PROC_REF(on_weed_expire)) - RegisterSignal(X, COMSIG_PARENT_QDELETING, PROC_REF(handle_xeno_qdel)) + bound_xeno = xeno + bound_weed = weed + hivenumber = xeno.hivenumber + RegisterSignal(weed, COMSIG_PARENT_QDELETING, PROC_REF(on_weed_expire)) + RegisterSignal(xeno, COMSIG_PARENT_QDELETING, PROC_REF(handle_xeno_qdel)) set_hive_data(src, hivenumber) //Keep timer value here - timer_id = addtimer(CALLBACK(src, PROC_REF(mature)), time_to_mature * W.fruit_growth_multiplier, TIMER_UNIQUE | TIMER_STOPPABLE) + timer_id = addtimer(CALLBACK(src, PROC_REF(mature)), time_to_mature * weed.fruit_growth_multiplier, TIMER_UNIQUE | TIMER_STOPPABLE) . = ..() // Need to do it here because baseline initialize override the icon through config. icon = 'icons/mob/xenos/fruits.dmi' @@ -94,7 +94,7 @@ . = ..() /obj/effect/alien/resin/fruit/proc/reduce_timer(maturity_increase) - if (mature || timer_id == TIMER_ID_NULL) + if(mature || timer_id == TIMER_ID_NULL) return // Unconditionally delete the first timer @@ -103,7 +103,7 @@ timer_id = TIMER_ID_NULL // Are we done, or do we need to add a new timer - if ((timeleft - maturity_increase) < 0) + if((timeleft - maturity_increase) < 0) mature() else // Restart the timer. @@ -123,7 +123,8 @@ /obj/effect/alien/resin/fruit/proc/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature) // Someone might've eaten it before us! recipient.gain_health(75) - to_chat(recipient, SPAN_XENONOTICE("We recover a bit from our injuries.")) + to_chat(recipient, SPAN_XENOBOLDNOTICE("We recover a bit from our injuries.")) + recipient.balloon_alert(recipient, "we feel our wounds getting quickly mended!", text_color = "#17991B") if(do_consume) finish_consume(recipient) @@ -183,21 +184,26 @@ if(!picked) to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We sense one of our fruit has been destroyed.")) bound_xeno.current_fruits.Remove(src) - - var/number_of_fruit = length(bound_xeno.current_fruits) - var/datum/action/xeno_action/onclick/plant_resin_fruit/plant_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) - plant_action.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) - plant_action.update_button_icon() - bound_xeno = null return ..() +/obj/effect/alien/resin/fruit/lesser + desc = "A strange green-ish fruit-looking thing." + fruit_type = /obj/item/reagent_container/food/snacks/resin_fruit/lesser + +/obj/effect/alien/resin/fruit/lesser/get_examine_text(mob/user) //Need new subtype, so text dont get carried to other subtypes from parent. + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("A volleyball sized resin growth. Its translucent insides radiate faint green light. It appears to be loosely attached to the weeds below.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will instantly restore [SPAN_BOLDNOTICE("75")] health. It provides no regeneration over time.")]" + //Greater /obj/effect/alien/resin/fruit/greater name = XENO_FRUIT_GREATER - desc = "A fruit that can be eaten to immediately recover health, and give a strong regeneration effect for a few seconds." + desc = "A strange green-ish fruit-looking thing." time_to_mature = 30 SECONDS heal_amount = 75 regeneration_amount_total = 100 @@ -212,16 +218,24 @@ return if(recipient && !QDELETED(recipient)) recipient.gain_health(heal_amount) - to_chat(recipient, SPAN_XENONOTICE("We recover a bit from our injuries, and begin to regenerate rapidly.")) - // Every second, heal him for 15. + //Every second, heal them for 20. new /datum/effects/heal_over_time(recipient, regeneration_amount_total, regeneration_ticks, 1) + to_chat(recipient, SPAN_XENOBOLDNOTICE("We recover a bit from our injuries, and begin to regenerate rapidly.")) + recipient.balloon_alert(recipient, "our flesh mends, and the regeneration quickens!", text_color = "#17991B") if(do_consume) finish_consume(recipient) +/obj/effect/alien/resin/fruit/greater/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("A basketball sized resin growth. Its translucent insides radiate faint green light. It appears to be loosely attached to the weeds below.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will instantly restore [SPAN_BOLDNOTICE("75")] health, then regenerate [SPAN_BOLDNOTICE("20")] health per second, totaling to [SPAN_BOLDNOTICE("100")] health over [SPAN_BOLDNOTICE("5")] seconds.")]" + //Unstable /obj/effect/alien/resin/fruit/unstable name = XENO_FRUIT_UNSTABLE - desc = "A fruit that can be eaten to gain a strong overshield effect, and give a small regeneration for several seconds." + desc = "A strange turquoise fruit-looking thing." time_to_mature = 45 SECONDS heal_amount = 0 regeneration_amount_total = 75 @@ -240,15 +254,23 @@ /obj/effect/alien/resin/fruit/unstable/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && !QDELETED(recipient)) recipient.add_xeno_shield(clamp(overshield_amount, 0, recipient.maxHealth * 0.3), XENO_SHIELD_SOURCE_GARDENER, duration = shield_duration, decay_amount_per_second = shield_decay) - to_chat(recipient, SPAN_XENONOTICE("We feel our defense being bolstered, and begin to regenerate rapidly.")) - // Every seconds, heal him for 5. + //Every second, heal them for 5. new /datum/effects/heal_over_time(recipient, regeneration_amount_total, regeneration_ticks, 1) + to_chat(recipient, SPAN_XENOBOLDNOTICE("We feel our defense being bolstered, and begin to slowly regenerate.")) + recipient.balloon_alert(recipient, "our regeneration quickens and carapace thickens!", text_color = "#179973") if(do_consume) finish_consume(recipient) +/obj/effect/alien/resin/fruit/unstable/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("A basketball sized resin growth. Its translucent insides radiate faint turquoise light. It appears to be loosely attached to the weeds below.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will grant an [SPAN_BOLDNOTICE("overshield")] equal to [SPAN_BOLDNOTICE("30%")] of our max health, capped at [SPAN_BOLDNOTICE("200")]. After [SPAN_BOLDNOTICE("60")] seconds the shield starts to decay by [SPAN_BOLDNOTICE("10")] per second. We also regenerate [SPAN_BOLDNOTICE("75")] health across [SPAN_BOLDNOTICE("15")] seconds, healing [SPAN_BOLDNOTICE("5")] per second.")]" + //Spore /obj/effect/alien/resin/fruit/spore - desc = "A fruit that can be eaten to reenergize cooldowns. It also passively emits weak recovery pheromones." + desc = "A strange bonsai-tree looking thing, with three small orange glowing sacs, hanging on the weird branches." name = XENO_FRUIT_SPORE time_to_mature = 15 SECONDS icon_state = "fruit_spore_immature" @@ -266,11 +288,12 @@ /obj/effect/alien/resin/fruit/spore/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && !QDELETED(recipient)) mature = FALSE - for (var/datum/effects/gain_xeno_cooldown_reduction_on_slash/E in recipient.effects_list) + for(var/datum/effects/gain_xeno_cooldown_reduction_on_slash/E in recipient.effects_list) if(E.effect_source == "spore") qdel(E) - new /datum/effects/gain_xeno_cooldown_reduction_on_slash(recipient, bound_xeno, max_cooldown_reduction, cooldown_per_slash, 60 SECONDS, "spore") - to_chat(recipient, SPAN_XENONOTICE("We feel a frenzy coming onto us! Our abilities will cool off faster as we slash!")) + new /datum/effects/gain_xeno_cooldown_reduction_on_slash(recipient, bound_xeno, max_cooldown_reduction, cooldown_per_slash, 90 SECONDS, "spore") + to_chat(recipient, SPAN_XENOBOLDNOTICE("We feel a frenzy coming onto us! Our abilities will cool off faster as we slash!")) + recipient.balloon_alert(recipient, "we feel a frenzy coming onto us!", text_color = "#994617", delay = 1 SECONDS) if(do_consume) finish_consume(recipient) @@ -290,9 +313,16 @@ if(aura_strength > Z.recovery_new && hivenumber == Z.hivenumber) Z.recovery_new = aura_strength +/obj/effect/alien/resin/fruit/spore/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("A basketball sized resin growth. Its translucent insides radiate faint orange light. It appears to be loosely attached to the weeds below.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will reduce ability cooldown by [SPAN_BOLDNOTICE("5%")] per slash, up to [SPAN_BOLDNOTICE("25%")] on next ability cast. The casting cooldown effect of fruit persist for [SPAN_BOLDNOTICE("90")] seconds. While rooted, it passively emits weak recovery pheromones around itself.")]" + /obj/effect/alien/resin/fruit/speed name = XENO_FRUIT_SPEED - desc = "A fruit that can be eaten to move faster for a short amount of time." + desc = "A strange purple-ish fruit-looking thing." time_to_mature = 35 SECONDS icon_state = "fruit_speed_immature" mature_icon_state = "fruit_speed" @@ -312,20 +342,29 @@ /obj/effect/alien/resin/fruit/speed/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && !QDELETED(recipient)) - to_chat(recipient, SPAN_XENONOTICE("The [name] invigorates us to move faster!")) - new /datum/effects/xeno_speed(recipient, ttl = speed_duration, set_speed_modifier = speed_buff_amount, set_modifier_source = XENO_FRUIT_SPEED, set_end_message = SPAN_XENONOTICE("We feel the effects of the [name] wane...")) + new /datum/effects/xeno_speed(recipient, ttl = speed_duration, set_speed_modifier = speed_buff_amount, set_modifier_source = XENO_FRUIT_SPEED, set_end_message = SPAN_XENOWARNING("We feel the effects of the [name] wane...")) + to_chat(recipient, SPAN_XENOBOLDNOTICE("The [name] invigorates us to move faster!")) + recipient.balloon_alert(recipient, "we feel invigorated to run faster!", text_color = "#5B248C", delay = 1 SECONDS) if(do_consume) finish_consume(recipient) +/obj/effect/alien/resin/fruit/speed/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("A basketball sized resin growth. Its translucent insides radiate faint purple light. It appears to be loosely attached to the weeds below.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will increase our speed by [SPAN_BOLDNOTICE("+40%")]. The effect lasts for [SPAN_BOLDNOTICE("15")] seconds.")]" + /obj/effect/alien/resin/fruit/plasma name = XENO_FRUIT_PLASMA - desc = "A fruit that can be eaten to boost plasma generation." + desc = "A strange blue-ish fruit-looking thing." time_to_mature = 25 SECONDS icon_state = "fruit_plasma_immature" mature_icon_state = "fruit_plasma" consumed_icon_state = "fruit_spent_2" flags = CAN_CONSUME_AT_FULL_HEALTH fruit_type = /obj/item/reagent_container/food/snacks/resin_fruit/plasma + glow_color = "#1e6072" gardener_sac_color = "#287A90" var/plasma_amount = 240 var/plasma_time = 15 @@ -333,14 +372,22 @@ /obj/effect/alien/resin/fruit/plasma/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && recipient.plasma_max > 0 && !QDELETED(recipient)) - to_chat(recipient, SPAN_XENONOTICE("The [name] boosts our plasma regeneration!")) - // with the current values (240, 15, 3), this will give the recipient 48 plasma every 3 seconds, for a total of 240 in 15 seconds + //With the current values (240, 15, 3), this will give the recipient 48 plasma every 3 seconds, for a total of 240 in 15 seconds. new /datum/effects/plasma_over_time(recipient, plasma_amount, plasma_time, time_between_plasmas) + to_chat(recipient, SPAN_XENOBOLDNOTICE("The [name] boosts our plasma regeneration!")) + recipient.balloon_alert(recipient, "we feel our plasma rapidly regenerate!", text_color = "#287A90") if(do_consume) finish_consume(recipient) #undef CAN_CONSUME_AT_FULL_HEALTH +/obj/effect/alien/resin/fruit/plasma/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("A basketball sized resin growth. Its translucent insides radiate faint blue light. It appears to be loosely attached to the weeds below.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense that eating this fruit will regenerate [SPAN_BOLDNOTICE("48")] plasma every [SPAN_BOLDNOTICE("3")] seconds, up to a total of [SPAN_BOLDNOTICE("240")] plasma.")]" + /obj/item/reagent_container/food/snacks/resin_fruit name = XENO_FRUIT_LESSER desc = "A strange fruit that you could eat... if you REALLY wanted to. Its roots seem to twitch every so often." @@ -348,6 +395,7 @@ icon_state = "fruit_lesser_item" w_class = SIZE_MEDIUM storage_cost = SIZE_LARGE + layer = BUSH_LAYER bitesize = 2 var/mob/living/carbon/xenomorph/bound_xeno //Drone linked to this fruit var/fruit_type = /obj/effect/alien/resin/fruit @@ -359,11 +407,11 @@ pixel_x = 0 pixel_y = 0 -/obj/item/reagent_container/food/snacks/resin_fruit/proc/link_xeno(mob/living/carbon/xenomorph/X) - to_chat(X, SPAN_XENOHIGHDANGER("One of our resin fruits has been picked.")) - X.current_fruits.Add(src) - bound_xeno = X - RegisterSignal(X, COMSIG_PARENT_QDELETING, PROC_REF(handle_xeno_qdel)) +/obj/item/reagent_container/food/snacks/resin_fruit/proc/link_xeno(mob/living/carbon/xenomorph/xeno) + to_chat(xeno, SPAN_XENOHIGHDANGER("One of our resin fruits has been picked.")) + xeno.current_fruits.Add(src) + bound_xeno = xeno + RegisterSignal(xeno, COMSIG_PARENT_QDELETING, PROC_REF(handle_xeno_qdel)) /obj/item/reagent_container/food/snacks/resin_fruit/proc/handle_xeno_qdel() SIGNAL_HANDLER @@ -377,10 +425,6 @@ /obj/item/reagent_container/food/snacks/resin_fruit/proc/delete_fruit() if(bound_xeno) bound_xeno.current_fruits.Remove(src) - var/datum/action/xeno_action/onclick/plant_resin_fruit/prf = get_action(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) - var/number_of_fruit = length(bound_xeno.current_fruits) - prf.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) - prf.update_button_icon() bound_xeno = null // Xenos eating fruit @@ -411,7 +455,12 @@ SPAN_HELPFUL("[user] starts feeding you [current_fruit]."), SPAN_NOTICE("[user] starts [user == affected_xeno ? "eating" : "feeding [affected_xeno]"] [current_fruit].")) - if(!do_after(user, consume_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, affected_xeno, INTERRUPT_MOVED, BUSY_ICON_MEDICAL)) + var/pick_delay = consume_delay + var/mob/living/carbon/xenomorph/x_user = user + if(istype(x_user.strain, /datum/xeno_strain/gardener)) + pick_delay /= 2 + + if(!do_after(user, pick_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, affected_xeno, INTERRUPT_MOVED, BUSY_ICON_MEDICAL)) return FALSE cant_consume = current_fruit.prevent_consume(affected_xeno) @@ -443,10 +492,10 @@ reagents.add_reagent("fruit_resin", 30) /obj/effect/alien/resin/fruit/MouseDrop(atom/over_object) - var/mob/living/carbon/xenomorph/X = over_object - if(!istype(X) || !Adjacent(X) || X != usr || X.is_mob_incapacitated() || X.body_position == LYING_DOWN) + var/mob/living/carbon/xenomorph/xeno = over_object + if(!istype(xeno) || !Adjacent(xeno) || xeno != usr || xeno.is_mob_incapacitated() || xeno.body_position == LYING_DOWN) return ..() - X.pickup_fruit(src) + xeno.pickup_fruit(src) // Handles xenos picking up fruit /mob/living/carbon/xenomorph/proc/pickup_fruit(obj/effect/alien/resin/fruit/F) @@ -463,7 +512,10 @@ return // Indicates the fruit is being picked, so other xenos can't eat it at the same time F.picked = TRUE - if(!do_after(src, F.consume_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) + var/pick_delay = F.consume_delay + if(istype(src.strain, /datum/xeno_strain/gardener)) + pick_delay /= 2 //Decrease time by half, if strain is gardener + if(!do_after(src, pick_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) F.picked = FALSE return if(!F.mature) @@ -486,6 +538,16 @@ to_chat(src, SPAN_XENODANGER("We are too small to pick up \the [F]!")) return +/obj/item/reagent_container/food/snacks/resin_fruit/lesser + fruit_type = /obj/effect/alien/resin/fruit/lesser + +/obj/item/reagent_container/food/snacks/resin_fruit/lesser/get_examine_text(mob/user) //Need new subtype, so text dont get carried to other subtypes from parent. + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("It looks unappetizing... maybe the eggheads would want to study it instead.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will instantly restore [SPAN_BOLDNOTICE("75")] health. It provides no regeneration over time.")]" + /obj/item/reagent_container/food/snacks/resin_fruit/greater name = XENO_FRUIT_GREATER desc = "A strange large fruit that you could eat... if you REALLY wanted to. Its roots seem to twitch every so often." @@ -496,6 +558,13 @@ /obj/item/reagent_container/food/snacks/resin_fruit/greater/add_juice() reagents.add_reagent("fruit_resin", 60) +/obj/item/reagent_container/food/snacks/resin_fruit/greater/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("It looks unappetizing... maybe the eggheads would want to study it instead.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will instantly restore [SPAN_BOLDNOTICE("75")] health, then regenerate [SPAN_BOLDNOTICE("20")] health per second, totaling to [SPAN_BOLDNOTICE("100")] health over [SPAN_BOLDNOTICE("5")] seconds.")]" + /obj/item/reagent_container/food/snacks/resin_fruit/unstable name = XENO_FRUIT_UNSTABLE desc = "A strange volatile fruit that you could eat... if you REALLY wanted to. Its roots seem to twitch every so often." @@ -507,6 +576,13 @@ reagents.add_reagent("fruit_resin", 30) reagents.add_reagent(PLASMA_CHITIN, 30) +/obj/item/reagent_container/food/snacks/resin_fruit/unstable/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("It looks unappetizing... maybe the eggheads would want to study it instead.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will grant an [SPAN_BOLDNOTICE("overshield")] equal to [SPAN_BOLDNOTICE("30%")] of our max health, capped at [SPAN_BOLDNOTICE("200")]. After [SPAN_BOLDNOTICE("60")] seconds the shield starts to decay by [SPAN_BOLDNOTICE("10")] per second. We also regenerate [SPAN_BOLDNOTICE("75")] health across [SPAN_BOLDNOTICE("15")] seconds, healing [SPAN_BOLDNOTICE("5")] per second.")]" + /obj/item/reagent_container/food/snacks/resin_fruit/spore name = XENO_FRUIT_SPORE desc = "A strange spore-filled fruit that you could eat... if you REALLY wanted to. Its roots seem to twitch every so often." @@ -517,6 +593,13 @@ reagents.add_reagent("fruit_resin", 30) reagents.add_reagent(PLASMA_PHEROMONE, 30) +/obj/item/reagent_container/food/snacks/resin_fruit/spore/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("It looks unappetizing... maybe the eggheads would want to study it instead.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will reduce ability cooldown by [SPAN_BOLDNOTICE("5%")] per slash, up to [SPAN_BOLDNOTICE("25%")] on next ability cast. The casting cooldown effect of fruit persist for [SPAN_BOLDNOTICE("90")] seconds. While rooted, it passively emits weak recovery pheromones around itself.")]" + /obj/item/reagent_container/food/snacks/resin_fruit/speed name = XENO_FRUIT_SPEED desc = "A strange plasma-filled fruit that you could eat... if you REALLY wanted to. Its roots seem to twitch every so often." @@ -527,6 +610,13 @@ reagents.add_reagent("fruit_resin", 30) reagents.add_reagent(PLASMA_CATECHOLAMINE, 30) +/obj/item/reagent_container/food/snacks/resin_fruit/speed/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("It looks unappetizing... maybe the eggheads would want to study it instead.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense eating this fruit will increase our speed by [SPAN_BOLDNOTICE("+40%")]. The effect lasts for [SPAN_BOLDNOTICE("15")] seconds.")]" + /obj/item/reagent_container/food/snacks/resin_fruit/plasma name = XENO_FRUIT_PLASMA icon_state = "fruit_plasma_item" @@ -535,3 +625,10 @@ /obj/item/reagent_container/food/snacks/resin_fruit/plasma/add_juice() reagents.add_reagent("fruit_resin", 30) reagents.add_reagent(PLASMA_PURPLE, 30) + +/obj/item/reagent_container/food/snacks/resin_fruit/plasma/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "[SPAN_NOTICE("It looks unappetizing... maybe the eggheads would want to study it instead.")]" + if(isxeno(user) || isobserver(user)) + . += "[SPAN_NOTICE("We sense that eating this fruit will regenerate [SPAN_BOLDNOTICE("48")] plasma every [SPAN_BOLDNOTICE("3")] seconds, up to a total of [SPAN_BOLDNOTICE("240")] plasma.")]" diff --git a/code/modules/cm_marines/equipment/mortar/mortars.dm b/code/modules/cm_marines/equipment/mortar/mortars.dm index 4af5ebf1ada3..99dd36b20548 100644 --- a/code/modules/cm_marines/equipment/mortar/mortars.dm +++ b/code/modules/cm_marines/equipment/mortar/mortars.dm @@ -35,9 +35,9 @@ /// if true, blows up the shell immediately var/ship_side = FALSE /// The max range the mortar can fire at - var/max_range = 75 + var/max_range = 64 /// The min range the mortar can fire at - var/min_range = 25 + var/min_range = 15 /// True if in lase mode, else in coordinate mode var/lase_mode = FALSE /// Used for lase mode aiming, busy but not used by someone else. diff --git a/code/modules/cm_preds/yaut_bracers.dm b/code/modules/cm_preds/yaut_bracers.dm index 2f3eba3c26bc..4ad0413541ba 100644 --- a/code/modules/cm_preds/yaut_bracers.dm +++ b/code/modules/cm_preds/yaut_bracers.dm @@ -195,7 +195,7 @@ to_chat(user, SPAN_NOTICE("You press a few buttons...")) //Add a little delay so the user wouldn't be just spamming all the buttons user.next_move = world.time + 3 - if(do_after(usr, 3, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, numticks = 1)) + if(do_after(user, 3, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, numticks = 1)) if(prob(randomProbability)) return activate_random_verb(user) if(!prob(workingProbability)) @@ -373,28 +373,28 @@ . = ..() //We use this to activate random verbs for non-Yautja -/obj/item/clothing/gloves/yautja/hunter/proc/activate_random_verb(mob/caller) +/obj/item/clothing/gloves/yautja/hunter/proc/activate_random_verb(mob/user) var/option = rand(1, 10) //we have options from 1 to 7, but we're giving the user a higher probability of being punished if they already rolled this bad switch(option) if(1) - . = attachment_internal(caller, TRUE) + . = attachment_internal(user, TRUE) if(2) - . = track_gear_internal(caller, TRUE) + . = track_gear_internal(user, TRUE) if(3) - . = cloaker_internal(caller, TRUE) + . = cloaker_internal(user, TRUE) if(4) - . = caster_internal(caller, TRUE) + . = caster_internal(user, TRUE) if(5) - . = injectors_internal(caller, TRUE) + . = injectors_internal(user, TRUE) if(6) - . = call_disc_internal(caller, TRUE) + . = call_disc_internal(user, TRUE) if(7) - . = translate_internal(caller, TRUE) + . = translate_internal(user, TRUE) if(8) - . = remove_attachment_internal(caller, TRUE) + . = remove_attachment_internal(user, TRUE) else - . = delimb_user(caller) + . = delimb_user(user) //This is used to punish people that fiddle with technology they don't understand /obj/item/clothing/gloves/yautja/hunter/proc/delimb_user(mob/living/carbon/human/user) @@ -561,60 +561,60 @@ set src in usr return attachment_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/attachment_internal(mob/living/carbon/human/caller, forced = FALSE) - if(!caller.loc || caller.is_mob_incapacitated() || !ishuman(caller)) +/obj/item/clothing/gloves/yautja/hunter/proc/attachment_internal(mob/living/carbon/human/user, forced = FALSE) + if(!user.loc || user.is_mob_incapacitated() || !ishuman(user)) return - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return if(bracer_attachment_deployed) - retract_bracer_attachments(caller) + retract_bracer_attachments(user) else - deploy_bracer_attachments(caller) + deploy_bracer_attachments(user) var/datum/action/predator_action/bracer/wristblade/wb_action - for(wb_action as anything in caller.actions) + for(wb_action as anything in user.actions) if(istypestrict(wb_action, /datum/action/predator_action/bracer/wristblade)) wb_action.update_button_icon(bracer_attachment_deployed) break return TRUE -/obj/item/clothing/gloves/yautja/hunter/proc/deploy_bracer_attachments(mob/living/carbon/human/caller) //take the weapons from the attachments in the bracer, and puts them in the callers hand - if(!drain_power(caller, 50)) +/obj/item/clothing/gloves/yautja/hunter/proc/deploy_bracer_attachments(mob/living/carbon/human/user) //take the weapons from the attachments in the bracer, and puts them in the callers hand + if(!drain_power(user, 50)) return if(!left_bracer_attachment && !right_bracer_attachment) - to_chat(caller, SPAN_WARNING("[src] has no bracer attachments!")) + to_chat(user, SPAN_WARNING("[src] has no bracer attachments!")) return if(left_bracer_attachment) - var/obj/limb/left_hand = caller.get_limb("l_hand") - if(!caller.l_hand && left_hand.is_usable()) - if(caller.put_in_l_hand(left_bracer_attachment.attached_weapon)) - to_chat(caller, SPAN_NOTICE("You extend [left_bracer_attachment.attached_weapon].")) + var/obj/limb/left_hand = user.get_limb("l_hand") + if(!user.l_hand && left_hand.is_usable()) + if(user.put_in_l_hand(left_bracer_attachment.attached_weapon)) + to_chat(user, SPAN_NOTICE("You extend [left_bracer_attachment.attached_weapon].")) bracer_attachment_deployed = TRUE playsound(loc,left_bracer_attachment.deployment_sound, 25, TRUE) if(right_bracer_attachment) - var/obj/limb/right_hand = caller.get_limb("r_hand") - if(!caller.r_hand && right_hand.is_usable()) - if(caller.put_in_r_hand(right_bracer_attachment.attached_weapon)) - to_chat(caller, SPAN_NOTICE("You extend [right_bracer_attachment.attached_weapon].")) + var/obj/limb/right_hand = user.get_limb("r_hand") + if(!user.r_hand && right_hand.is_usable()) + if(user.put_in_r_hand(right_bracer_attachment.attached_weapon)) + to_chat(user, SPAN_NOTICE("You extend [right_bracer_attachment.attached_weapon].")) bracer_attachment_deployed = TRUE playsound(loc,right_bracer_attachment.deployment_sound, 25, TRUE) -/obj/item/clothing/gloves/yautja/hunter/proc/retract_bracer_attachments(mob/living/carbon/human/caller) //if the attachments weapon is in the callers hands, retract them back into the attachments - if(left_bracer_attachment && left_bracer_attachment.attached_weapon.loc == caller) - caller.drop_inv_item_to_loc(left_bracer_attachment.attached_weapon, left_bracer_attachment, FALSE, TRUE) - to_chat(caller, SPAN_NOTICE("You retract [left_bracer_attachment.attached_weapon].")) +/obj/item/clothing/gloves/yautja/hunter/proc/retract_bracer_attachments(mob/living/carbon/human/user) //if the attachments weapon is in the callers hands, retract them back into the attachments + if(left_bracer_attachment && left_bracer_attachment.attached_weapon.loc == user) + user.drop_inv_item_to_loc(left_bracer_attachment.attached_weapon, left_bracer_attachment, FALSE, TRUE) + to_chat(user, SPAN_NOTICE("You retract [left_bracer_attachment.attached_weapon].")) playsound(loc, left_bracer_attachment.retract_sound, 25, TRUE) - if(right_bracer_attachment && right_bracer_attachment.attached_weapon.loc == caller) - caller.drop_inv_item_to_loc(right_bracer_attachment.attached_weapon, right_bracer_attachment, FALSE, TRUE) - to_chat(caller, SPAN_NOTICE("You retract [right_bracer_attachment.attached_weapon].")) + if(right_bracer_attachment && right_bracer_attachment.attached_weapon.loc == user) + user.drop_inv_item_to_loc(right_bracer_attachment.attached_weapon, right_bracer_attachment, FALSE, TRUE) + to_chat(user, SPAN_NOTICE("You retract [right_bracer_attachment.attached_weapon].")) playsound(loc, right_bracer_attachment.retract_sound, 25, TRUE) bracer_attachment_deployed = FALSE @@ -626,12 +626,12 @@ set src in usr . = track_gear_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/track_gear_internal(mob/caller, forced = FALSE) - . = check_random_function(caller, forced) +/obj/item/clothing/gloves/yautja/hunter/proc/track_gear_internal(mob/user, forced = FALSE) + . = check_random_function(user, forced) if(.) return - var/mob/living/carbon/human/hunter = caller + var/mob/living/carbon/human/hunter = user var/atom/hunter_eye = hunter.client.eye var/dead_on_planet = 0 @@ -711,22 +711,22 @@ set src in usr . = cloaker_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/cloaker_internal(mob/caller, forced = FALSE, silent = FALSE, instant = FALSE) - . = check_random_function(caller, forced) +/obj/item/clothing/gloves/yautja/hunter/proc/cloaker_internal(mob/user, forced = FALSE, silent = FALSE, instant = FALSE) + . = check_random_function(user, forced) if(.) return - var/mob/living/carbon/human/M = caller + var/mob/living/carbon/human/M = user var/new_alpha = cloak_alpha if(!istype(M) || M.is_mob_incapacitated()) return FALSE - if(HAS_TRAIT(caller, TRAIT_CLOAKED)) //Turn it off. + if(HAS_TRAIT(user, TRAIT_CLOAKED)) //Turn it off. if(cloak_timer > world.time) to_chat(M, SPAN_WARNING("Your cloaking device is busy! Time left: [max(floor((cloak_timer - world.time) / 10), 1)] seconds.")) return FALSE - decloak(caller) + decloak(user) else //Turn it on! if(exploding) to_chat(M, SPAN_WARNING("Your bracer is much too busy violently exploding to activate the cloaking device.")) @@ -754,7 +754,7 @@ M.invisibility = INVISIBILITY_LEVEL_ONE M.see_invisible = SEE_INVISIBLE_LEVEL_ONE - log_game("[key_name_admin(usr)] has enabled their cloaking device.") + log_game("[key_name_admin(user)] has enabled their cloaking device.") if(!silent) M.visible_message(SPAN_WARNING("[M] vanishes into thin air!"), SPAN_NOTICE("You are now invisible to normal detection.")) var/sound_to_use @@ -779,7 +779,7 @@ var/datum/action/predator_action/bracer/cloak/cloak_action for(cloak_action as anything in M.actions) if(istypestrict(cloak_action, /datum/action/predator_action/bracer/cloak)) - cloak_action.update_button_icon(HAS_TRAIT(caller, TRAIT_CLOAKED)) + cloak_action.update_button_icon(HAS_TRAIT(user, TRAIT_CLOAKED)) break return TRUE @@ -839,40 +839,40 @@ set src in usr . = caster_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/caster_internal(mob/living/carbon/human/caller, forced = FALSE) - if(!caller.loc || caller.is_mob_incapacitated() || !ishuman(caller)) +/obj/item/clothing/gloves/yautja/hunter/proc/caster_internal(mob/living/carbon/human/user, forced = FALSE) + if(!user.loc || user.is_mob_incapacitated() || !ishuman(user)) return - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return if(caster_deployed) - if(caster.loc == caller) - caller.drop_inv_item_to_loc(caster, src, FALSE, TRUE) + if(caster.loc == user) + user.drop_inv_item_to_loc(caster, src, FALSE, TRUE) caster_deployed = FALSE else - if(!drain_power(caller, 50)) + if(!drain_power(user, 50)) return - if(caller.get_active_hand()) - to_chat(caller, SPAN_WARNING("Your hand must be free to activate your plasma caster!")) + if(user.get_active_hand()) + to_chat(user, SPAN_WARNING("Your hand must be free to activate your plasma caster!")) return - var/obj/limb/hand = caller.get_limb(caller.hand ? "l_hand" : "r_hand") + var/obj/limb/hand = user.get_limb(user.hand ? "l_hand" : "r_hand") if(!istype(hand) || !hand.is_usable()) - to_chat(caller, SPAN_WARNING("You can't hold that!")) + to_chat(user, SPAN_WARNING("You can't hold that!")) return - if(caller.faction == FACTION_YAUTJA_YOUNG) - to_chat(caller, SPAN_WARNING("You have not earned that right yet!")) + if(user.faction == FACTION_YAUTJA_YOUNG) + to_chat(user, SPAN_WARNING("You have not earned that right yet!")) return - caller.put_in_active_hand(caster) + user.put_in_active_hand(caster) caster_deployed = TRUE - if(caller.client?.prefs.custom_cursors) - caller.client?.mouse_pointer_icon = 'icons/effects/mouse_pointer/plasma_caster_mouse.dmi' - to_chat(caller, SPAN_NOTICE("You activate your plasma caster. It is in [caster.mode] mode.")) + if(user.client?.prefs.custom_cursors) + user.client?.mouse_pointer_icon = 'icons/effects/mouse_pointer/plasma_caster_mouse.dmi' + to_chat(user, SPAN_NOTICE("You activate your plasma caster. It is in [caster.mode] mode.")) playsound(src, 'sound/weapons/pred_plasmacaster_on.ogg', 15, TRUE) var/datum/action/predator_action/bracer/caster/caster_action - for(caster_action as anything in caller.actions) + for(caster_action as anything in user.actions) if(istypestrict(caster_action, /datum/action/predator_action/bracer/caster)) caster_action.update_button_icon(caster_deployed) break @@ -933,12 +933,12 @@ set src in usr . = activate_suicide_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/activate_suicide_internal(mob/caller, forced = FALSE) - . = check_random_function(caller, forced, TRUE) +/obj/item/clothing/gloves/yautja/hunter/proc/activate_suicide_internal(mob/user, forced = FALSE) + . = check_random_function(user, forced, TRUE) if(.) return - var/mob/living/carbon/human/boomer = caller + var/mob/living/carbon/human/boomer = user var/area/grounds = get_area(boomer) if(HAS_TRAIT(boomer, TRAIT_CLOAKED)) @@ -956,7 +956,7 @@ if(grounds?.flags_area & AREA_YAUTJA_HUNTING_GROUNDS) // Hunted need mask to escape to_chat(boomer, SPAN_WARNING("Your bracer will not allow you to activate a self-destruction sequence in order to protect the hunting preserve.")) return - if(caller.faction == FACTION_YAUTJA_YOUNG) + if(user.faction == FACTION_YAUTJA_YOUNG) to_chat(boomer, SPAN_WARNING("You don't yet understand how to use this.")) // No SDing for youngbloods return @@ -1051,16 +1051,16 @@ set src in usr . = remote_kill_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/remote_kill_internal(mob/living/carbon/human/caller, forced = FALSE) - if(!caller.loc || caller.is_mob_incapacitated() || !ishuman(caller)) +/obj/item/clothing/gloves/yautja/hunter/proc/remote_kill_internal(mob/living/carbon/human/user, forced = FALSE) + if(!user.loc || user.is_mob_incapacitated() || !ishuman(user)) return - if(caller.faction == FACTION_YAUTJA_YOUNG) - to_chat(caller, SPAN_WARNING("This button is not for you.")) + if(user.faction == FACTION_YAUTJA_YOUNG) + to_chat(user, SPAN_WARNING("This button is not for you.")) return - if(!HAS_TRAIT(caller, TRAIT_YAUTJA_TECH)) - to_chat(caller, SPAN_WARNING("A large list appears but you cannot understand what it means.")) + if(!HAS_TRAIT(user, TRAIT_YAUTJA_TECH)) + to_chat(user, SPAN_WARNING("A large list appears but you cannot understand what it means.")) return var/list/target_list = list() @@ -1069,26 +1069,26 @@ target_list[target_youngbloods.real_name] = target_youngbloods if(!length(target_list)) - to_chat(caller, SPAN_NOTICE("No youngbloods are currently alive.")) + to_chat(user, SPAN_NOTICE("No youngbloods are currently alive.")) return - var/choice = tgui_input_list(caller, "Choose a young hunter to terminate:", "Kill Youngblood", target_list) + var/choice = tgui_input_list(user, "Choose a young hunter to terminate:", "Kill Youngblood", target_list) if(!choice) return var/mob/living/target_youngblood = target_list[choice] - var/reason = tgui_input_text(caller, "Youngblood Terminator", "Provide a reason for terminating [target_youngblood.real_name].") + var/reason = tgui_input_text(user, "Youngblood Terminator", "Provide a reason for terminating [target_youngblood.real_name].") if(!reason) - to_chat(caller, SPAN_WARNING("You must provide a reason for terminating [target_youngblood.real_name].")) + to_chat(user, SPAN_WARNING("You must provide a reason for terminating [target_youngblood.real_name].")) return var/area/location = get_area(target_youngblood) var/turf/floor = get_turf(target_youngblood) target_youngblood.death(create_cause_data("Youngblood Termination"), TRUE) - message_all_yautja("[caller.real_name] has terminated [target_youngblood.real_name] for: '[reason]'.") - message_admins(FONT_SIZE_LARGE("ALERT: [caller.real_name] ([caller.key]) Terminated [target_youngblood.real_name] ([target_youngblood.key]) in [location.name] for: '[reason]' [ADMIN_JMP(floor)]")) + message_all_yautja("[user.real_name] has terminated [target_youngblood.real_name] for: '[reason]'.") + message_admins(FONT_SIZE_LARGE("ALERT: [user.real_name] ([user.key]) Terminated [target_youngblood.real_name] ([target_youngblood.key]) in [location.name] for: '[reason]' [ADMIN_JMP(floor)]")) #define YAUTJA_CREATE_CRYSTAL_COOLDOWN "yautja_create_crystal_cooldown" @@ -1099,31 +1099,31 @@ set src in usr . = injectors_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/injectors_internal(mob/caller, forced = FALSE) - if(caller.is_mob_incapacitated()) +/obj/item/clothing/gloves/yautja/hunter/proc/injectors_internal(mob/user, forced = FALSE) + if(user.is_mob_incapacitated()) return FALSE - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return - if(caller.get_active_hand()) - to_chat(caller, SPAN_WARNING("Your active hand must be empty!")) + if(user.get_active_hand()) + to_chat(user, SPAN_WARNING("Your active hand must be empty!")) return FALSE if(TIMER_COOLDOWN_CHECK(src, YAUTJA_CREATE_CRYSTAL_COOLDOWN)) var/remaining_time = DisplayTimeText(S_TIMER_COOLDOWN_TIMELEFT(src, YAUTJA_CREATE_CRYSTAL_COOLDOWN)) - to_chat(caller, SPAN_WARNING("You recently synthesized a stabilising crystal. A new crystal will be available in [remaining_time].")) + to_chat(user, SPAN_WARNING("You recently synthesized a stabilising crystal. A new crystal will be available in [remaining_time].")) return FALSE - if(!drain_power(caller, 400)) + if(!drain_power(user, 400)) return FALSE S_TIMER_COOLDOWN_START(src, YAUTJA_CREATE_CRYSTAL_COOLDOWN, 2 MINUTES) - to_chat(caller, SPAN_NOTICE("You feel a faint hiss and a crystalline injector drops into your hand.")) - var/obj/item/reagent_container/hypospray/autoinjector/yautja/O = new(caller) - caller.put_in_active_hand(O) + to_chat(user, SPAN_NOTICE("You feel a faint hiss and a crystalline injector drops into your hand.")) + var/obj/item/reagent_container/hypospray/autoinjector/yautja/O = new(user) + user.put_in_active_hand(O) playsound(src, 'sound/machines/click.ogg', 15, 1) return TRUE #undef YAUTJA_CREATE_CRYSTAL_COOLDOWN @@ -1136,31 +1136,31 @@ . = healing_capsule_internal(usr, FALSE) #define YAUTJA_CREATE_CAPSULE_COOLDOWN "yautja_create_capsule_cooldown" -/obj/item/clothing/gloves/yautja/hunter/proc/healing_capsule_internal(mob/caller, forced = FALSE) - if(caller.is_mob_incapacitated()) +/obj/item/clothing/gloves/yautja/hunter/proc/healing_capsule_internal(mob/user, forced = FALSE) + if(user.is_mob_incapacitated()) return FALSE - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return - if(caller.get_active_hand()) - to_chat(caller, SPAN_WARNING("Your active hand must be empty!")) + if(user.get_active_hand()) + to_chat(user, SPAN_WARNING("Your active hand must be empty!")) return FALSE if(TIMER_COOLDOWN_CHECK(src, YAUTJA_CREATE_CAPSULE_COOLDOWN)) var/remaining_time = DisplayTimeText(S_TIMER_COOLDOWN_TIMELEFT(src, YAUTJA_CREATE_CAPSULE_COOLDOWN)) - to_chat(caller, SPAN_WARNING("You recently synthesized a healing capsule. A new capsule will be available in [remaining_time].")) + to_chat(user, SPAN_WARNING("You recently synthesized a healing capsule. A new capsule will be available in [remaining_time].")) return FALSE - if(!drain_power(caller, 600)) + if(!drain_power(user, 600)) return FALSE S_TIMER_COOLDOWN_START(src, YAUTJA_CREATE_CAPSULE_COOLDOWN, 4 MINUTES) - to_chat(caller, SPAN_NOTICE("You feel your bracer churn as it pops out a healing capsule.")) - var/obj/item/tool/surgery/healing_gel/O = new(caller) - caller.put_in_active_hand(O) + to_chat(user, SPAN_NOTICE("You feel your bracer churn as it pops out a healing capsule.")) + var/obj/item/tool/surgery/healing_gel/O = new(user) + user.put_in_active_hand(O) playsound(src, 'sound/machines/click.ogg', 15, 1) return TRUE @@ -1174,32 +1174,32 @@ . = call_disc_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/call_disc_internal(mob/caller, forced = FALSE) - if(caller.is_mob_incapacitated()) +/obj/item/clothing/gloves/yautja/hunter/proc/call_disc_internal(mob/user, forced = FALSE) + if(user.is_mob_incapacitated()) return FALSE - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return if(disc_timer) - to_chat(caller, SPAN_WARNING("Your bracers need some time to recuperate first.")) + to_chat(user, SPAN_WARNING("Your bracers need some time to recuperate first.")) return FALSE - if(!drain_power(caller, 70)) + if(!drain_power(user, 70)) return FALSE disc_timer = TRUE addtimer(VARSET_CALLBACK(src, disc_timer, FALSE), 10 SECONDS) for(var/mob/living/simple_animal/hostile/smartdisc/S in range(7)) - to_chat(caller, SPAN_WARNING("[S] skips back towards you!")) + to_chat(user, SPAN_WARNING("[S] skips back towards you!")) new /obj/item/explosive/grenade/spawnergrenade/smartdisc(S.loc) qdel(S) for(var/obj/item/explosive/grenade/spawnergrenade/smartdisc/D in range(10)) if(isturf(D.loc)) - D.boomerang(caller) + D.boomerang(user) return TRUE @@ -1210,23 +1210,23 @@ set src in usr . = remove_tracked_item_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/remove_tracked_item_internal(mob/caller, forced = FALSE) - if(caller.is_mob_incapacitated()) +/obj/item/clothing/gloves/yautja/hunter/proc/remove_tracked_item_internal(mob/user, forced = FALSE) + if(user.is_mob_incapacitated()) return FALSE - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return - var/obj/item/tracked_item = caller.get_active_hand() + var/obj/item/tracked_item = user.get_active_hand() if(!tracked_item) - to_chat(caller, SPAN_WARNING("You need the item in your active hand to remove it from the tracker!")) + to_chat(user, SPAN_WARNING("You need the item in your active hand to remove it from the tracker!")) return FALSE if(!(tracked_item in GLOB.tracked_yautja_gear)) - to_chat(caller, SPAN_WARNING("\The [tracked_item] isn't on the tracking system.")) + to_chat(user, SPAN_WARNING("[tracked_item] isn't on the tracking system.")) return FALSE tracked_item.RemoveElement(/datum/element/yautja_tracked_item) - to_chat(caller, SPAN_NOTICE("You remove \the [tracked_item] from the tracking system.")) + to_chat(user, SPAN_NOTICE("You remove [tracked_item] from the tracking system.")) return TRUE @@ -1237,23 +1237,23 @@ set src in usr . = add_tracked_item_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/add_tracked_item_internal(mob/caller, forced = FALSE) - if(caller.is_mob_incapacitated()) +/obj/item/clothing/gloves/yautja/hunter/proc/add_tracked_item_internal(mob/user, forced = FALSE) + if(user.is_mob_incapacitated()) return FALSE - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return - var/obj/item/untracked_item = caller.get_active_hand() + var/obj/item/untracked_item = user.get_active_hand() if(!untracked_item) - to_chat(caller, SPAN_WARNING("You need the item in your active hand to remove it from the tracker!")) + to_chat(user, SPAN_WARNING("You need the item in your active hand to remove it from the tracker!")) return FALSE if(untracked_item in GLOB.tracked_yautja_gear) - to_chat(caller, SPAN_WARNING("\The [untracked_item] is already being tracked.")) + to_chat(user, SPAN_WARNING("[untracked_item] is already being tracked.")) return FALSE untracked_item.AddElement(/datum/element/yautja_tracked_item) - to_chat(caller, SPAN_NOTICE("You add \the [untracked_item] to the tracking system.")) + to_chat(user, SPAN_NOTICE("You add [untracked_item] to the tracking system.")) return TRUE /obj/item/clothing/gloves/yautja/hunter/verb/translate() @@ -1263,30 +1263,30 @@ set src in usr . = translate_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/translate_internal(mob/caller, forced = FALSE) - if(!caller || caller.stat) +/obj/item/clothing/gloves/yautja/hunter/proc/translate_internal(mob/user, forced = FALSE) + if(!user || user.stat) return - . = check_random_function(caller, forced) + . = check_random_function(user, forced) if(.) return - if(caller.client.prefs.muted & MUTE_IC) - to_chat(caller, SPAN_DANGER("You cannot translate (muted).")) + if(user.client.prefs.muted & MUTE_IC) + to_chat(user, SPAN_DANGER("You cannot translate (muted).")) return - caller.create_typing_indicator() - var/msg = sanitize(input(caller, "Your bracer beeps and waits patiently for you to input your message.", "Translator", "") as text) - caller.remove_typing_indicator() - if(!msg || !caller.client) + user.create_typing_indicator() + var/msg = sanitize(input(user, "Your bracer beeps and waits patiently for you to input your message.", "Translator", "") as text) + user.remove_typing_indicator() + if(!msg || !user.client) return - if(!drain_power(caller, 50)) + if(!drain_power(user, 50)) return - log_say("[caller.name != "Unknown" ? caller.name : "([caller.real_name])"] \[Yautja Translator\]: [msg] (CKEY: [caller.key]) (JOB: [caller.job]) (AREA: [get_area_name(caller)])") + log_say("[user.name != "Unknown" ? user.name : "([user.real_name])"] \[Yautja Translator\]: [msg] (CKEY: [user.key]) (JOB: [user.job]) (AREA: [get_area_name(user)])") - var/list/heard = get_mobs_in_view(7, caller) + var/list/heard = get_mobs_in_view(7, user) for(var/mob/M in heard) if(M.ear_deaf) heard -= M @@ -1304,11 +1304,11 @@ msg = replacetext(msg, "s", "5") msg = replacetext(msg, "l", "1") - caller.langchat_speech(msg, heard, GLOB.all_languages, overhead_color, TRUE) + user.langchat_speech(msg, heard, GLOB.all_languages, overhead_color, TRUE) var/voice_name = "A strange voice" - if(caller.name == caller.real_name && caller.alpha == initial(caller.alpha)) - voice_name = "[caller.name]" + if(user.name == user.real_name && user.alpha == initial(user.alpha)) + voice_name = "[user.name]" for(var/mob/Q as anything in heard) if(Q.stat && !isobserver(Q)) continue //Unconscious @@ -1324,7 +1324,7 @@ return name_active = !name_active - to_chat(usr, SPAN_NOTICE("\The [src] will [name_active ? "now" : "no longer"] show your name when fellow Yautja examine you.")) + to_chat(usr, SPAN_NOTICE("[src] will [name_active ? "now" : "no longer"] show your name when fellow Yautja examine you.")) /obj/item/clothing/gloves/yautja/hunter/verb/idchip() set name = "Toggle ID Chip" @@ -1388,7 +1388,7 @@ var/obj/item/grab/held_mob = user.get_active_hand() if(!istype(held_mob)) - log_attack("[key_name_admin(usr)] has unlocked their own bracer.") + log_attack("[key_name_admin(user)] has unlocked their own bracer.") toggle_lock_internal(user) return TRUE diff --git a/code/modules/cm_preds/yaut_hudprocs.dm b/code/modules/cm_preds/yaut_hudprocs.dm index 05d3e5b81a21..7d296b182cb9 100644 --- a/code/modules/cm_preds/yaut_hudprocs.dm +++ b/code/modules/cm_preds/yaut_hudprocs.dm @@ -452,8 +452,8 @@ return FALSE call_combi_internal(usr) -/mob/living/carbon/human/proc/call_combi_internal(mob/caller, forced = FALSE) - for(var/datum/effects/tethering/tether in caller.effects_list) +/mob/living/carbon/human/proc/call_combi_internal(mob/user, forced = FALSE) + for(var/datum/effects/tethering/tether in user.effects_list) if(istype(tether.tethered.affected_atom, /obj/item/weapon/yautja/chained)) var/obj/item/weapon/yautja/chained/stick = tether.tethered.affected_atom stick.recall() diff --git a/code/modules/gear_presets/corpses.dm b/code/modules/gear_presets/corpses.dm index d8d7c6a8f87a..621901ab44a3 100644 --- a/code/modules/gear_presets/corpses.dm +++ b/code/modules/gear_presets/corpses.dm @@ -1245,7 +1245,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beanie/royal_marine(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/bomber/alt(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/steward(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack(new_human), WEAR_BACK) ..() @@ -1410,7 +1410,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/hybrisa/nspa_officer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/black, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/l54, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/blue, WEAR_EYES) @@ -1507,7 +1507,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest/hybrisa_kelland_alt(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/hybrisa/kelland_mining_helmet, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife(new_human), WEAR_FEET) ..() /datum/equipment_preset/corpse/hybrisa/kelland_miner/burst diff --git a/code/modules/gear_presets/fax_responders.dm b/code/modules/gear_presets/fax_responders.dm index 6850b389fd34..bb086c455cb0 100644 --- a/code/modules/gear_presets/fax_responders.dm +++ b/code/modules/gear_presets/fax_responders.dm @@ -77,7 +77,7 @@ paygrades = list(PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO3 = JOB_PLAYTIME_TIER_1, PAY_SHORT_MO4 = JOB_PLAYTIME_TIER_3) idtype = /obj/item/card/id/gold - access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_MEDBAY, ACCESS_MARINE_BRIG, ACCESS_MARINE_AI) + access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE_ADMIN, ACCESS_MARINE_GENERAL, ACCESS_MARINE_MEDBAY, ACCESS_MARINE_BRIG, ACCESS_MARINE_AI) headset_type = /obj/item/device/radio/headset/almayer/highcom idtype = /obj/item/card/id/gold diff --git a/code/modules/gear_presets/royal_marines.dm b/code/modules/gear_presets/royal_marines.dm index d2d29ae329a3..3e09781746f5 100644 --- a/code/modules/gear_presets/royal_marines.dm +++ b/code/modules/gear_presets/royal_marines.dm @@ -69,12 +69,13 @@ skills = /datum/skills/rmc + /datum/equipment_preset/twe/royal_marine/standard/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) @@ -129,11 +130,11 @@ /datum/equipment_preset/twe/royal_marine/spec/marksman/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/iasf_beret, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/tan, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/rmc, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -180,7 +181,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine/breacher, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding/superior, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -230,7 +231,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine/breacher, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot(new /obj/item/clothing/glasses/night/m56_goggles, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -281,7 +282,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine/medic, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine/medical, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -330,7 +331,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/tl, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) @@ -383,7 +384,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/lt, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -452,7 +453,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/lt, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -521,7 +522,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/lt, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) @@ -586,7 +587,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) @@ -624,7 +625,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) @@ -662,7 +663,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/lt, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) diff --git a/code/modules/gear_presets/survivors/lv_759/iasf_survivor_insert.dm b/code/modules/gear_presets/survivors/lv_759/iasf_survivor_insert.dm new file mode 100644 index 000000000000..13ada84ac064 --- /dev/null +++ b/code/modules/gear_presets/survivors/lv_759/iasf_survivor_insert.dm @@ -0,0 +1,290 @@ +/////////////////////////////////////////////////////////////////// + +/// Hybrisa - IASF - Paratrooper survivors + +/datum/equipment_preset/survivor/iasf + name = "Survivor - IASF" + paygrades = list(PAY_SHORT_IASFE2 = JOB_PLAYTIME_TIER_0) + job_title = JOB_SURVIVOR + skills = /datum/skills/iasf + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + faction = FACTION_IASF + faction_group = FACTION_LIST_SURVIVOR_IASF + minimap_icon = "rmc_rifleman" + minimap_background = "background_twe" + role_comm_title = "24/PARA" + idtype = /obj/item/card/id/dogtag + flags = EQUIPMENT_PRESET_EXTRA + access = list( + ACCESS_CIVILIAN_PUBLIC, + ) + +/datum/equipment_preset/survivor/iasf/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/veteran/royal_marine/iasf/uniform = new() + var/random_number = rand(1,4) + switch(random_number) + if(1) + uniform.roll_suit_jacket(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/brown, WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/brown, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + if(3) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/brown, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/rmc/service/iasf_combat_jacket, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine/generic(new_human), WEAR_IN_BACK) + if(4) + uniform.roll_suit_sleeves(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/iasf, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/iasf_para_belt/webley_near_empty(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/iasf_beret, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/rmc_f90, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/iasf(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/twe, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + +/////////////////////////////////////////////////////////////////// + +/datum/equipment_preset/survivor/iasf/paratrooper + name = "Survivor - IASF Paratrooper" + paygrades = list(PAY_SHORT_IASFE2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_IASFE2 = JOB_PLAYTIME_TIER_1) + assignment = "IASF - Paratrooper" + job_title = JOB_TWE_IASF_PARA + skills = /datum/skills/iasf + +/datum/equipment_preset/survivor/iasf/paratrooper/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/veteran/royal_marine/iasf/uniform = new() + var/random_number = rand(1,2) + switch(random_number) + if(1) + uniform.roll_suit_jacket(new_human) + if(2) + uniform.roll_suit_sleeves(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + + ..() + +/////////////////////////////////////////////////////////////////// + +/datum/equipment_preset/survivor/iasf/engi + name = "Survivor - IASF Combat Engineer" + paygrades = list(PAY_SHORT_IASFE3 = JOB_PLAYTIME_TIER_0) + assignment = "IASF - Combat Engineer" + job_title = JOB_TWE_IASF_PARA_ENGI + + minimap_icon = "rmc_breacher" + + skills = /datum/skills/iasf/engi + +/datum/equipment_preset/survivor/iasf/engi/load_gear(mob/living/carbon/human/new_human) + + var/obj/item/clothing/under/marine/veteran/royal_marine/iasf/uniform = new() + var/R = rand(1,2) + switch(R) + if(1) + uniform.roll_suit_jacket(new_human) + if(2) + uniform.roll_suit_sleeves(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/iasf (new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/rmc_f90, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + + ..() + +/////////////////////////////////////////////////////////////////// + +/datum/equipment_preset/survivor/iasf/medic + name = "Survivor - IASF Combat Medical Technician" + paygrades = list(PAY_SHORT_IASFE3 = JOB_PLAYTIME_TIER_0) + assignment = "IASF - Combat Medical Technician" + job_title = JOB_TWE_IASF_PARA_MEDIC + + minimap_icon = "rmc_medic" + + skills = /datum/skills/iasf/medic + +/datum/equipment_preset/survivor/iasf/medic/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/veteran/royal_marine/iasf/uniform = new() + var/random_number = rand(1,2) + switch(random_number) + if(1) + uniform.roll_suit_jacket(new_human) + if(2) + uniform.roll_suit_sleeves(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine/generic(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/rmc/survivor(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/p90/twe, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/rmc/medium/medic(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BACK) + + ..() + +/////////////////////////////////////////////////////////////////// + +/datum/equipment_preset/survivor/iasf/pilot + name = "Survivor - IASF Dropship Pilot" + assignment = "IASF - Dropship Pilot" + job_title = JOB_TWE_IASF_PARA_PILOT + minimap_icon = "rmc_marksman" + paygrades = list(PAY_SHORT_IASFE4 = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/iasf/pilot + +/datum/equipment_preset/survivor/iasf/pilot/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine/pilot (new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/iasf (new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/p90/twe, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + + ..() + +/////////////////////////////////////////////////////////////////// + +/datum/equipment_preset/survivor/iasf/squad_leader + name = "Survivor - IASF Squad Leader" + paygrades = list(PAY_SHORT_IASFE5 = JOB_PLAYTIME_TIER_0) + assignment = "IASF - Squad Leader" + job_title = JOB_TWE_IASF_PARA_SQUAD_LEADER + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + role_comm_title = "24/PARA SL" + + minimap_icon = "rmc_teamleader" + + skills = /datum/skills/iasf/leader + +/datum/equipment_preset/survivor/iasf/squad_leader/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/iasf (new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/rmc_f90, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/iasf_beret/tl(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + + ..() + +/////////////////////////////////////////////////////////////////// + +/datum/equipment_preset/synth/survivor/iasf_synth + name = "Survivor - IASF - Support Synthetic" + assignment = "IASF - Support Synthetic" + flags = EQUIPMENT_PRESET_EXTRA + languages = ALL_SYNTH_LANGUAGES + job_title = JOB_TWE_IASF_PARA_SYNTH + faction = FACTION_IASF + faction_group = FACTION_LIST_SURVIVOR_IASF + skills = /datum/skills/colonial_synthetic + paygrades = list(PAY_SHORT_SYN = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/dogtag + role_comm_title = "24/PARA Syn" + minimap_background = "background_twe" + minimap_icon = "synth" + +/datum/equipment_preset/synth/survivor/iasf_synth/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/veteran/royal_marine/iasf/uniform = new() + var/random_number = rand(1,2) + switch(random_number) + if(1) + uniform.roll_suit_jacket(new_human) + if(2) + uniform.roll_suit_sleeves(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/iasf, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/iasf_beret, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver, WEAR_R_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/iasf, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/small_stack, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/synthetic, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf/synth, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/rmc/survivor(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/twe, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/electronics, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/synth/full, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife, WEAR_FEET) + +/////////////////////////////////////////////////////////////////// + +// Hybrisa - IASF - CO Survivor. + +/datum/equipment_preset/survivor/hybrisa/iasf_commander + name = "Survivor - IASF Commander" + assignment = "IASF - Commander" + faction = FACTION_IASF + faction_group = FACTION_LIST_SURVIVOR_IASF + skills = /datum/skills/iasf/commander + paygrades = list(PAY_SHORT_IASFO5 = JOB_PLAYTIME_TIER_0) + job_title = JOB_TWE_IASF_PARA_COMMANDER + minimap_icon = "rmc_commander" + minimap_background = "background_twe" + idtype = /obj/item/card/id/gold + role_comm_title = "IASF CDR" + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ) + +/datum/equipment_preset/survivor/hybrisa/iasf_commander/load_gear(mob/living/carbon/human/new_human) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/black(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/tie/black, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/brown, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/royal_marine/iasf(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/rmc/service/iasf_co(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/iasf(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/multicolor/fountain(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/iasf_commander_cap(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/iasf_para_belt/custom/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_JACKET) + + ..() diff --git a/code/modules/gear_presets/survivors/lv_759/preset_hybrisa.dm b/code/modules/gear_presets/survivors/lv_759/preset_hybrisa.dm index 57205dedc53d..3e237e9349c4 100644 --- a/code/modules/gear_presets/survivors/lv_759/preset_hybrisa.dm +++ b/code/modules/gear_presets/survivors/lv_759/preset_hybrisa.dm @@ -68,7 +68,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beanie/royal_marine(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/bomber/alt(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/steward(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack(new_human), WEAR_BACK) add_survivor_rare_item(new_human) add_survivor_weapon_civilian(new_human) @@ -344,7 +344,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/hybrisa/nspa_officer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/black, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/l54/full, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/blue, WEAR_EYES) @@ -881,7 +881,7 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/WY/full, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90(new_human), WEAR_IN_BACK) if(11 to 29) @@ -897,7 +897,7 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/WY/full, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90(new_human), WEAR_IN_BACK) if(30) @@ -913,7 +913,7 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/WY/full, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90(new_human), WEAR_IN_BACK) ..() @@ -1015,12 +1015,12 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest/hybrisa_kelland_alt(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/hybrisa/kelland_mining_helmet, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/p90/twe, WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/royal_marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/p90, WEAR_L_HAND) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90/twe, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_R_STORE) add_survivor_weapon_civilian(new_human) ..() @@ -1242,7 +1242,7 @@ new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full/synth, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/WY/full/synth, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/weapon/twohanded/fireaxe, WEAR_L_HAND) new_human.equip_to_slot_or_del(new /obj/item/device/camera, WEAR_IN_BACK) @@ -1255,7 +1255,7 @@ new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full/synth, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/WY/full/synth, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/weapon/twohanded/fireaxe, WEAR_L_HAND) new_human.equip_to_slot_or_del(new /obj/item/device/camera, WEAR_IN_BACK) diff --git a/code/modules/gear_presets/uscm_dress.dm b/code/modules/gear_presets/uscm_dress.dm index 7f4ef71b94ea..27a4d0ab1c06 100644 --- a/code/modules/gear_presets/uscm_dress.dm +++ b/code/modules/gear_presets/uscm_dress.dm @@ -83,7 +83,7 @@ paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/silver skills = /datum/skills/SO - access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_MEDBAY) + access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_GENERAL, ACCESS_MARINE_MEDBAY) dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) diff --git a/code/modules/gear_presets/uscm_medical.dm b/code/modules/gear_presets/uscm_medical.dm index 02ec2803d344..020e69226ad5 100644 --- a/code/modules/gear_presets/uscm_medical.dm +++ b/code/modules/gear_presets/uscm_medical.dm @@ -26,7 +26,9 @@ idtype = /obj/item/card/id/silver access = list( ACCESS_MARINE_CMO, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_DATABASE, + ACCESS_MARINE_DATABASE_ADMIN, ACCESS_MARINE_MEDBAY, ACCESS_MARINE_RESEARCH, ACCESS_MARINE_SENIOR, @@ -70,6 +72,7 @@ paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "Doc" skills = /datum/skills/doctor + access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE, ACCESS_MARINE_DATABASE) minimap_icon = list("doctor") minimap_background = "background_medical" diff --git a/code/modules/gear_presets/uscm_police.dm b/code/modules/gear_presets/uscm_police.dm index f3f69366cbda..196efdb9817c 100644 --- a/code/modules/gear_presets/uscm_police.dm +++ b/code/modules/gear_presets/uscm_police.dm @@ -14,6 +14,7 @@ ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_MEDBAY, @@ -71,6 +72,7 @@ ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_ARMORY, @@ -130,7 +132,9 @@ ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_DATABASE, + ACCESS_MARINE_DATABASE_ADMIN, ACCESS_MARINE_PREP, ACCESS_MARINE_CMP, ACCESS_MARINE_ARMORY, diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index be20f1a433e9..b932f60475e0 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -37,6 +37,7 @@ ACCESS_MARINE_COMMAND, ACCESS_MARINE_RESEARCH, ACCESS_MARINE_MEDBAY, + ACCESS_MARINE_DATABASE, ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_ENGINEERING, @@ -170,6 +171,7 @@ ACCESS_MARINE_ENGINEERING, ACCESS_MARINE_COMMAND, ACCESS_CIVILIAN_ENGINEERING, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_DATABASE, ACCESS_MARINE_MAINT, ACCESS_MARINE_OT, @@ -382,6 +384,7 @@ /datum/equipment_preset/uscm_ship/xo/New() . = ..() access = get_access(ACCESS_LIST_MARINE_MAIN) + access |= ACCESS_MARINE_DATABASE_ADMIN /datum/equipment_preset/uscm_ship/xo/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel @@ -405,7 +408,7 @@ flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE idtype = /obj/item/card/id/silver - access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_MEDBAY) + access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_GENERAL, ACCESS_MARINE_MEDBAY) assignment = JOB_SO job_title = JOB_SO paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) @@ -454,6 +457,7 @@ /datum/equipment_preset/uscm_ship/sea/New() . = ..() access = get_access(ACCESS_LIST_MARINE_MAIN) + access |= ACCESS_MARINE_DATABASE_ADMIN /datum/equipment_preset/uscm_ship/sea/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel @@ -499,7 +503,9 @@ . = ..() access = list( ACCESS_MARINE_SENIOR, + ACCESS_MARINE_GENERAL, ACCESS_MARINE_DATABASE, + ACCESS_MARINE_DATABASE_ADMIN, ACCESS_MARINE_ASO, ACCESS_MARINE_COMMAND, ACCESS_MARINE_BRIG, diff --git a/code/modules/gear_presets/wo.dm b/code/modules/gear_presets/wo.dm index 5f7418003822..cf33c5b09121 100644 --- a/code/modules/gear_presets/wo.dm +++ b/code/modules/gear_presets/wo.dm @@ -139,7 +139,17 @@ name = "WO Honor Guard Squad Leader" flags = EQUIPMENT_PRESET_START_OF_ROUND_WO - access = list(ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_CMP, ACCESS_MARINE_MEDBAY) + access = list( + ACCESS_MARINE_BRIG, + ACCESS_MARINE_COMMAND, + ACCESS_MARINE_DROPSHIP, + ACCESS_MARINE_DATABASE, + ACCESS_MARINE_DATABASE_ADMIN, + ACCESS_MARINE_GENERAL, + ACCESS_MARINE_PREP, + ACCESS_MARINE_CMP, + ACCESS_MARINE_MEDBAY, + ) assignment = JOB_WO_CHIEF_POLICE job_title = JOB_WO_CHIEF_POLICE paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) @@ -176,7 +186,7 @@ name = "WO Veteran Honor Guard" //SO flags = EQUIPMENT_PRESET_START_OF_ROUND_WO - access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_BRIG, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE) + access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_BRIG, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_GENERAL) assignment = JOB_WO_SO job_title = JOB_WO_SO paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) @@ -219,7 +229,7 @@ name = "WO Honor Guard Specialist" //Tank crew flags = EQUIPMENT_PRESET_START_OF_ROUND_WO - access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE) + access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_GENERAL) assignment = JOB_WO_CREWMAN job_title = JOB_WO_CREWMAN paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) @@ -260,7 +270,7 @@ name = "WO Honor Guard" //MP flags = EQUIPMENT_PRESET_START_OF_ROUND_WO - access = list(ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_MEDBAY) + access = list(ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_GENERAL, ACCESS_MARINE_PREP, ACCESS_MARINE_MEDBAY) assignment = JOB_WO_POLICE job_title = JOB_WO_POLICE paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) @@ -523,7 +533,7 @@ name = "WO Bunker Crew Master" //CE flags = EQUIPMENT_PRESET_START_OF_ROUND_WO - access = list(ACCESS_MARINE_CE, ACCESS_MARINE_ENGINEERING, ACCESS_MARINE_COMMAND, ACCESS_CIVILIAN_ENGINEERING, ACCESS_MARINE_DATABASE) + access = list(ACCESS_MARINE_CE, ACCESS_MARINE_ENGINEERING, ACCESS_MARINE_COMMAND, ACCESS_CIVILIAN_ENGINEERING, ACCESS_MARINE_DATABASE, ACCESS_MARINE_GENERAL) assignment = JOB_WO_CHIEF_ENGINEER job_title = JOB_WO_CHIEF_ENGINEER paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index 8007799c3b19..015db675d4eb 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -98,6 +98,8 @@ if(!see_humans_on_tacmap && shipside_humans_count < (main_hive.get_real_total_xeno_count() * HIJACK_RATIO_FOR_TACMAP)) xeno_announcement("There is only a handful of tallhosts left, they are now visible on our hive mind map.", XENO_HIVE_NORMAL, SPAN_ANNOUNCEMENT_HEADER_BLUE("[QUEEN_MOTHER_ANNOUNCE]")) main_hive.see_humans_on_tacmap = TRUE + main_hive.tacmap_requires_queen_ovi = FALSE + SEND_SIGNAL(main_hive, COMSIG_XENO_REVEAL_TACMAP) if(last_living_human && shipside_humans_count == 1) if((GLOB.last_qm_callout + 2 MINUTES) < world.time) GLOB.last_qm_callout = world.time diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 01adadbacb5b..5450e9c507b7 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -675,11 +675,11 @@ for(var/datum/data/record/R as anything in GLOB.data_core.medical) if(R.fields["id"] == E.fields["id"]) if(hasHUD(usr,"medical")) - to_chat(usr, "Name: [R.fields["name"]] Blood Type: [R.fields["b_type"]]") - to_chat(usr, "Minor Disabilities: [R.fields["mi_dis"]]") - to_chat(usr, "Details: [R.fields["mi_dis_d"]]") - to_chat(usr, "Major Disabilities: [R.fields["ma_dis"]]") - to_chat(usr, "Details: [R.fields["ma_dis_d"]]") + to_chat(usr, "Name: [R.fields["name"]] Blood Type: [R.fields["blood_type"]]") + to_chat(usr, "Minor Disabilities: [R.fields["minor_disability"]]") + to_chat(usr, "Details: [R.fields["minor_disability_details"]]") + to_chat(usr, "Major Disabilities: [R.fields["major_disability"]]") + to_chat(usr, "Details: [R.fields["major_disability_details"]]") to_chat(usr, "Notes: [R.fields["notes"]]") to_chat(usr, "\[View Comment Log\]") read = 1 diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 26881e18ccd1..380ef4a29215 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -39,7 +39,7 @@ var/lip_style = null //no lipstick by default- arguably misleading, as it could be used for general makeup var/age = 30 //Player's age (pure fluff) - var/b_type = "A+" //Player's bloodtype + blood_type = "A+" //Player's bloodtype var/underwear = "Boxers (Camo Conforming)" //Which underwear the player wants var/undershirt = "Undershirt (Tan)" //Which undershirt the player wants. diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm index c61a351873d4..5f9899b648b5 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm @@ -535,12 +535,13 @@ hivenumber = xeno.hive.hivenumber RegisterSignal(xeno.hive, COMSIG_HIVE_NEW_QUEEN, PROC_REF(handle_new_queen)) + RegisterSignal(xeno.hive, COMSIG_XENO_REVEAL_TACMAP, PROC_REF(handle_unhide_tacmap)) - if(!xeno.hive.living_xeno_queen) + if(!xeno.hive.living_xeno_queen && !xeno.hive.allow_no_queen_actions) hide_from(xeno) return - if(!xeno.hive.living_xeno_queen.ovipositor) + if(!xeno.hive.living_xeno_queen?.ovipositor && !xeno.hive.tacmap_requires_queen_ovi) hide_from(xeno) handle_new_queen(new_queen = xeno.hive.living_xeno_queen) @@ -574,7 +575,14 @@ /datum/action/xeno_action/onclick/tacmap/proc/handle_dismount_ovipositor() SIGNAL_HANDLER - hide_from(owner) + var/mob/living/carbon/xenomorph/xeno = owner + if(xeno.hive?.tacmap_requires_queen_ovi) + hide_from(owner) + +/datum/action/xeno_action/onclick/tacmap/proc/handle_unhide_tacmap() + SIGNAL_HANDLER + + unhide_from(owner) /datum/action/xeno_action/onclick/tacmap/can_use_action() if(!owner) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm index a127f03c6f1f..0e70f71c1ad8 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm @@ -595,6 +595,10 @@ to_chat(xeno, SPAN_XENOWARNING("We cannot make a hole on a light!")) return FALSE + if(locate(/obj/structure/flora/jungle/vines) in src) + to_chat(xeno, SPAN_XENOWARNING("We cannot make a hole under the vines!")) + return FALSE + if(!xeno.check_alien_construction(src, check_doors = TRUE)) return FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm index cfaf7f4b2175..4942caaa5ea6 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm @@ -71,6 +71,7 @@ var/next_facehug_goal = FACEHUG_TIER_1 /// Whether a hug was performed successfully var/hug_successful = FALSE + var/last_roar_time = 0 /mob/living/carbon/xenomorph/facehugger/Login() var/last_ckey_inhabited = persistent_ckey @@ -255,6 +256,12 @@ return FALSE // Otherwise, ""roar""! + var/current_time = world.time + if(current_time - last_roar_time < 1 SECONDS) + to_chat(src, SPAN_WARNING("You must wait before roaring again.")) + return FALSE + + last_roar_time = current_time playsound(loc, "alien_roar_larva", 15) return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm index 9d2493802972..2a6f5b1e5580 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm @@ -54,6 +54,7 @@ var/state_override /// Whether we're bloody, normal, or mature var/larva_state = LARVA_STATE_BLOODY + var/last_roar_time = 0 icon_xeno = 'icons/mob/xenos/castes/tier_0/larva.dmi' icon_xenonid = 'icons/mob/xenonids/castes/tier_0/larva.dmi' @@ -197,6 +198,12 @@ return FALSE // Otherwise, ""roar""! + var/current_time = world.time + if(current_time - last_roar_time < 1 SECONDS) + to_chat(src, SPAN_WARNING("You must wait before roaring again.")) + return FALSE + + last_roar_time = current_time playsound(loc, "alien_roar_larva", 15) return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status.dm b/code/modules/mob/living/carbon/xenomorph/hive_status.dm index ef34f38c4502..09b610022ab0 100644 --- a/code/modules/mob/living/carbon/xenomorph/hive_status.dm +++ b/code/modules/mob/living/carbon/xenomorph/hive_status.dm @@ -69,8 +69,6 @@ /// If hit limit of larva from pylons var/hit_larva_pylon_limit = FALSE - var/see_humans_on_tacmap = FALSE - var/list/hive_inherant_traits // Cultist Info @@ -131,6 +129,11 @@ var/datum/tacmap/drawing/xeno/tacmap var/minimap_type = MINIMAP_FLAG_XENO + /// Can this hive see humans on the tacmap + var/see_humans_on_tacmap = FALSE + /// Does the queen need to be on ovi for xenos to see + var/tacmap_requires_queen_ovi = TRUE + var/list/available_nicknumbers = list() @@ -1189,6 +1192,7 @@ allow_no_queen_evo = TRUE allow_queen_evolve = FALSE latejoin_burrowed = FALSE + tacmap_requires_queen_ovi = FALSE /datum/hive_status/forsaken name = "Forsaken Hive" @@ -1203,6 +1207,8 @@ allow_no_queen_evo = TRUE allow_queen_evolve = FALSE latejoin_burrowed = FALSE + see_humans_on_tacmap = TRUE + tacmap_requires_queen_ovi = FALSE need_round_end_check = TRUE @@ -1244,6 +1250,7 @@ allow_no_queen_evo = TRUE allow_queen_evolve = FALSE latejoin_burrowed = FALSE + tacmap_requires_queen_ovi = FALSE need_round_end_check = TRUE @@ -1273,6 +1280,7 @@ allow_no_queen_evo = TRUE allow_queen_evolve = FALSE latejoin_burrowed = FALSE + tacmap_requires_queen_ovi = FALSE var/mob/living/carbon/human/leader var/list/allied_factions diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm index d4aaa06df99e..14a606df6347 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm @@ -1,6 +1,6 @@ /datum/xeno_strain/gardener name = DRONE_GARDENER - description = "You trade your choice of resin secretions, your corrosive acid, and your ability to transfer plasma for a tiny bit of extra health regeneration on weeds and several new abilities, including the ability to plant hardier weeds, temporarily reinforce structures with your plasma, and to plant up to six potent resin fruits for your sisters by secreting your vital fluids at the cost of a bit of your health for each fruit you shape. You can use Resin Surge to speed up the growth of your fruits." + description = "You trade your choice of resin secretions, your corrosive acid, and your ability to transfer plasma for a tiny bit of extra health regeneration on weeds and several new abilities, including the ability to plant hardier weeds, temporarily reinforce structures with your plasma, and to plant up to six potent resin fruits for your sisters by secreting your vital fluids at the cost of a bit of your health for each fruit you shape. Resin Surge can force your fruits to mature rapidly. As shaper of fruits, you can harvest and feed any fruit 50% faster." flavor_description = "The glory of gardening: hands in the weeds, head in the dark, heart with resin." actions_to_remove = list( @@ -84,15 +84,15 @@ to_chat(xeno, SPAN_WARNING("These weeds do not belong to our hive; they reject our fruit.")) return - if(locate(/obj/effect/alien/resin/trap) in range(1, target_turf)) - to_chat(xeno, SPAN_XENOWARNING("This location is too close to a resin hole!")) + if(locate(/obj/effect/alien/resin/trap) in range(0, target_turf)) + to_chat(xeno, SPAN_XENOWARNING("We cannot plant our fruit over a resin hole!")) return if(locate(/obj/effect/alien/resin/fruit) in target_turf) - to_chat(xeno, SPAN_XENOWARNING("This location is too close to another fruit!")) + to_chat(xeno, SPAN_XENOWARNING("Our fruit has already taken root in this space!")) return - if (check_and_use_plasma_owner()) + if(check_and_use_plasma_owner()) if(length(xeno.current_fruits) >= xeno.max_placeable) to_chat(xeno, SPAN_XENOWARNING("We cannot sustain another fruit, one will wither away to allow this one to live!")) var/obj/effect/alien/resin/fruit/old_fruit = xeno.current_fruits[1] @@ -110,10 +110,6 @@ xeno.updatehealth() playsound(xeno.loc, "alien_resin_build", 25) xeno.current_fruits.Add(fruit) - - var/number_of_fruit = length(xeno.current_fruits) - button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) - update_button_icon() xeno.update_icons() apply_cooldown() @@ -232,13 +228,13 @@ /datum/action/xeno_action/activable/resin_surge/use_ability(atom/target_atom, mods) var/mob/living/carbon/xenomorph/xeno = owner - if (!istype(xeno)) + if(!istype(xeno)) return - if (!action_cooldown_check()) + if(!action_cooldown_check()) return - if (!xeno.check_state(TRUE)) + if(!xeno.check_state(TRUE)) return if(mods[CLICK_CATCHER]) @@ -253,7 +249,7 @@ to_chat(xeno, SPAN_WARNING("That's too far away!")) return - if (!check_and_use_plasma_owner()) + if(!check_and_use_plasma_owner()) return var/turf/target_turf = get_turf(target_atom) @@ -269,7 +265,7 @@ if(door_present || wall_present) var/structure_to_buff = door || wall var/buff_already_present = FALSE - if(door_present ) + if(door_present) for(var/datum/effects/xeno_structure_reinforcement/sf in door.effects_list) buff_already_present = TRUE break @@ -284,15 +280,16 @@ SPAN_XENONOTICE("We surge the resin around [structure_to_buff], making it temporarily nigh unbreakable!"), null, 5) else to_chat(xeno, SPAN_XENONOTICE("We haplessly try to surge resin around [structure_to_buff], but it's already reinforced. It'll take a moment for us to recover.")) - xeno_cooldown = xeno_cooldown * 0.5 + xeno_cooldown *= 0.5 else if(F && F.hivenumber == xeno.hivenumber) if(F.mature) to_chat(xeno, SPAN_XENONOTICE("The [F] is already mature. The [src.name] does nothing.")) - xeno_cooldown = xeno_cooldown * 0.5 + xeno_cooldown *= 0.5 else - to_chat(xeno, SPAN_XENONOTICE("We surge the resin around the [F], speeding its growth somewhat!")) - F.reduce_timer(5 SECONDS) + to_chat(xeno, SPAN_XENONOTICE("We pour all our energy equal to [F] growth, bringing it to swift maturity!")) + F.reduce_timer(60 SECONDS) //We want surge to mature any fruit instantly, but you receive dynamic cooldown depending on fruit growth time. + xeno_cooldown *= dynamic_fruit_surge_cooldown(F) else if(target_weeds && istype(target_turf, /turf/open) && target_weeds.hivenumber == xeno.hivenumber) xeno.visible_message(SPAN_XENODANGER("\The [xeno] surges the resin, creating an unstable wall!"), @@ -312,20 +309,30 @@ channel_in_progress = FALSE xeno.visible_message(SPAN_XENODANGER("\The [xeno] surges deep resin, creating an unstable sticky resin patch!"), SPAN_XENONOTICE("We surge the deep resin, creating an unstable sticky resin patch!"), null, 5) - for (var/turf/targetTurf in orange(1, target_turf)) + for(var/turf/targetTurf in orange(1, target_turf)) if(!locate(/obj/effect/alien/resin/sticky) in targetTurf) new /obj/effect/alien/resin/sticky/thin/weak(targetTurf, xeno.hivenumber) if(!locate(/obj/effect/alien/resin/sticky) in target_turf) new /obj/effect/alien/resin/sticky/thin/weak(target_turf, xeno.hivenumber) else - xeno_cooldown = xeno_cooldown * 0.5 + xeno_cooldown *= 0.5 apply_cooldown() xeno_cooldown = initial(xeno_cooldown) return ..() +/datum/action/xeno_action/activable/resin_surge/proc/dynamic_fruit_surge_cooldown(obj/effect/alien/resin/fruit/F) + var/time_to_mature = F.time_to_mature + + var/calculate_equasion = time_to_mature / (10 SECONDS + 5 SECONDS) //xeno_cooldown + old_reduce_timer + var/calculate_multiplier = calculate_equasion * 5 SECONDS // * old_reduce_timer + var/calculate_pre_final = time_to_mature - calculate_multiplier + var/calculate_final_cooldown = (calculate_pre_final / 10) * 0.1 //why divided by 10? becouse it don't support SECONDS, it see them as DECISECONDS. + + return calculate_final_cooldown + /datum/action/xeno_action/verb/verb_resin_surge() set category = "Alien" set name = "Resin Surge" @@ -348,6 +355,11 @@ fruit_growth_multiplier = 0.8 weed_strength = WEED_LEVEL_HARDY +/obj/effect/alien/weeds/node/gardener/get_examine_text(mob/user) + . = ..() + if(isxeno(user) || isobserver(user)) + . += SPAN_NOTICE("We sense that this weeds will benefit our resin fruits, increasing growth speed by [SPAN_BOLDNOTICE("20%")].") + /datum/action/xeno_action/verb/verb_plant_gardening_weeds() set category = "Alien" set name = "Plant Hardy Weeds" @@ -381,6 +393,11 @@ fruit_sac_overlay_icon.color = fruit_sac_color bound_xeno.overlays += fruit_sac_overlay_icon + +/datum/behavior_delegate/drone_gardener/append_to_stat() + . = list() + . += "Fruits sustained: [length(bound_xeno.current_fruits)] / [bound_xeno.max_placeable]" + /* Swapping to greater fruit changes the color to #17991B Swapping to spore fruit changes the color to #994617 diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm index 2f383d6e3c3a..1612beeb2966 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm @@ -29,8 +29,8 @@ drone.tackle_chance_modifier -= 5 drone.max_placeable = 3 - drone.available_fruits = list(/obj/effect/alien/resin/fruit) - drone.selected_fruit = /obj/effect/alien/resin/fruit + drone.available_fruits = list(/obj/effect/alien/resin/fruit/lesser) + drone.selected_fruit = /obj/effect/alien/resin/fruit/lesser drone.recalculate_everything() @@ -186,6 +186,7 @@ /datum/behavior_delegate/drone_healer/append_to_stat() . = list() + . += "Fruits sustained: [length(bound_xeno.current_fruits)] / [bound_xeno.max_placeable]" . += "Transferred health amount: [transferred_amount]/[required_transferred_amount]" if(transferred_amount >= required_transferred_amount) . += "Sacrifice will grant you new life." diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm index 9f5629186372..94584dc4968d 100644 --- a/code/modules/mob/new_player/preferences_setup.dm +++ b/code/modules/mob/new_player/preferences_setup.dm @@ -373,6 +373,8 @@ if(JOB_CO_SURVIVOR) if(length(SSmapping.configs[GROUND_MAP].CO_survivor_types)) return pick(SSmapping.configs[GROUND_MAP].CO_survivor_types) + else if(length(SSmapping.configs[GROUND_MAP].CO_insert_survivor_types)) + return pick(SSmapping.configs[GROUND_MAP].CO_insert_survivor_types) return /datum/equipment_preset/uscm_co if(JOB_PREDATOR) var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_PREDATOR] diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm index aff340da2652..efeb1d402686 100644 --- a/code/modules/paperwork/filingcabinet.dm +++ b/code/modules/paperwork/filingcabinet.dm @@ -147,7 +147,7 @@ P.info = "
Medical Record

" P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]
\nSex: [G.fields["sex"]]
\nAge: [G.fields["age"]]
\nPhysical Status: [G.fields["p_stat"]]
\nMental Status: [G.fields["m_stat"]]
" - P.info += "
\n
Medical Data

\nBlood Type: [M.fields["b_type"]]
\n
\nMinor Disabilities: [M.fields["mi_dis"]]
\nDetails: [M.fields["mi_dis_d"]]
\n
\nMajor Disabilities: [M.fields["ma_dis"]]
\nDetails: [M.fields["ma_dis_d"]]
\n
\nAllergies: [M.fields["alg"]]
\nDetails: [M.fields["alg_d"]]
\n
\nCurrent Diseases: [M.fields["cdi"]] (per disease info placed in log/comment section)
\nDetails: [M.fields["cdi_d"]]
\n
\nImportant Notes:
\n\t[M.fields["notes"]]
\n
\n
Comments/Log

" + P.info += "
\n
Medical Data

\nBlood Type: [M.fields["blood_type"]]
\n
\nMinor Disabilities: [M.fields["minor_disability"]]
\nDetails: [M.fields["minor_disability_details"]]
\n
\nMajor Disabilities: [M.fields["major_disability"]]
\nDetails: [M.fields["major_disability_details"]]
\n
\nAllergies: [M.fields["allergies"]]
\nDetails: [M.fields["allergies_details"]]
\n
\nCurrent Diseases: [M.fields["diseases"]] (per disease info placed in log/comment section)
\nDetails: [M.fields["diseases_details"]]
\n
\nImportant Notes:
\n\t[M.fields["notes"]]
\n
\n
Comments/Log

" var/counter = 1 while(M.fields["com_[counter]"]) P.info += "[M.fields["com_[counter]"]]
" diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 177199eaf3af..804154dd8e96 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -1028,6 +1028,54 @@ info = parsepencode(template, null, null, FALSE) update_icon() +/obj/item/paper/medical_record + name = "Medical record" + icon_state = "paper_uscm_words" + +/obj/item/paper/medical_record/Initialize(mapload, datum/data/record/general_record, datum/data/record/medical_record) + . = ..(mapload) + var/template = {"\[center\]\[uscm\]\[/center\]"} + + template += {"\[center\]\[b\]Personal Record\[/b\]\[/center\]"} + + if(general_record) + template += {" + Name: [general_record.fields["name"]]\[br\] + ID: [general_record.fields["id"]]\[br\] + Sex: [general_record.fields["sex"]]\[br\] + Age: [general_record.fields["age"]]\[br\] + Assignment: [general_record.fields["rank"]]\[br\] + Physical Status: [general_record.fields["p_stat"]]\[br\] + Mental Status: [general_record.fields["m_stat"]]\[br\] + "} + + if (medical_record) + template += {"\[center\]\[b\]Medical Record\[/b\]\[/center\]"} + template += {"Diseases: [medical_record.fields["diseases"]]\[br\]"} + template += {"Allergies: [medical_record.fields["allergies"]]\[br\]"} + template += {"Major Disabilities: [medical_record.fields["major_disability"]]\[br\]"} + template += {"Minor Disabilities: [medical_record.fields["minor_disability"]]\[br\]"} + template += {"\[center\]\[b\]Comments and Logs\[/b\]\[/center\]"} + + if(islist(medical_record.fields["comments"]) || length(medical_record.fields["comments"]) > 0) + for(var/com_i in medical_record.fields["comments"]) + var/comment = medical_record.fields["comments"][com_i] + // What a wacky and jolly creation + // its derived from //? text("[] / [] ([])
", comment["created_at"], comment["created_by"]["name"], comment["created_by"]["rank"]) + var/comment_markup = "\[b\][comment["created_at"]] / [comment["created_by"]["name"]] \[/b\] ([comment["created_by"]["rank"]])\[br\]" + if (isnull(comment["deleted_by"])) + comment_markup += "[comment["entry"]]" + else + comment_markup += "\[i\]Comment deleted by [comment["deleted_by"]] at [comment["deleted_at"]]\[/i\]" + template += {"[comment_markup]\[br\]\[br\]"} + else + template += {"\[b\]No comments\[/b\]\[br\]"} + else + template += {"\[b\]Medical record not found!\[/b\]\[br\]"} + + info = parsepencode(template, null, null, FALSE) + update_icon() + #undef MAX_FIELDS /obj/item/paper/colonial_grunts diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 88463357399b..48edb6823f45 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -71,8 +71,10 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( var/areastring = null var/obj/item/cell/cell - var/start_charge = 90 //Initial cell charge % - var/cell_type = /obj/item/cell/apc/empty //0 = no cell, 1 = regular, 2 = high-cap (x5) <- old, now it's just 0 = no cell, otherwise dictate cellcapacity by changing this value. 1 used to be 1000, 2 was 2500 + /// Initial cell charge % + var/start_charge = 90 + /// 0 = no cell, 1 = regular, 2 = high-cap (x5) <- old, now it's just 0 = no cell, otherwise dictate cellcapacity by changing this value. 1 used to be 1000, 2 was 2500 + var/cell_type = /obj/item/cell/apc/empty var/opened = APC_COVER_CLOSED var/shorted = 0 @@ -86,7 +88,6 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( var/locked = 1 var/coverlocked = 1 var/aidisabled = 0 - var/obj/structure/machinery/power/terminal/terminal = null var/lastused_light = 0 var/lastused_equip = 0 var/lastused_environ = 0 @@ -99,16 +100,21 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( powernet = 0 //Set so that APCs aren't found as powernet nodes //Hackish, Horrible, was like this before I changed it :( var/debug = 0 - var/autoflag = 0 // 0 = off, 1 = eqp and lights off, 2 = eqp off, 3 = all on. - var/has_electronics = 0 // 0 - none, 1 - plugged in, 2 - secured by screwdriver - var/overload = 1 //Used for the Blackout malf module - var/beenhit = 0 //Used for counting how many times it has been hit, used for Aliens at the moment + /// 0 = off, 1 = eqp and lights off, 2 = eqp off, 3 = all on. + var/autoflag = 0 + /// 0 - none, 1 - plugged in, 2 - secured by screwdriver + var/has_electronics = 0 + /// Used for the Blackout malf module + var/overload = 1 + /// Used for counting how many times it has been hit, used for Aliens at the moment + var/beenhit = 0 var/longtermpower = 10 var/update_state = -1 var/update_overlay = -1 var/global/status_overlays = 0 var/updating_icon = 0 - var/crash_break_probability = 85 //Probability of APC being broken by a shuttle crash on the same z-level + /// Probability of APC being broken by a shuttle crash on the same z-level, set to 0 to have the APC not be destroyed + var/crash_break_probability = 85 var/global/list/status_overlays_lock var/global/list/status_overlays_charging @@ -1384,6 +1390,29 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( pixel_x = -30 dir = 8 +//------UPP APCs ------// + +/// Same as other APCs, but with restricted access +/obj/structure/machinery/power/apc/upp + cell_type = /obj/item/cell/high + req_one_access = list(ACCESS_UPP_ENGINEERING) + +/obj/structure/machinery/power/apc/upp/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/upp/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/upp/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/upp/west + pixel_x = -30 + dir = 8 + //------ Directional APCs ------// /obj/structure/machinery/power/apc/no_power diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm index 91d5ee08ac84..c8fa6e2abf95 100644 --- a/code/modules/power/power.dm +++ b/code/modules/power/power.dm @@ -5,6 +5,10 @@ unslashable = TRUE health = 0 var/datum/powernet/powernet = null + + /// Reference to a power terminal, used to connect SMES and APCs to the grid. + var/obj/structure/machinery/power/terminal/terminal = null + var/directwired = 1 // by default, power machines are connected by a cable in a neighbouring turf // if set to 0, requires a 0-X cable on this turf use_power = USE_POWER_NONE diff --git a/code/modules/power/smes.dm b/code/modules/power/smes.dm index 7e70595f5eea..e8dcb7fdd9c5 100644 --- a/code/modules/power/smes.dm +++ b/code/modules/power/smes.dm @@ -32,7 +32,6 @@ var/last_output = 0 var/name_tag = null - var/obj/structure/machinery/power/terminal/terminal = null //Holders for powerout event. var/open_hatch = 0 diff --git a/code/modules/power/terminal.dm b/code/modules/power/terminal.dm index 70aacf6c7616..c5049c165275 100644 --- a/code/modules/power/terminal.dm +++ b/code/modules/power/terminal.dm @@ -22,13 +22,12 @@ hide(T.intact_tile) /obj/structure/machinery/power/terminal/Destroy() - if(master) - if(istype(master, /obj/structure/machinery/power/apc)) - var/obj/structure/machinery/power/apc/A = master - A.terminal = null - master = null . = ..() + if(!master) + return + master.terminal = null + master = null /obj/structure/machinery/power/terminal/hide(i) if(i) diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm index 9fc5e01863dd..bcd4745b0337 100644 --- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm @@ -1191,3 +1191,44 @@ /obj/item/ammo_box/magazine/mar50/empty empty = TRUE + +//-----------------------l54 Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/l54 + name = "magazine box (L54 x 16)" + icon_state = "base_l54" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "_reg" + overlay_gun_type = "_l54" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/l54 + +/obj/item/ammo_box/magazine/l54/empty + empty = TRUE + +/obj/item/ammo_box/magazine/l54/ap + name = "magazine box (AP L54 x 16)" + overlay_ammo_type = "_ap" + overlay_content = "_ap" + magazine_type = /obj/item/ammo_magazine/pistol/l54/ap + +/obj/item/ammo_box/magazine/l54/ap/empty + empty = TRUE + +/obj/item/ammo_box/magazine/l54/hp + name = "magazine box (HP L54 x 16)" + overlay_ammo_type = "_hp" + overlay_content = "_hp" + magazine_type = /obj/item/ammo_magazine/pistol/l54/hp + +/obj/item/ammo_box/magazine/l54/hp/empty + empty = TRUE + +/obj/item/ammo_box/magazine/l54/incen + name = "magazine box (Incen L54 x 16)" + overlay_ammo_type = "_incen" + overlay_content = "_incen" + magazine_type = /obj/item/ammo_magazine/pistol/l54/incendiary + +/obj/item/ammo_box/magazine/l54/incen/empty + empty = TRUE diff --git a/code/modules/projectiles/guns/lever_action.dm b/code/modules/projectiles/guns/lever_action.dm index fb89d73459a6..d322aed39b2a 100644 --- a/code/modules/projectiles/guns/lever_action.dm +++ b/code/modules/projectiles/guns/lever_action.dm @@ -135,7 +135,6 @@ their unique feature is that a direct hit will buff your damage and firerate /obj/item/weapon/gun/lever_action/proc/reset_hit_buff(mob/user, one_hand_lever) if(!(flags_gun_lever_action & USES_STREAKS)) return - SIGNAL_HANDLER streak = 0 lever_sound = initial(lever_sound) lever_message = initial(lever_message) @@ -504,7 +503,6 @@ their unique feature is that a direct hit will buff your damage and firerate /obj/item/weapon/gun/lever_action/xm88/reset_hit_buff(mob/user, one_hand_lever) if(!(flags_gun_lever_action & USES_STREAKS)) return - SIGNAL_HANDLER if(streak > 0) to_chat(user, SPAN_WARNING("[src] beeps as it loses its targeting data, and returns to normal firing procedures.")) streak = 0 diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm index 6e30969343ef..8e4a31532ce7 100644 --- a/code/modules/projectiles/guns/pistols.dm +++ b/code/modules/projectiles/guns/pistols.dm @@ -949,3 +949,80 @@ Unlike other pistols, it can be equipped with limited mods (small muzzle, underb damage_mult = BASE_BULLET_DAMAGE_MULT - BULLET_DAMAGE_MULT_TIER_7 recoil = RECOIL_AMOUNT_TIER_5 recoil_unwielded = RECOIL_AMOUNT_TIER_4 + +//------------------------------------------------------- +/* + +L54 service pistol + +*/ + +/obj/item/weapon/gun/pistol/l54 + name = "\improper L54 service pistol" + desc = "Standard issue semi-automatic service pistol of the NSPA. Chambered in 9mm, it is comparable to the popular M4A3 pistol utilized by the USCM." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/TWE/pistols.dmi' + icon_state = "l54" + item_state = "l54" + fire_sound = 'sound/weapons/gun_vp78_v2.ogg' + reload_sound = 'sound/weapons/gun_vp78_reload.ogg' + unload_sound = 'sound/weapons/gun_vp78_unload.ogg' + current_mag = /obj/item/ammo_magazine/pistol/l54 + flags_gun_features = GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED + attachable_allowed = list( + /obj/item/attachable/suppressor, + /obj/item/attachable/reddot, + /obj/item/attachable/reflex, + /obj/item/attachable/flashlight, + /obj/item/attachable/compensator, + /obj/item/attachable/lasersight, + /obj/item/attachable/extended_barrel, + /obj/item/attachable/heavy_barrel, + /obj/item/attachable/burstfire_assembly, + ) + +/obj/item/weapon/gun/pistol/l54/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 28, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 21, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17) + +/obj/item/weapon/gun/pistol/l54/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_12) + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 + accuracy_mult_unwielded = BASE_ACCURACY_MULT + scatter = SCATTER_AMOUNT_TIER_6 + burst_scatter_mult = SCATTER_AMOUNT_TIER_6 + scatter_unwielded = SCATTER_AMOUNT_TIER_6 + damage_mult = BASE_BULLET_DAMAGE_MULT + +/obj/item/weapon/gun/pistol/l54_custom + name = "\improper L54 custom service pistol" + desc = "The standard-issue semi-automatic sidearm of the NSPA and various military forces within the Three World Empire, chambered in 9mm. Functionally comparable to the USCM’s M4A3 service pistol, this particular example has been heavily customized—featuring a gold-alloy finish, extended barrel with an integrated compensator, and precision-tuned internals, as well as an auto-eject feature. These modifications push its performance well beyond standard service specifications." + icon = 'icons/obj/items/weapons/guns/guns_by_faction/TWE/pistols.dmi' + icon_state = "l54_custom" + item_state = "l54_custom" + current_mag = /obj/item/ammo_magazine/pistol/l54_custom + attachable_allowed = list( + /obj/item/attachable/reddot, + /obj/item/attachable/reflex, + /obj/item/attachable/flashlight, + /obj/item/attachable/lasersight, + /obj/item/attachable/burstfire_assembly, + ) + +/obj/item/weapon/gun/pistol/l54_custom/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 30, "muzzle_y" = 20,"rail_x" = 10, "rail_y" = 21, "under_x" = 21, "under_y" = 17, "stock_x" = 21, "stock_y" = 17) + +/obj/item/weapon/gun/pistol/l54_custom/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_12) + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10 + accuracy_mult_unwielded = BASE_ACCURACY_MULT + scatter = SCATTER_AMOUNT_TIER_6 + burst_scatter_mult = SCATTER_AMOUNT_TIER_6 + scatter_unwielded = SCATTER_AMOUNT_TIER_6 + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_5 + flags_gun_features = GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AUTO_EJECTOR + +/obj/item/weapon/gun/pistol/l54_custom/alt + desc = "The standard-issue semi-automatic sidearm of the NSPA and various military forces within the Three World Empire, chambered in 9mm. Functionally comparable to the USCM’s M4A3 service pistol, this particular example has been heavily customized—featuring a dark special-alloy finish, extended barrel with an integrated compensator, and precision-tuned internals, as well as an auto-eject feature. These modifications push its performance well beyond standard service specifications." + icon_state = "l54_custom_alt" + item_state = "l54_custom_alt" diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm index d73f682db13c..710d5bfaf468 100644 --- a/code/modules/projectiles/guns/revolvers.dm +++ b/code/modules/projectiles/guns/revolvers.dm @@ -445,9 +445,9 @@ set_burst_delay(FIRE_DELAY_TIER_12) -/obj/item/weapon/gun/revolver/m44/custom/webley //Van Bandolier's Webley. - name = "\improper Webley Mk VI service pistol" - desc = "A heavy top-break revolver. Bakelite grips, and older than most nations. .455 was good enough for angry tribesmen and les boche, and by Gum it'll do for Colonial Marines and xenomorphs as well." +/obj/item/weapon/gun/revolver/m44/custom/webley + name = "\improper Webley SRV-80" + desc = "A top-break revolver used by the Imperial Armed Space Force’s 24th Para Regiment, and sometimes seen in the hands of other TWE military forces. Fires .455 Magnum. Archaic, yes, but brutally effective. Vacuum-sealed internals, Bakelite-style grips, and a recoil like getting kicked by a mule. Still puts things down. Hard." current_mag = /obj/item/ammo_magazine/internal/revolver/webley icon = 'icons/obj/items/weapons/guns/guns_by_faction/TWE/revolvers.dmi' icon_state = "webley" @@ -455,6 +455,15 @@ attachable_allowed = list( /obj/item/attachable/bayonet, /obj/item/attachable/bayonet/upp, + /obj/item/attachable/bayonet/antique, + /obj/item/attachable/bayonet/custom, + /obj/item/attachable/bayonet/custom/red, + /obj/item/attachable/bayonet/custom/blue, + /obj/item/attachable/bayonet/custom/black, + /obj/item/attachable/bayonet/tanto, + /obj/item/attachable/bayonet/tanto/blue, + /obj/item/attachable/bayonet/rmc_replica, + /obj/item/attachable/bayonet/rmc, ) /obj/item/weapon/gun/revolver/m44/custom/webley/set_gun_config_values() @@ -462,6 +471,9 @@ accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 +/obj/item/weapon/gun/revolver/m44/custom/webley/IASF_webley + icon_state = "webley_black" + item_state = "m44r" //------------------------------------------------------- //RUSSIAN REVOLVER //Based on the 7.62mm Russian revolvers. diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm index 09f9f7e76e74..f8e77348c7f9 100644 --- a/code/modules/projectiles/guns/smgs.dm +++ b/code/modules/projectiles/guns/smgs.dm @@ -917,7 +917,7 @@ /obj/item/weapon/gun/smg/p90/twe name = "\improper FN-TWE P90 submachinegun" - desc = "A variation of the FN P90 submachine gun. Used by mercenaries and royal marines commandos. This weapon only accepts the AP variation of the 5.7×28mm rounds." + desc = "A variation of the FN P90 submachine gun. Used by mercenaries and royal marines commandos. This weapon only accepts 5.7×28mm rounds." icon = 'icons/obj/items/weapons/guns/guns_by_faction/TWE/smgs.dmi' icon_state = "p90_twe" item_state = "p90_twe" diff --git a/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm index a6c502b2e14e..9aba48bb598e 100644 --- a/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm +++ b/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm @@ -421,6 +421,7 @@ skill_locked = TRUE var/f_aiming_time = 4 SECONDS var/aiming = FALSE + /obj/item/weapon/gun/launcher/rocket/brute/set_gun_attachment_offsets() attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 18,"rail_x" = 8, "rail_y" = 17, "under_x" = 19, "under_y" = 14, "stock_x" = 19, "stock_y" = 14) @@ -477,11 +478,7 @@ if(do_after(user, f_aiming_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) if(!QDELETED(target)) - .=..() - if(.) - user.attack_log += "\[[time_stamp()]\] [key_name(user)] fired [name] on [target]" - msg_admin_niche("[key_name(user, user.client)] fired [src.name] on [target.name] at ([target.x],[target.y],[target.z] [ADMIN_JMP(target)] ") - log_game("[key_name(user)] fired [src.name] on [target.name] at ([target.x],[target.y],[target.z])") + . = ..() target.overlays -= lockon_icon target.overlays -= lockon_direction_icon @@ -491,4 +488,4 @@ /obj/item/weapon/gun/launcher/rocket/brute/make_rocket(mob/user, drop_override = 0, empty = 1) if(empty) return - .=..() + . = ..() diff --git a/code/modules/projectiles/guns/specialist/scout.dm b/code/modules/projectiles/guns/specialist/scout.dm index 6fa8a80a33e6..14af6ec26ef4 100644 --- a/code/modules/projectiles/guns/specialist/scout.dm +++ b/code/modules/projectiles/guns/specialist/scout.dm @@ -82,11 +82,9 @@ /obj/item/weapon/gun/rifle/m4ra_custom/set_gun_config_values() ..() set_fire_delay(FIRE_DELAY_TIER_6) - set_burst_amount(BURST_AMOUNT_TIER_2) - set_burst_delay(FIRE_DELAY_TIER_12) + set_burst_amount(0) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_2 scatter = SCATTER_AMOUNT_TIER_8 - burst_scatter_mult = SCATTER_AMOUNT_TIER_8 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 recoil = RECOIL_AMOUNT_TIER_5 damage_falloff_mult = 0 diff --git a/code/modules/projectiles/magazines/pistols.dm b/code/modules/projectiles/magazines/pistols.dm index 3bf5bc39d82f..051fccd2811d 100644 --- a/code/modules/projectiles/magazines/pistols.dm +++ b/code/modules/projectiles/magazines/pistols.dm @@ -425,3 +425,69 @@ Unlike other pistols, it can be equipped with limited mods (small muzzle, magazi bonus_overlay = "m10_drum_overlay" max_rounds = 92 gun_type = /obj/item/weapon/gun/pistol/m10 + +//------------------------------------------------------- +/* + +L54 service pistol + +*/ + +/obj/item/ammo_magazine/pistol/l54 + name = "\improper L54 magazine (9mm)" + desc = "A pistol magazine that fits the L54." + caliber = "9mm" + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/TWE/pistols.dmi' + icon_state = "l54" + max_rounds = 12 + w_class = SIZE_SMALL + default_ammo = /datum/ammo/bullet/pistol + gun_type = /obj/item/weapon/gun/pistol/l54 + ammo_band_icon = "+l54_band" + ammo_band_icon_empty = "+l54_band_e" + +/obj/item/ammo_magazine/pistol/l54_custom + name = "\improper L54-S magazine (.9x20mm)" + desc = "A modified L54 pistol magazine loaded with proprietary .9x20mm ammunition. Incompatible with standard 9mm weapons or magazines." + caliber = "9mm (special)" + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/TWE/pistols.dmi' + icon_state = "l54" + max_rounds = 12 + w_class = SIZE_SMALL + default_ammo = /datum/ammo/bullet/pistol/l54_custom + gun_type = /obj/item/weapon/gun/pistol/l54_custom + ammo_band_icon = "+l54_band" + ammo_band_icon_empty = "+l54_band_e" + ammo_band_color = AMMO_BAND_COLOR_HIGH_VELOCITY + +/obj/item/ammo_magazine/pistol/l54/hp + name = "\improper L54 hollowpoint magazine (9mm)" + desc = "A pistol magazine for the L54. This one contains hollowpoint bullets, which have noticeably higher stopping power on unarmored targets, and noticeably less on armored targets." + default_ammo = /datum/ammo/bullet/pistol/hollow + ammo_band_color = AMMO_BAND_COLOR_HOLLOWPOINT + +/obj/item/ammo_magazine/pistol/l54/ap + name = "\improper L54 AP magazine (9mm)" + desc = "A pistol magazine for the L54. This one contains armor-piercing bullets, which have noticeably higher stopping power on well-armored targets, and noticeably less on unarmored or lightly-armored targets." + default_ammo = /datum/ammo/bullet/pistol/ap + ammo_band_color = AMMO_BAND_COLOR_AP + +/obj/item/ammo_magazine/pistol/l54/rubber + name = "\improper L54 Rubber magazine (9mm)" + default_ammo = /datum/ammo/bullet/pistol/rubber + ammo_band_color = AMMO_BAND_COLOR_RUBBER + +/obj/item/ammo_magazine/pistol/l54/incendiary + name = "\improper L54 incendiary magazine (9mm)" + default_ammo = /datum/ammo/bullet/pistol/incendiary + ammo_band_color = AMMO_BAND_COLOR_INCENDIARY + +/obj/item/ammo_magazine/pistol/l54/penetrating + name = "\improper L54 wall-penetrating magazine (9mm)" + default_ammo = /datum/ammo/bullet/pistol/ap/penetrating + ammo_band_color = AMMO_BAND_COLOR_PENETRATING + +/obj/item/ammo_magazine/pistol/l54/toxin + name = "\improper L54 toxin magazine (9mm)" + default_ammo = /datum/ammo/bullet/pistol/ap/toxin + ammo_band_color = AMMO_BAND_COLOR_TOXIN diff --git a/code/modules/projectiles/magazines/smgs.dm b/code/modules/projectiles/magazines/smgs.dm index acb5e6425237..550ac48676d8 100644 --- a/code/modules/projectiles/magazines/smgs.dm +++ b/code/modules/projectiles/magazines/smgs.dm @@ -284,8 +284,8 @@ //P90, a classic SMG.(TWE version) /obj/item/ammo_magazine/smg/p90/twe - name = "\improper FN-TWE P90 AP magazine (5.7×28mm)" - desc = "An armor-piercing 5.7×28mm magazine for the FN-TWE P90." + name = "\improper FN P90 AP magazine (5.7×28mm)" + desc = "An armor-piercing 5.7×28mm magazine for the FN P90." default_ammo = /datum/ammo/bullet/smg/p90/twe_ap caliber = "5.7×28mm" icon = 'icons/obj/items/weapons/guns/ammo_by_faction/TWE/smgs.dmi' diff --git a/code/modules/shuttle/dropship.dm b/code/modules/shuttle/dropship.dm index 33c33d8325a5..edbdde8a8a60 100644 --- a/code/modules/shuttle/dropship.dm +++ b/code/modules/shuttle/dropship.dm @@ -573,3 +573,17 @@ /obj/structure/shuttle/part/upp_sof_alt/transparent opacity = FALSE + +// CLF Ship Cosmetic + +/obj/structure/shuttle/part/dropship_clf + name = "\improper UD-9M 'Dogbite'" + desc = "The UD-9M 'Dogbite' is a repurposed utility dropship, originally designed for short-haul cargo operations across colonial systems. Stolen and heavily modified by the Colonial Liberation Front, it's now a rugged smuggler and strike craft, capable of dropping a full fireteam through tight patrol nets. Its hull is scarred with gunfire, rust, and graffiti — a patchwork of rebellion held together by grit and stolen parts." + icon = 'icons/turf/CLF_dropship.dmi' + icon_state = "1" + +/obj/structure/shuttle/part/dropship_clf/ex_act(severity, direction) + return FALSE + +/obj/structure/shuttle/part/dropship_clf/transparent + opacity = FALSE diff --git a/code/modules/surgery/xeno.dm b/code/modules/surgery/xeno.dm index 4082aadc4a8f..ede489c28c61 100644 --- a/code/modules/surgery/xeno.dm +++ b/code/modules/surgery/xeno.dm @@ -18,7 +18,7 @@ /datum/surgery/xenomorph/can_start(mob/user, mob/living/carbon/xenomorph/patient, obj/limb/L, obj/item/tool) if(islarva(patient) || isfacehugger(patient)) - to_chat(user, SPAN_DANGER("This race is probably too small to have a mature organ worthy to extract...")) + to_chat(user, SPAN_DANGER("This organism is probably too small to have a mature organ worthy of extraction...")) return FALSE if((patient.tier > 2 || isqueen(patient)) && !istype(tool, /obj/item/tool/surgery/scalpel/laser/advanced)) to_chat(user, SPAN_DANGER("Chitin of this kind is too thick for an ordinary tool, you would need something special.")) @@ -45,44 +45,38 @@ success_sound = 'sound/handling/bandage.ogg' failure_sound = 'sound/surgery/organ2.ogg' +//No need for to-patient messages on this one, they're heckin' dead /datum/surgery_step/xenomorph/cut_exoskeleton/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool_type == /obj/item/tool/surgery/circular_saw || tool_type == /obj/item/tool/surgery/scalpel/laser/advanced) - user.affected_message(target, - SPAN_NOTICE("You start to cut [target.caste_type] carapace apart using [tool], carefully, trying to prevent acid leaks."), - SPAN_NOTICE("[user] starts to cut your carapace apart using [tool], carefully, trying to prevent acid leaks."), - SPAN_NOTICE("[user] starts to cut [target.caste_type] carapace. [tool], carefully, trying to prevent acid leaks.")) + user.visible_message( + SPAN_NOTICE("[user] carefully starts to cut the [target.caste_type]'s carapace apart with [tool], trying to prevent acidic blood from leaking."), + SPAN_NOTICE("You carefully start to cut the [target.caste_type]'s carapace apart using [tool], trying to prevent acidic blood from leaking.")) else - user.affected_message(target, - SPAN_NOTICE("You start to [pick("smash", "crack", "break")] [target.caste_type] carapace apart using [tool], Recklessly, with acid splashing on you!"), - SPAN_NOTICE("[user] starts to [pick("smash", "crack", "break")] your carapace apart using [tool], recklessly splashing acid everywhere!"), - SPAN_NOTICE("[user] starts to [pick("smash", "crack", "break")] [target.caste_type] carapace with [tool], recklessly splashing acid everywhere!")) - //we dont really need log interact since we're working with dead body... I hope + user.visible_message( + SPAN_NOTICE("[user] recklessly starts to [pick("smash", "crack", "break")] the [target.caste_type]'s carapace apart with [tool] as acidic blood begins to burst through the corpse's seams!"), + SPAN_NOTICE("You recklessly start to [pick("smash", "crack", "break")] the [target.caste_type]'s carapace apart using [tool] as acidic blood begins to burst through the corpse's seams!")) + //we dont really need a log interact since we're working with dead bodies... I hope /datum/surgery_step/xenomorph/cut_exoskeleton/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool_type == /obj/item/tool/surgery/circular_saw) - user.affected_message(target, - SPAN_NOTICE("You succesfully cut through [target.caste_type] carapace apart using [tool]."), - SPAN_NOTICE("[user] successfully cuts through your carapace using [tool]."), - SPAN_NOTICE("[user] successfully cuts [target.caste_type] carapace using [tool].")) + user.visible_message( + SPAN_NOTICE("[user] successfully cuts through the [target.caste_type]'s carapace using [tool]."), + SPAN_NOTICE("You successfully cut through the [target.caste_type]'s carapace using [tool].")) else - user.affected_message(target, - SPAN_NOTICE("You successfully destroy [target.caste_type] carapace into bits and pieces using [tool]."), - SPAN_NOTICE("[user] successfully destroys your carapace into bits and pieces using [tool]."),, - SPAN_NOTICE("[user] successfully destroys [target.caste_type] carapace into bits and pieces using [tool].")) + user.visible_message( + SPAN_NOTICE("[user] successfully destroys the [target.caste_type]'s carapace into bits and pieces using [tool]."), + SPAN_NOTICE("You successfully destroy the [target.caste_type]'s carapace into bits and pieces using [tool].")) for(var/mob/living/carbon/human/victim in orange(1, target)) if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) continue - to_chat(victim, SPAN_HIGHDANGER("You are covered in acid as you feel agonizing pain!")) + victim.visible_message( + SPAN_WARNING("[victim] is [pick("covered", "drenched", "soaked")] in the acidic blood that [pick("spurts", "sprays", "bursts")] out from the [target.caste_type]!"), + SPAN_HIGHDANGER("You feel agonizing pain as you're drenched in acid!")) victim.apply_damage(rand(75, 125), BURN) // you WILL wear biosuit. playsound(victim, "acid_sizzle", 25, TRUE) animation_flash_color(victim, "#FF0000") - -/datum/surgery_step/xenomorph/cut_exoskeleton/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, failing to cut [target.caste_type] carapace apart using [tool]!"), - SPAN_WARNING("[user]'s hand slips, failing to cut your carapace apart using [tool]!"), - SPAN_WARNING("[user] hand slips, failing to cut [target.caste_type] carapace using [tool]!")) - return FALSE + //Having acid spray everywhere *but* the floor makes no sense, but this can be removed if research gets too messy. + target.add_splatter_floor(get_turf(target.loc)) /datum/surgery_step/xenomorph/open_exoskeleton name = "Pry exoskeleton open" @@ -94,35 +88,39 @@ failure_sound = 'sound/surgery/organ1.ogg' /datum/surgery_step/xenomorph/open_exoskeleton/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start to pry [target.caste_type] carapace open using [tool]"), - SPAN_NOTICE("[user] starts to pry your carapace open with [tool] very carefully"), - SPAN_NOTICE("[user] starts to pry [target.caste_type] carapace open with [tool] very carefully")) + if(tool_type == /obj/item/tool/surgery/retractor) + user.visible_message( + SPAN_NOTICE("[user] carefully starts to pry the [target.caste_type]'s carapace open with [tool]."), + SPAN_NOTICE("You carefully start to pry the [target.caste_type]'s carapace open using [tool].")) + else + user.visible_message( + SPAN_NOTICE("[user] starts to pry the [target.caste_type]'s carapace open using [tool] like a crazed medieval doctor!"), + SPAN_NOTICE("You start to pry the [target.caste_type]'s carapace open using [tool] like a crazed medieval doctor!")) /datum/surgery_step/xenomorph/open_exoskeleton/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool_type == /obj/item/tool/surgery/retractor) - user.affected_message(target, - SPAN_NOTICE("You hold [target.caste_type] carapace and exoskeleton open using [tool], exposing [target.caste_type] vital organs"), - SPAN_NOTICE("[user] holds your carapace and exoskeleton open with [tool], exposing [target.caste_type] vital organs "), - SPAN_NOTICE("[user] holds [target.caste_type] carapace and exoskeleton open with [tool], exposing [target.caste_type] vital organs ")) + user.visible_message( + SPAN_NOTICE("[user] holds the [target.caste_type]'s carapace and exoskeleton open with [tool], exposing the [target.caste_type]'s vital organs."), + SPAN_NOTICE("You hold the [target.caste_type]'s carapace and exoskeleton open using [tool], exposing the [target.caste_type]'s vital organs.")) else - user.affected_message(target, - SPAN_NOTICE("You hold [target.caste_type] carapace open using [tool] like a medieval doctor, exposing [target.caste_type] vital organs"), - SPAN_NOTICE("[user] starts to open your carapace with [tool] very carefully"), - SPAN_NOTICE("[user] starts to open [target.caste_type] carapace with [tool] very carefully")) + user.visible_message( + SPAN_NOTICE("[user] holds the [target.caste_type]'s carapace open with [tool] like a wacky kid at a science fair."), + SPAN_NOTICE("You hold the [target.caste_type]'s carapace open using [tool] like a wacky kid at a science fair.")) /datum/surgery_step/xenomorph/open_exoskeleton/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!"), - SPAN_WARNING("[user] hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!"), - SPAN_WARNING("[user] hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!")) + user.visible_message( + SPAN_WARNING("[user] messes up and [user.p_their()] hand slips, letting go of the [target.caste_type]'s carapace and exoskeleton. It snaps back into place, sending acid flying!"), + SPAN_WARNING("Your hand slips, letting go of the [target.caste_type]'s carapace and exoskeleton. It snaps back into place, sending acid flying!")) for(var/mob/living/carbon/human/victim in orange(1, target)) if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) continue - to_chat(victim, SPAN_DANGER("You are covered in blood gushing out from [target.caste_type]")) + victim.visible_message( + SPAN_WARNING("[victim] is [pick("covered", "drenched", "soaked")] in the acidic blood that [pick("spurts", "sprays", "bursts")] out from the [target.caste_type]!"), + SPAN_DANGER("You're [pick("covered", "drenched", "soaked")] in the acidic blood that [pick("spurts", "sprays", "bursts")] out from the [target.caste_type]!")) victim.apply_damage(rand(50, 75), BURN) // still dangerous playsound(victim, "acid_sizzle", 25, TRUE) animation_flash_color(victim, "#FF0000") + target.add_splatter_floor(get_turf(target.loc)) return FALSE /datum/surgery_step/xenomorph/severe_connections @@ -142,35 +140,39 @@ failure_sound = 'sound/surgery/organ2.ogg' /datum/surgery_step/xenomorph/severe_connections/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start to sever [target.caste_type] organ links using [tool], with confidence"), - SPAN_NOTICE("[user] start to sever your organ links using [tool], with confidence"), - SPAN_NOTICE("[user] starts to sever [target.caste_type] organ links using [tool], with confidence")) + if(tool_type == /obj/item/tool/surgery/scalpel || tool_type == /obj/item/tool/surgery/scalpel/pict_system) + user.visible_message( + SPAN_NOTICE("[user] confidently starts to sever the [target.caste_type]'s alien organ from its surrounding connective tissue using [tool]."), + SPAN_NOTICE("You confidently start to sever the [target.caste_type]'s alien organ from its surrounding connective tissue using [tool].")) + else + user.visible_message( + SPAN_NOTICE("[user] confidently starts to rip the [target.caste_type]'s connective tissue apart using [tool]"), + SPAN_NOTICE("You confidently start to rip the [target.caste_type]'s connective tissue apart using [tool].")) /datum/surgery_step/xenomorph/severe_connections/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool_type == /obj/item/tool/surgery/scalpel || tool_type == /obj/item/tool/surgery/scalpel/pict_system) - user.affected_message(target, - SPAN_NOTICE("You severed [target.caste_type] connections and links to vital organs using [tool]"), - SPAN_NOTICE("[user] severed your connections and links to vital organs using [tool]"), - SPAN_NOTICE("[user] severed [target.caste_type] connections and links to vital organs using [tool]")) + user.visible_message( + SPAN_NOTICE("[user] severs the connective tissue that holds the [target.caste_type]'s alien organ in place using [tool]."), + SPAN_NOTICE("You sever the connective tissue that holds the [target.caste_type]'s alien organ in place using [tool].")) else - user.affected_message(target, - SPAN_NOTICE("You rip [target.caste_type] connections and links to vital organs apart using [tool]"), - SPAN_NOTICE("[user] rips your connections and links to vital organs apart using [tool]"), - SPAN_NOTICE("[user] rips [target.caste_type] connections and links to vital organs apart using [tool]")) + user.visible_message( + SPAN_NOTICE("[user] gleefully rips the [target.caste_type]'s connective tissue apart using [tool]."), + SPAN_NOTICE("You gleefully rip the [target.caste_type]'s connective tissue apart using [tool].")) /datum/surgery_step/xenomorph/severe_connections/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, damaging one of [target.caste_type] [pick("arteries", "viens")], gushing acid blood everywhere!"), - SPAN_WARNING("[user] hand slips, damaging one of your [pick("arteries", "viens")], gushing acid blood everywhere!"), - SPAN_WARNING("[user] hand slips, damaging one of [target.caste_type] [pick("arteries", "viens")], gushing acid blood everywhere!")) + user.visible_message( + SPAN_WARNING("[user] messes up and [user.p_their()] hand slips, damaging one of the [target.caste_type]'s [pick("arteries", "veins")]. Acidic blood sprays everywhere!"), + SPAN_WARNING("Your hand slips, damaging one of the [target.caste_type]'s [pick("arteries", "veins")]. Acidic blood sprays everywhere!")) for(var/mob/living/carbon/human/victim in orange(1, target)) if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) continue - to_chat(victim, SPAN_DANGER("You are covered in blood gushing out from [target.caste_type]")) - victim.apply_damage(rand(50, 75), BURN) // not SO dangerous but still is + victim.visible_message( + SPAN_WARNING("[victim] is [pick("covered", "drenched", "soaked")] in the acidic blood that [pick("spurts", "sprays", "bursts")] out from the [target.caste_type]!"), + SPAN_DANGER("You're [pick("covered", "drenched", "soaked")] in the acidic blood that [pick("spurts", "sprays", "bursts")] out from the [target.caste_type]!")) + victim.apply_damage(rand(50, 75), BURN) // not AS dangerous but still is playsound(victim, "acid_sizzle", 25, TRUE) animation_flash_color(victim, "#FF0000") + target.add_splatter_floor(get_turf(target.loc)) /datum/surgery_step/xenomorph/remove_organ name = "Remove Xenomorph Organ" @@ -188,33 +190,28 @@ /datum/surgery_step/xenomorph/remove_organ/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool) - user.affected_message(target, - SPAN_NOTICE("You start to get a firm grip on the [target.caste_type] organ using [tool] "), - SPAN_NOTICE("[user] start to get a firm grip on your insides using [tool]"), - SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type] organ using [tool] ")) + user.visible_message( + SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type]'s alien organ using [tool]."), + SPAN_NOTICE("You start to get a firm grip on the [target.caste_type]'s alien organ using [tool].")) else - user.affected_message(target, - SPAN_NOTICE("You start to get a firm grip on the [target.caste_type] organ"), - SPAN_NOTICE("[user] starts to get a firm grip on your insides"), - SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type] organ")) + user.visible_message( + SPAN_NOTICE("Like a mad scientist, [user] starts to get a firm grip on the [target.caste_type]'s alien organ!"), + SPAN_NOTICE("Like a mad scientist, you start to get a firm grip on the [target.caste_type]'s alien organ!")) /datum/surgery_step/xenomorph/remove_organ/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool) - user.affected_message(target, - SPAN_NOTICE("You pulled the [target.caste_type] organ out using [tool]"), - SPAN_NOTICE("[user] pulled your organ out using [tool]"), - SPAN_NOTICE("[user] pulled the [target.caste_type] organ out using [tool]")) + user.visible_message( + SPAN_NOTICE("[user] pulls the [target.caste_type]'s alien organ out using [tool]."), + SPAN_NOTICE("You pull the [target.caste_type]'s alien organ out using [tool].")) else if(istype(user.wear_suit, /obj/item/clothing/suit/bio_suit)) - user.affected_message(target, - SPAN_NOTICE("You pulled the [target.caste_type] organ out!"), - SPAN_NOTICE("[user] pulles your insides out!"), - SPAN_NOTICE("[user] pulled the [target.caste_type] organ out.")) + user.visible_message( + SPAN_NOTICE("[user] pulls the [target.caste_type]'s alien organ out."), + SPAN_NOTICE("You pull the [target.caste_type]'s alien organ out.")) else - user.affected_message(target, - SPAN_NOTICE("You burn your hands as you pulled the [target.caste_type] organ out!"), - SPAN_NOTICE("[user] burns their hands as they pulled your insides out!"), - SPAN_NOTICE("[user] burns [user.p_their()] hands as [user.p_they()] pulled the [target.caste_type] organ out.")) + user.visible_message( + SPAN_WARNING("[user] burns [user.p_their()] hands as [user.p_they()] pull the [target.caste_type]'s alien organ out!"), + SPAN_WARNING("You burn your hands as you pull the [target.caste_type]'s alien organ out!")) user.emote("pain") if(user.hand) user.apply_damage(rand(30,50), BURN, "l_hand") @@ -222,6 +219,7 @@ user.apply_damage(rand(30,50), BURN, "r_hand") playsound(user, "acid_sizzle", 25, TRUE) animation_flash_color(user, "#FF0000") + //no blood splatter here, we're just sticking our hands in, not cutting anything open var/obj/item/organ/xeno/organ = locate() in target if(!isnull(organ)) organ.forceMove(target.loc) @@ -230,9 +228,8 @@ /datum/surgery_step/xenomorph/remove_organ/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool) - user.affected_message(target, - SPAN_NOTICE("You fail to pull the [target.caste_type] organ out using [tool]"), - SPAN_NOTICE("[user] fails to pull your organ out using [tool]"), - SPAN_NOTICE("[user] fails to pull the [target.caste_type] organ out using [tool]")) + user.visible_message( + SPAN_NOTICE("[user] fails to pull the [target.caste_type]'s alien organ out using [tool]."), + SPAN_NOTICE("You fail to pull the [target.caste_type]'s alien organ out using [tool].")) return FALSE diff --git a/code/modules/vox/vox.dm b/code/modules/vox/vox.dm index a8b487697b5f..ac2ef0e4900a 100644 --- a/code/modules/vox/vox.dm +++ b/code/modules/vox/vox.dm @@ -1,6 +1,6 @@ GLOBAL_LIST_EMPTY(vox_types) -/proc/play_sound_vox(sentence, list/players, list/vox, client/caller, volume = 100) +/proc/play_sound_vox(sentence, list/players, list/vox, client/user, volume = 100) if(!islist(players)) players = list(players) @@ -18,9 +18,9 @@ GLOBAL_LIST_EMPTY(vox_types) var/sound_file = vox[word] sounds += sound_file - if(caller && length(bad_words)) + if(user && length(bad_words)) var/missed_words = jointext(bad_words, ", ") - to_chat(caller, SPAN_WARNING("Couldn't find the sound files for: [missed_words]")) + to_chat(user, SPAN_WARNING("Couldn't find the sound files for: [missed_words]")) for(var/s in sounds) var/sound/S = sound(s, wait=TRUE, channel=SOUND_CHANNEL_VOX, volume=volume) diff --git a/colonialmarines.dme b/colonialmarines.dme index 74a94281f000..0c4ced4b5698 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -599,6 +599,7 @@ #include "code\datums\factions\faction.dm" #include "code\datums\factions\helpers.dm" #include "code\datums\factions\hyperdyne.dm" +#include "code\datums\factions\iasf.dm" #include "code\datums\factions\nspa.dm" #include "code\datums\factions\pap.dm" #include "code\datums\factions\pmc.dm" @@ -672,6 +673,7 @@ #include "code\datums\skills\forecon.dm" #include "code\datums\skills\freelancer.dm" #include "code\datums\skills\gladiator.dm" +#include "code\datums\skills\iasf.dm" #include "code\datums\skills\mercenary.dm" #include "code\datums\skills\misc.dm" #include "code\datums\skills\pmc.dm" @@ -1926,6 +1928,7 @@ #include "code\modules\gear_presets\survivors\lv_624\clfship_insert_lv624.dm" #include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm" #include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm" +#include "code\modules\gear_presets\survivors\lv_759\iasf_survivor_insert.dm" #include "code\modules\gear_presets\survivors\lv_759\preset_hybrisa.dm" #include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm" #include "code\modules\gear_presets\survivors\shivas_snowball\panic_room_insert_shivas.dm" diff --git a/html/changelogs/AutoChangeLog-pr-9349.yml b/html/changelogs/AutoChangeLog-pr-9349.yml new file mode 100644 index 000000000000..71c4b8673338 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-9349.yml @@ -0,0 +1,6 @@ +author: "Ben10083" +delete-after: True +changes: + - balance: "APCs in SSV Rostock now use a UPP subtype that only allows UPP engineers access" + - bugfix: "UPP hull windows now act like USMC hull windows and cannot be destroyed" + - maptweak: "Additional cameras added to SSV Rostock Prisoner Holding" \ No newline at end of file diff --git a/html/changelogs/archive/2025-06.yml b/html/changelogs/archive/2025-06.yml index deeae08d948d..1ab6c365449d 100644 --- a/html/changelogs/archive/2025-06.yml +++ b/html/changelogs/archive/2025-06.yml @@ -254,3 +254,96 @@ stalkerino: - rscadd: Adds a CO survivor CMB Marshal on Solaris Ridge - rscadd: CMB armor can now be equipped on colonial marshal uniforms +2025-06-26: + Detective-Google: + - admin: CL beacon bodyguard commandos are the low_threat, non deathsquad version + now + Nihisohel: + - balance: Mortar minimum range is lowered from 25 to 15, maximum range from 75 + to 64 + Red-byte3D: + - balance: Scout rifle no longer has burst fire. + SpypigDev: + - rscadd: Holocards now visible on stasis bags + Venuska1117: + - qol: Facehugger and Larva now get 1 sec cooldown on *roar emote. + - rscadd: Added "heartbeat" animation to speed fruit sprite. + - rscadd: Added description when examinating hardened weeds node, describing the + 20% growth boost. + - soundadd: Added audiable sound clue when fruits are expiring. + - balance: Gardener drones can now unroot and feed fruits twice as fast (from 2 + second to 1 second), that doesn't change when trying to eat mature fruit from + ground. + - balance: Gardener resin surge now instantly mature fruits, but in exchange you + get applyied dynamic cooldown based on fruit growth using previous code maturity + + cooldown time. + - balance: Added sound for shield fruit overshield expire. + - balance: Spore fruit effect time is increased from 60s to 90s + - qol: Added detailed information for each fruit you examine, that is only visible + to xenomorphs, marines now get plain description when they examine fruit. + - qol: Marines now get "hint" when they examine rooted and unrooted fruits. + - qol: Unrooted fruits sprites now show description accurate "roots", so they can + be more easy recognized from immature fruits. + - qol: Added fruit counter for healer drone in status tab. + - qol: Added balloon alerts in same color as fruits that inform you biefly of effects + when consuming fruit and when fruit expires. + - bugfix: Returned Gardener fruit counter as status tab information. + - bugfix: Added missing plasma fruit glow, now it glow blue instead of green. + - bugfix: Changes fruits (food) items layer to BUSH_LAYER so they don't get hidden + under normal objects. + Willzadl: + - maptweak: Jungle Vines on LV are now untrappable. +2025-06-27: + DarkLordCabbage: + - rscadd: Added blood splatters when you do xeno dissection, added a few more improvised + tool messages + - spellcheck: fixed a bunch of spelling and grammatical errors in xeno dissection + - code_imp: Removed unused to_patient and first step failure code in xeno dissection. + Detective-Google: + - bugfix: if a SMES' terminal is deleted, now it can be replaced properly instead + of being forever bricked. + Drathek: + - code_imp: Corrected many cases where code would override the built in var caller + - code_imp: Corrected a couple usages of usr in yaut bracer code + JackieEstegado: + - bugfix: Breaching charges no longer explode in unexpected directions. + LC4492: + - bugfix: Fixes wrong dogtag accessory on_mob sprite that still used an older version + of the one currently being used by it's ID counterpart. + - bugfix: The throwing knife on_mob received a fix to it's directions, so it will + not appear on the left hand when being held on the right hand and vice-versa. + - bugfix: Fixes the lockbox code to use their own on_mob instead of the generic + box's one. + - bugfix: Fixes the radiopack's on_mob showing to be on the left hand when being + held on the right hand. + - bugfix: The game will now properly use the in_hands storaged for the toy light-swords. + - code_imp: Adds the missing item_states to the satchel code. + - code_imp: Adds the new patch of code that allows the use of all versions of the + toy light-sword, instead of just the blue one. + - imageadd: Added new on_mobs for the toy light-swords, fitting more with their + current object sprites. + - imageadd: 'Two new versions of briefcase have been added in three different colors: + Brown, Black and Maroon (All pallettes were already used in the game on a way + or another).' + SpypigDev: + - rscadd: record classification levels, and access restrictions + - ui: converts the medical records system to tgui + - code_imp: cleans up a bunch of back end records code + - code_imp: fixed up and separated access defines for the Almayers database + Venuska1117: + - bugfix: Changed description of spore fruit duration time from 60s to correct 90s. + Zenith, BOBAMA, vandujr: + - rscadd: added the IASF survivors to the Outpost Souter insert + - rscadd: added the L54 service pistol & two (custom) variants + - bugfix: fixed RMC boots pathing + - bugfix: fixed Scout cloak on urban maps + - mapadd: replaces the current CLF insert with a new one at the wy-space-port. + - maptweak: many fixes and small changes across Hybrisa. + - maptweak: revamped/fixed up Steelpoints IASF insert. + - maptweak: revamped/fixed up the CLF insert, now it spawns at the space-port north-west. + private-tristan: + - rscadd: During hijack, xenos can now view tacmap when the queen is off ovipositor + when xenos outnumber marines by 20%. + - balance: Hives with "allow_no_queen_actions" (notably Feral, Yautuja, and Forsaken) + hives can now always view tacmap. + - balance: Forsaken hive is capable of seeing humans on tacmap. diff --git a/icons/effects/3WE_logo_tile.dmi b/icons/effects/3WE_logo_tile.dmi new file mode 100644 index 000000000000..47892a105eef Binary files /dev/null and b/icons/effects/3WE_logo_tile.dmi differ diff --git a/icons/landmarks.dmi b/icons/landmarks.dmi index 3542e0da08d1..539a427c8e7b 100644 Binary files a/icons/landmarks.dmi and b/icons/landmarks.dmi differ diff --git a/icons/mob/hud/marine_hud.dmi b/icons/mob/hud/marine_hud.dmi index 9f5955d215a6..2eb5ff928ba6 100644 Binary files a/icons/mob/hud/marine_hud.dmi and b/icons/mob/hud/marine_hud.dmi differ diff --git a/icons/mob/humans/onmob/clothing/accessory/misc.dmi b/icons/mob/humans/onmob/clothing/accessory/misc.dmi index f6d1fa953f5e..a88106d41425 100644 Binary files a/icons/mob/humans/onmob/clothing/accessory/misc.dmi and b/icons/mob/humans/onmob/clothing/accessory/misc.dmi differ diff --git a/icons/mob/humans/onmob/clothing/accessory/webbings.dmi b/icons/mob/humans/onmob/clothing/accessory/webbings.dmi index afed3f1e152a..58650b02ac10 100644 Binary files a/icons/mob/humans/onmob/clothing/accessory/webbings.dmi and b/icons/mob/humans/onmob/clothing/accessory/webbings.dmi differ diff --git a/icons/mob/humans/onmob/clothing/belts/belts_by_faction/TWE.dmi b/icons/mob/humans/onmob/clothing/belts/belts_by_faction/TWE.dmi index af2c53014763..9f9f1b5fd33c 100644 Binary files a/icons/mob/humans/onmob/clothing/belts/belts_by_faction/TWE.dmi and b/icons/mob/humans/onmob/clothing/belts/belts_by_faction/TWE.dmi differ diff --git a/icons/mob/humans/onmob/clothing/head/hats.dmi b/icons/mob/humans/onmob/clothing/head/hats.dmi index 80c1d8b96c46..ae1388d4153b 100644 Binary files a/icons/mob/humans/onmob/clothing/head/hats.dmi and b/icons/mob/humans/onmob/clothing/head/hats.dmi differ diff --git a/icons/mob/humans/onmob/clothing/head/hats_by_faction/CLF.dmi b/icons/mob/humans/onmob/clothing/head/hats_by_faction/CLF.dmi index 145c34787b40..fd6da1c5ac7a 100644 Binary files a/icons/mob/humans/onmob/clothing/head/hats_by_faction/CLF.dmi and b/icons/mob/humans/onmob/clothing/head/hats_by_faction/CLF.dmi differ diff --git a/icons/mob/humans/onmob/clothing/head/hats_by_faction/TWE.dmi b/icons/mob/humans/onmob/clothing/head/hats_by_faction/TWE.dmi index 2261e1a59495..293a34fb7b9e 100644 Binary files a/icons/mob/humans/onmob/clothing/head/hats_by_faction/TWE.dmi and b/icons/mob/humans/onmob/clothing/head/hats_by_faction/TWE.dmi differ diff --git a/icons/mob/humans/onmob/clothing/helmet_garb/headbands.dmi b/icons/mob/humans/onmob/clothing/helmet_garb/headbands.dmi index 2f3322e0d2cd..c1857f6e0e96 100644 Binary files a/icons/mob/humans/onmob/clothing/helmet_garb/headbands.dmi and b/icons/mob/humans/onmob/clothing/helmet_garb/headbands.dmi differ diff --git a/icons/mob/humans/onmob/clothing/masks/scarves.dmi b/icons/mob/humans/onmob/clothing/masks/scarves.dmi index d3f5eefefd31..7e49a18da7f6 100644 Binary files a/icons/mob/humans/onmob/clothing/masks/scarves.dmi and b/icons/mob/humans/onmob/clothing/masks/scarves.dmi differ diff --git a/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi b/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi index 71d70cc48bc7..41a4b944ca52 100644 Binary files a/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi and b/icons/mob/humans/onmob/clothing/suits/suits_by_faction/TWE.dmi differ diff --git a/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/TWE.dmi b/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/TWE.dmi index 1f6c860a937a..eed01efcbdda 100644 Binary files a/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/TWE.dmi and b/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/TWE.dmi differ diff --git a/icons/mob/humans/onmob/inhands/clothing/backpacks_lefthand.dmi b/icons/mob/humans/onmob/inhands/clothing/backpacks_lefthand.dmi index bcf0c39b5db6..2ff8b589dcbe 100644 Binary files a/icons/mob/humans/onmob/inhands/clothing/backpacks_lefthand.dmi and b/icons/mob/humans/onmob/inhands/clothing/backpacks_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/clothing/backpacks_righthand.dmi b/icons/mob/humans/onmob/inhands/clothing/backpacks_righthand.dmi index 72c509916cbb..87378f32a4da 100644 Binary files a/icons/mob/humans/onmob/inhands/clothing/backpacks_righthand.dmi and b/icons/mob/humans/onmob/inhands/clothing/backpacks_righthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/equipment/briefcases_lefthand.dmi b/icons/mob/humans/onmob/inhands/equipment/briefcases_lefthand.dmi index ce5065df5db5..ad57b1e1975c 100644 Binary files a/icons/mob/humans/onmob/inhands/equipment/briefcases_lefthand.dmi and b/icons/mob/humans/onmob/inhands/equipment/briefcases_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/equipment/briefcases_righthand.dmi b/icons/mob/humans/onmob/inhands/equipment/briefcases_righthand.dmi index 233276bb6327..2fede7484da4 100644 Binary files a/icons/mob/humans/onmob/inhands/equipment/briefcases_righthand.dmi and b/icons/mob/humans/onmob/inhands/equipment/briefcases_righthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/guns/pistols_lefthand.dmi b/icons/mob/humans/onmob/inhands/weapons/guns/pistols_lefthand.dmi index 5b112feafd2b..90ea9b70d3b4 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/guns/pistols_lefthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/guns/pistols_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/guns/pistols_righthand.dmi b/icons/mob/humans/onmob/inhands/weapons/guns/pistols_righthand.dmi index 529cf41c4020..73c9bcfc3c4e 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/guns/pistols_righthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/guns/pistols_righthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/guns/smgs_righthand.dmi b/icons/mob/humans/onmob/inhands/weapons/guns/smgs_righthand.dmi index 7b09b64161b3..61a3d4e46ec0 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/guns/smgs_righthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/guns/smgs_righthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/melee/energy_lefthand.dmi b/icons/mob/humans/onmob/inhands/weapons/melee/energy_lefthand.dmi index 6d6f819001e7..2763f1d6bf8e 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/melee/energy_lefthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/melee/energy_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/melee/energy_righthand.dmi b/icons/mob/humans/onmob/inhands/weapons/melee/energy_righthand.dmi index a7eb34bf70ad..678522eaa296 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/melee/energy_righthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/melee/energy_righthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/melee/knives_lefthand.dmi b/icons/mob/humans/onmob/inhands/weapons/melee/knives_lefthand.dmi index ce06d0fcf95f..c232ca4d93e2 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/melee/knives_lefthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/melee/knives_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/weapons/melee/knives_righthand.dmi b/icons/mob/humans/onmob/inhands/weapons/melee/knives_righthand.dmi index 016aad0cfb0a..cfd34d59aa41 100644 Binary files a/icons/mob/humans/onmob/inhands/weapons/melee/knives_righthand.dmi and b/icons/mob/humans/onmob/inhands/weapons/melee/knives_righthand.dmi differ diff --git a/icons/mob/xenos/fruits.dmi b/icons/mob/xenos/fruits.dmi index 4ea6dd14276c..5ae65bd06299 100644 Binary files a/icons/mob/xenos/fruits.dmi and b/icons/mob/xenos/fruits.dmi differ diff --git a/icons/obj/bodybag.dmi b/icons/obj/bodybag.dmi index 3a60dbaf51fa..e25ebdbab58b 100644 Binary files a/icons/obj/bodybag.dmi and b/icons/obj/bodybag.dmi differ diff --git a/icons/obj/items/clothing/accessory/inventory_overlays/webbings.dmi b/icons/obj/items/clothing/accessory/inventory_overlays/webbings.dmi index 82fd5cc79a67..fcedd856d68d 100644 Binary files a/icons/obj/items/clothing/accessory/inventory_overlays/webbings.dmi and b/icons/obj/items/clothing/accessory/inventory_overlays/webbings.dmi differ diff --git a/icons/obj/items/clothing/accessory/webbings.dmi b/icons/obj/items/clothing/accessory/webbings.dmi index 535b8c2fd0ee..3652b442838c 100644 Binary files a/icons/obj/items/clothing/accessory/webbings.dmi and b/icons/obj/items/clothing/accessory/webbings.dmi differ diff --git a/icons/obj/items/clothing/belts/belts_by_faction/TWE.dmi b/icons/obj/items/clothing/belts/belts_by_faction/TWE.dmi index 2560cae03a51..be32e4e37047 100644 Binary files a/icons/obj/items/clothing/belts/belts_by_faction/TWE.dmi and b/icons/obj/items/clothing/belts/belts_by_faction/TWE.dmi differ diff --git a/icons/obj/items/clothing/belts/holstered_guns.dmi b/icons/obj/items/clothing/belts/holstered_guns.dmi index 76f0289bf1c1..0e20ecc08220 100644 Binary files a/icons/obj/items/clothing/belts/holstered_guns.dmi and b/icons/obj/items/clothing/belts/holstered_guns.dmi differ diff --git a/icons/obj/items/clothing/hats/hats_by_faction/CLF.dmi b/icons/obj/items/clothing/hats/hats_by_faction/CLF.dmi index 25b17fe9957b..1ceb128040ca 100644 Binary files a/icons/obj/items/clothing/hats/hats_by_faction/CLF.dmi and b/icons/obj/items/clothing/hats/hats_by_faction/CLF.dmi differ diff --git a/icons/obj/items/clothing/hats/hats_by_faction/TWE.dmi b/icons/obj/items/clothing/hats/hats_by_faction/TWE.dmi index c7909c2695cc..388ab83e6f40 100644 Binary files a/icons/obj/items/clothing/hats/hats_by_faction/TWE.dmi and b/icons/obj/items/clothing/hats/hats_by_faction/TWE.dmi differ diff --git a/icons/obj/items/clothing/masks/scarves.dmi b/icons/obj/items/clothing/masks/scarves.dmi index ebbbb251b86a..b1a4ad369934 100644 Binary files a/icons/obj/items/clothing/masks/scarves.dmi and b/icons/obj/items/clothing/masks/scarves.dmi differ diff --git a/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi b/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi index 33fb1be26696..6bf55c817bc3 100644 Binary files a/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi and b/icons/obj/items/clothing/suits/suits_by_faction/TWE.dmi differ diff --git a/icons/obj/items/clothing/uniforms/uniforms_by_faction/TWE.dmi b/icons/obj/items/clothing/uniforms/uniforms_by_faction/TWE.dmi index a3e865a1c778..b5058aa5b2c2 100644 Binary files a/icons/obj/items/clothing/uniforms/uniforms_by_faction/TWE.dmi and b/icons/obj/items/clothing/uniforms/uniforms_by_faction/TWE.dmi differ diff --git a/icons/obj/items/storage/briefcases.dmi b/icons/obj/items/storage/briefcases.dmi index 7ba5a0382100..c9734735311b 100644 Binary files a/icons/obj/items/storage/briefcases.dmi and b/icons/obj/items/storage/briefcases.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi index 7a13406dd8bb..784c3117e3e7 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/text.dmi b/icons/obj/items/weapons/guns/ammo_boxes/text.dmi index 97498ea08867..ecc8cd2eee3a 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/text.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/text.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/TWE/pistols.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/TWE/pistols.dmi new file mode 100644 index 000000000000..ae897e7e0dc4 Binary files /dev/null and b/icons/obj/items/weapons/guns/ammo_by_faction/TWE/pistols.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/TWE/pistols.dmi b/icons/obj/items/weapons/guns/guns_by_faction/TWE/pistols.dmi new file mode 100644 index 000000000000..130a5d65794c Binary files /dev/null and b/icons/obj/items/weapons/guns/guns_by_faction/TWE/pistols.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/TWE/revolvers.dmi b/icons/obj/items/weapons/guns/guns_by_faction/TWE/revolvers.dmi index 2a237a397fed..98d836a9b789 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/TWE/revolvers.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/TWE/revolvers.dmi differ diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi index f3cf08f24914..2ad017083a67 100644 Binary files a/icons/obj/items/weapons/guns/lineart.dmi and b/icons/obj/items/weapons/guns/lineart.dmi differ diff --git a/icons/obj/items/weapons/melee/energy.dmi b/icons/obj/items/weapons/melee/energy.dmi index 2355bd5c5930..ba561f45b7f1 100644 Binary files a/icons/obj/items/weapons/melee/energy.dmi and b/icons/obj/items/weapons/melee/energy.dmi differ diff --git a/icons/obj/structures/machinery/surgery.dmi b/icons/obj/structures/machinery/surgery.dmi index 610c17697204..af63e3f8179b 100644 Binary files a/icons/obj/structures/machinery/surgery.dmi and b/icons/obj/structures/machinery/surgery.dmi differ diff --git a/icons/turf/CLF_dropship.dmi b/icons/turf/CLF_dropship.dmi new file mode 100644 index 000000000000..5a71a7deea25 Binary files /dev/null and b/icons/turf/CLF_dropship.dmi differ diff --git a/icons/turf/twedropship.dmi b/icons/turf/twedropship.dmi index edce903d1fe2..fbf16e01cc57 100644 Binary files a/icons/turf/twedropship.dmi and b/icons/turf/twedropship.dmi differ diff --git a/maps/Nightmare/maps/LV759_Hybrisa_Prospera/nightmare.json b/maps/Nightmare/maps/LV759_Hybrisa_Prospera/nightmare.json index 11890e5de760..9f4d0f40b953 100644 --- a/maps/Nightmare/maps/LV759_Hybrisa_Prospera/nightmare.json +++ b/maps/Nightmare/maps/LV759_Hybrisa_Prospera/nightmare.json @@ -26,9 +26,16 @@ }, { "type": "map_insert", - "landmark": "clfadmin", + "landmark": "clfspaceport", "chance": 1.0, - "path": "standalone/clfadmin.dmm", + "path": "standalone/clfspaceport.dmm", + "when": { "lvevent": "clfraid" } + }, + { + "type": "map_insert", + "landmark": "clfspaceport_queen", + "chance": 1.0, + "path": "standalone/clfspaceport_queen.dmm", "when": { "lvevent": "clfraid" } }, { @@ -37,5 +44,12 @@ "chance": 0.28, "path": "standalone/twe_airbase.dmm", "when": { "lvevent": "none" } + }, + { + "type": "map_insert", + "landmark": "iasf_souter_airbase_survivors", + "chance": 1.0, + "path": "standalone/twe_airbase_survivors.dmm", + "when": { "lvevent": "twe_iasf" } } ] diff --git a/maps/Nightmare/maps/LV759_Hybrisa_Prospera/scenario.json b/maps/Nightmare/maps/LV759_Hybrisa_Prospera/scenario.json index 4624c1d74b82..36f9e2060146 100644 --- a/maps/Nightmare/maps/LV759_Hybrisa_Prospera/scenario.json +++ b/maps/Nightmare/maps/LV759_Hybrisa_Prospera/scenario.json @@ -2,8 +2,9 @@ { "type": "pick", "name": "event", "choices": [ - { "weight": 9, "type": "def", "values": { "lvevent": "none" } }, - { "weight": 1, "type": "def", "values": { "lvevent": "clfraid" } } + { "weight": 6, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "clfraid" } }, + { "weight": 3, "type": "def", "values": { "lvevent": "twe_iasf" } } ] } ] diff --git a/maps/lv759_hybrisa_prospera.json b/maps/lv759_hybrisa_prospera.json index f071ab6ffea8..4674a82841e5 100644 --- a/maps/lv759_hybrisa_prospera.json +++ b/maps/lv759_hybrisa_prospera.json @@ -35,6 +35,9 @@ "/datum/equipment_preset/synth/survivor/hybrisa/paramedic", "/datum/equipment_preset/synth/survivor/hybrisa/exec_bodyguard" ], + "CO_insert_survivor_types": [ + "/datum/equipment_preset/survivor/hybrisa/iasf_commander" + ], "defcon_triggers": [ 3750, 2600, diff --git a/maps/map_files/LV759_Hybrisa_Prospera/LV759_Hybrisa_Prospera.dmm b/maps/map_files/LV759_Hybrisa_Prospera/LV759_Hybrisa_Prospera.dmm index 3747875330ba..d554c37245f0 100644 --- a/maps/map_files/LV759_Hybrisa_Prospera/LV759_Hybrisa_Prospera.dmm +++ b/maps/map_files/LV759_Hybrisa_Prospera/LV759_Hybrisa_Prospera.dmm @@ -365,11 +365,14 @@ pixel_x = -4; pixel_y = 10 }, -/obj/item/shard, /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 3.3 }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/shard, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/east_central_street) "aba" = ( @@ -407,7 +410,7 @@ }, /obj/structure/pipes/standard/simple/hidden/dark, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/southeastexit) "abg" = ( /obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark2, @@ -532,12 +535,6 @@ /obj/structure/blocker/forcefield/vehicles, /turf/closed/wall/hybrisa/colony/reinforced, /area/lv759/indoors/meridian/meridian_maintenance) -"abz" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "iasf_souter_airbase" - }, -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/pressroom) "abA" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -584,17 +581,11 @@ /obj/item/tool/extinguisher/mini, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/caves/north_west_caves) -"abI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - autoname = 1 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/power_plant/geothermal_generators) "abJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/fusion_generators) "abK" = ( /obj/effect/decal/hybrisa/dirt, @@ -648,7 +639,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/paramedics_garage) "abT" = ( /obj/effect/sentry_landmark/lz_1/bottom_right, @@ -1326,7 +1317,7 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/indoors/caves/east_caves) "adE" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "92" }, /area/lv759/indoors/spaceport/starglider) @@ -2575,7 +2566,7 @@ /obj/item/weapon/twohanded/folded_metal_chair, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, /turf/open/floor/plating, /area/lv759/indoors/caves/sensory_tower) @@ -2855,8 +2846,8 @@ /obj/effect/decal/hybrisa/engineership_corners, /obj/effect/decal/hybrisa/hull_angled, /obj/structure/blackgoocontainer{ - pixel_x = -8; - pixel_y = -13 + pixel_x = -6; + pixel_y = -6 }, /turf/open/floor/hybrisa/engineership/engineer_floor9, /area/lv759/indoors/derelict_ship) @@ -3268,7 +3259,6 @@ }, /obj/structure/machinery/door_control/brbutton{ id = "hybrisamining_northeast2"; - explo_proof = 1; layer = 4; name = "Mining Lockdown"; pixel_x = 8; @@ -3514,7 +3504,7 @@ /area/lv759/indoors/colonial_marshals/hallway_central) "ajj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastentrance) "ajk" = ( /obj/item/trash/hybrisa/cuppa_joes/empty_cup, @@ -3550,7 +3540,7 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/indoors/caves/north_west_caves) "ajp" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing7"; opacity = 0 }, @@ -3880,12 +3870,6 @@ pixel_y = 9; pixel_x = 5 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/weyyu_office/floor) "akg" = ( @@ -3938,10 +3922,6 @@ pixel_y = 10; pixel_x = 5 }, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) "akm" = ( @@ -4492,13 +4472,14 @@ "alB" = ( /obj/structure/window/framed/hybrisa/marshalls/cell, /obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, /obj/structure/machinery/door/poddoor/almayer{ dir = 4; name = "Weakened Emergency Lockdown"; - needs_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 + needs_power = 0; + id = "secure_prison_lockdown1" }, /turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/colonial_marshals/prisoners_recreation_area) @@ -4750,7 +4731,7 @@ /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 8 }, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/changing_room) "amh" = ( /obj/item/trash/cigbutt{ @@ -4795,14 +4776,14 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/changing_room) "amm" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/changing_room) "amn" = ( /obj/effect/decal/hybrisa/dirt, @@ -4909,7 +4890,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/electical_systems/substation1) "amD" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -4934,14 +4915,16 @@ /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 + dir = 6 }, +/obj/item/shard, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/east_central_street) "amH" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 9 }, +/obj/item/shard, /turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant/Hallway_East) "amI" = ( @@ -4959,7 +4942,7 @@ id = "disposals_garage" }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant/garage) "amL" = ( /obj/effect/decal/hybrisa/road/lines3, @@ -5050,11 +5033,6 @@ /area/lv759/indoors/hospital/virology) "amY" = ( /obj/structure/machinery/iv_drip, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitered/north, /area/lv759/indoors/hospital/operation) "amZ" = ( @@ -5395,7 +5373,7 @@ "anI" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "anJ" = ( /obj/effect/decal/warning_stripes{ @@ -5795,9 +5773,6 @@ /area/lv759/outdoors/landing_zone_2) "aoO" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/medical{ - pixel_x = 32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "aoP" = ( @@ -5859,13 +5834,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) -"aoY" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/spaceport/docking_bay_2) "aoZ" = ( /obj/structure/barricade/handrail/strata{ dir = 4; @@ -5961,8 +5929,8 @@ /turf/open/floor/plating, /area/lv759/indoors/hospital/maintenance_north) "apg" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 }, /turf/open/floor/corsat/squares, /area/lv759/indoors/power_plant/gas_generators) @@ -6058,7 +6026,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_east_street_LZ) "apq" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/cuppajoes) "apr" = ( /obj/effect/decal/hybrisa/road/lines5, @@ -6371,10 +6339,6 @@ /obj/structure/platform/metal/hybrisa/metalplatform1/north, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/central_streets) -"aqs" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/corsat/spiralplate, -/area/lv759/outdoors/landing_zone_2) "aqt" = ( /obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark3, /turf/open/auto_turf/hybrisa_auto_turf/layer2, @@ -6495,7 +6459,6 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/south_west_street) "aqR" = ( -/obj/structure/platform_decoration/metal/almayer/north, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 @@ -6508,23 +6471,12 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "aqT" = ( -/obj/structure/platform_decoration/metal/strata, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 9 }, -/turf/open/floor/strata/blue3/north, +/turf/open/floor/strata/blue3, /area/lv759/indoors/spaceport/docking_bay_2) -"aqU" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/corsat/spiralplate, -/area/lv759/outdoors/colony_streets/central_streets) "aqV" = ( -/obj/structure/platform_decoration/metal/almayer/north, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 @@ -6532,19 +6484,10 @@ /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/prison/cell_stripe/west, /area/lv759/outdoors/power_plant/transformers_north) -"aqW" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/corsat/spiralplate, -/area/lv759/outdoors/colony_streets/north_west_street) "aqX" = ( /obj/structure/largecrate/random/barrel/brown, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/indoors/caves/central_caves) -"aqY" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/corsat/spiralplate, -/area/lv759/outdoors/colony_streets/north_east_street) "aqZ" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4; @@ -6604,6 +6547,10 @@ }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/south_east_street) +"arj" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/wy_research_complex/southeastexit) "ark" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/whitegreen/east, @@ -6628,11 +6575,73 @@ }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/south_east_street) +"arn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/wy_research_complex/southeastexit) +"aro" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) "arp" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/reception) +"arq" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/landing_zone_2) +"arr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + layer = 4; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/landing_zone_2) +"ars" = ( +/obj/item/ammo_magazine/pistol/l54, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/lv759/indoors/colonial_marshals/north_office) +"art" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#687d89"; + alpha = 220; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/colonial_marshals/reception) +"aru" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/machinery/door/poddoor/almayer{ + name = "Weakened Emergency Lockdown"; + needs_power = 0; + id = "weymart_garage" + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/meridian/meridian_maintenance) +"arv" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + color = "#858680" + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/lv759/indoors/caves/north_west_caves) +"arw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/plating, +/area/lv759/indoors/meridian/meridian_factory) "arx" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6655,10 +6664,28 @@ /obj/structure/platform/metal/strata/north, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) +"arz" = ( +/obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, +/turf/open/floor/plating, +/area/lv759/indoors/meridian/meridian_office) "arA" = ( /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/east_hallway) +"arB" = ( +/obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225; + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv759/indoors/meridian/meridian_office) "arC" = ( /obj/structure/sink{ dir = 8; @@ -6667,12 +6694,119 @@ /obj/effect/spawner/random/pills/midchance, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/mining_outpost/east_dorms) +"arD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/mining_outpost/east_deploymentbay) +"arE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/meridian/meridian_factory) +"arF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/east_central_street_left) +"arG" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/lv759/indoors/power_plant/south_hallway) +"arH" = ( +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/lv759/indoors/power_plant/south_hallway) +"arI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/lv759/indoors/power_plant/south_hallway) +"arJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/outdoors/power_plant/transformers_south) +"arK" = ( +/obj/item/stack/sheet/cardboard/small_stack{ + pixel_x = 8; + layer = 2.9 + }, +/obj/item/tool/weldpack, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/power_plant/south_hallway) +"arL" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/lv759/indoors/power_plant/south_hallway) +"arM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv759/indoors/power_plant/south_hallway) +"arN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/lv759/indoors/power_plant/south_hallway) "arO" = ( /obj/effect/decal/hybrisa/grate{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/caves/central_caves) +"arP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/almayer/plating/northeast, +/area/lv759/indoors/power_plant/geothermal_generators) +"arQ" = ( +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/packageWrap{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/prison/darkbrown2/west, +/area/lv759/indoors/power_plant/south_hallway) "arR" = ( /obj/structure/toilet{ dir = 8; @@ -6697,11 +6831,55 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/hospital/maintenance_north) +"arT" = ( +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/tool/pen{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/paper{ + layer = 5; + pixel_x = -8; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/prison/darkbrown2/west, +/area/lv759/indoors/power_plant/south_hallway) +"arU" = ( +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/lv759/indoors/power_plant/south_hallway) +"arV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/officesquares, +/area/lv759/outdoors/colony_streets/central_streets) "arW" = ( /obj/structure/pipes/standard/simple/hidden/dark, /obj/item/paper/crumpled, /turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/hallway_central) +"arX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/cement1, +/area/lv759/outdoors/colony_streets/central_streets) "arY" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -6735,6 +6913,79 @@ /obj/item/clothing/suit/armor/vest/hybrisa/civilian_vest, /turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/jacks_surplus) +"arZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"asa" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor/prison/bright_clean/southwest, +/area/lv759/indoors/power_plant) +"asb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"asc" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv759/indoors/apartment/westentertainment) +"asd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat, +/area/lv759/indoors/power_plant/gas_generators) +"ase" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/outdoors/power_plant/transformers_north) +"asf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/apartment/eastbedroomsstorage) +"asg" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv759/indoors/power_plant/gas_generators) +"ash" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/squares, +/area/lv759/indoors/power_plant/gas_generators) +"asi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/lv759/outdoors/colony_streets/east_central_street) "asj" = ( /obj/effect/decal/cleanable/blood{ icon_state = "mgibbl3" @@ -6752,6 +7003,10 @@ /obj/structure/largecrate/empty/case, /turf/open/floor/prison/ramptop, /area/lv759/indoors/caves/wy_research_complex_entrance) +"asl" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/lv759/indoors/apartment/westbedrooms) "asm" = ( /obj/structure/machinery/big_computers/computerblack/computer5{ explo_proof = 1 @@ -6762,7 +7017,6 @@ }, /obj/structure/machinery/door_control/colony_lockdown{ id = "hybrisacolonylockdown"; - explo_proof = 1; name = "Colony Exterior - Lockdown"; pixel_y = -5; needs_power = 0 @@ -6778,6 +7032,51 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/lv759/outdoors/colony_streets/central_streets) +"aso" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1; + autoname = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/power_plant) +"asp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/corsat/squares, +/area/lv759/indoors/power_plant/gas_generators) +"asq" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/stairs{ + color = "#a6aeab"; + layer = 2.5 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"asr" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/stairs{ + color = "#a6aeab"; + layer = 2.5 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"ass" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + locked = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/power_plant/gas_generators) +"ast" = ( +/obj/structure/platform/metal/stair_cut/hybrisa_metal_left, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) "asu" = ( /obj/structure/prop/invuln/overhead_pipe{ color = "#a6aeab"; @@ -6788,6 +7087,22 @@ name = "reinforced metal wall" }, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance_north) +"asv" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/lv759/indoors/apartment/northapartments) +"asw" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/weyyu_office) "asx" = ( /obj/structure/window/reinforced{ dir = 4; @@ -6798,6 +7113,14 @@ }, /turf/open/floor/almayer/blackfull/west, /area/lv759/indoors/wy_research_complex/mainlabs) +"asy" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#91799d"; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/hospital/virology) "asz" = ( /obj/effect/decal/hybrisa/road/lines3, /obj/effect/decal/hybrisa/road/lines1, @@ -6806,12 +7129,47 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_east_street_LZ) +"asA" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_1) +"asB" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/machinery/light/small/blue, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/spaceport/docking_bay_1) +"asC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/lv759/indoors/apartment/northapartments) +"asD" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 49; + pixel_x = -8 + }, +/turf/open/floor/strata/orange_icorner, +/area/lv759/indoors/spaceport/docking_bay_1) "asE" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, /turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) +"asF" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 31; + pixel_x = 1 + }, +/turf/open/floor/strata/orange_edge/north, +/area/lv759/indoors/spaceport/docking_bay_1) "asG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ dir = 1; @@ -6849,10 +7207,54 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/northeast) +"asK" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/weyyu_office/pressroom) +"asL" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = -1; + pixel_x = 7 + }, +/turf/open/floor/strata/orange_cover, +/area/lv759/indoors/spaceport/docking_bay_1) "asM" = ( /obj/structure/platform/metal/almayer/east, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/colony_streets/north_east_street_LZ) +"asN" = ( +/obj/structure/largecrate/empty, +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -15 + }, +/turf/open/floor/hybrisa/misc/spaceport2, +/area/lv759/indoors/spaceport/docking_bay_1) +"asO" = ( +/obj/structure/largecrate/empty/secure, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/hybrisa/misc/spaceport1, +/area/lv759/indoors/spaceport/docking_bay_1) +"asP" = ( +/obj/structure/machinery/light/small/blue, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/spaceport/docking_bay_1) +"asQ" = ( +/obj/item/card/id/visa{ + desc = "A United Americas entry visa. A rare commodity out here on the rim."; + pixel_x = 9; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/spaceport/docking_bay_1) "asR" = ( /obj/effect/decal/hybrisa/road/lines3, /obj/effect/decal/hybrisa/road/lines1, @@ -6870,6 +7272,19 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/central_streets) +"asS" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/weyyu_office/breakroom) +"asT" = ( +/obj/structure/machinery/light/small/blue, +/turf/open/floor/strata/orange_edge, +/area/lv759/indoors/spaceport/docking_bay_1) "asU" = ( /obj/structure/platform/metal/kutjevo/east, /obj/structure/platform_decoration/metal/kutjevo/east, @@ -6881,6 +7296,52 @@ }, /turf/open/hybrisa/metal/underground_unweedable, /area/lv759/indoors/wy_research_complex/xenobiology) +"asV" = ( +/turf/open/floor/prison, +/area/lv759/indoors/pizzaria) +"asW" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/hospital/virology) +"asX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/strata/orange_edge/north, +/area/lv759/indoors/spaceport/docking_bay_1) +"asY" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfspaceport" + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/frame, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"asZ" = ( +/obj/structure/window/framed/hybrisa/spaceport, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"ata" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/supermartfloor1, +/area/lv759/indoors/bar/kitchen) "atb" = ( /obj/structure/roof/hybrisa/lattice_prop/lattice_6{ pixel_y = 16; @@ -6888,10 +7349,94 @@ }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/east_central_street) +"atc" = ( +/obj/structure/machinery/light/spot/blue, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"atd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"ate" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"atf" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"atg" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"ath" = ( +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"ati" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) "atj" = ( /obj/structure/prop/hybrisa/cavedecor/stalagmite3, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/indoors/caves/wy_research_complex_entrance) +"atk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/vehicle/powerloader{ + dir = 8; + layer = 5; + level = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"atl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"atm" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"atn" = ( +/obj/structure/sign/safety/landingzone, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"ato" = ( +/obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/red{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv759/indoors/bar) +"atp" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "clfspaceport_queen" + }, +/turf/open/floor/almayer/tcomms, +/area/lv759/indoors/spaceport/docking_bay_1) "atq" = ( /obj/structure/prop/invuln/overhead_pipe{ color = "#a6aeab"; @@ -6925,9 +7470,47 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/south_west_street) +"att" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"atu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/machinery/light/blue, +/turf/open/floor/almayer/plating/northeast, +/area/lv759/indoors/spaceport/engineering) +"atv" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"atw" = ( +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) +"atx" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) "aty" = ( /turf/closed/wall/hybrisa/research/reinforced, /area/lv759/indoors/wy_research_complex/janitor) +"atz" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"atA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) "atB" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 @@ -6935,6 +7518,13 @@ /obj/item/trash/cigbutt, /turf/open/floor/hybrisa/carpet/carpetpatternbrown, /area/lv759/indoors/hotel/hotel_rooms) +"atC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) "atK" = ( /obj/structure/cable/white{ color = "#550d0d"; @@ -7307,12 +7897,6 @@ pixel_x = 6; pixel_y = 15 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5d7362"; - alpha = 225; - pixel_y = 32; - layer = 3.2 - }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/meridian/meridian_managersoffice) "awU" = ( @@ -7472,7 +8056,8 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) @@ -7803,11 +8388,6 @@ }, /obj/item/clothing/head/surgery/green, /obj/effect/landmark/objective_landmark/close, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitered/northeast, /area/lv759/indoors/hospital/operation) "aBa" = ( @@ -7852,7 +8432,7 @@ /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/apartment/eastrestroomsshower) "aBq" = ( /obj/structure/cable/white{ @@ -8161,6 +8741,10 @@ /area/lv759/indoors/bar/entertainment) "aDV" = ( /obj/structure/window/framed/hybrisa/colony/hospital, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/operation) "aDW" = ( @@ -8378,9 +8962,6 @@ icon_state = "4-8" }, /obj/structure/platform/metal/almayer, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/effect/hybrisa/misc/fake/wire/yellow{ dir = 4 }, @@ -8389,7 +8970,7 @@ pixel_y = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "aFC" = ( /obj/structure/surface/rack, @@ -8532,7 +9113,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname{ dir = 1 }, -/turf/open/floor/prison/bright_clean2/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) "aGF" = ( /obj/effect/decal/hybrisa/dirt, @@ -8895,11 +9476,6 @@ /obj/effect/decal/hybrisa/trash{ pixel_y = 12 }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = 32 - }, /obj/structure/machinery/photocopier, /turf/open/floor/hybrisa/metal/zbrownfloor_full, /area/lv759/indoors/meridian/meridian_office) @@ -9012,8 +9588,7 @@ dir = 4 }, /obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 + color = "#b7b8b2" }, /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/colony_streets/central_streets) @@ -9295,7 +9870,7 @@ /area/lv759/outdoors/colony_streets/south_west_street) "aMm" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "aMp" = ( /turf/open/floor/prison/ramptop, @@ -9576,7 +10151,6 @@ /obj/effect/decal/hybrisa/trash{ icon_state = "trash_2" }, -/obj/item/weapon/gun/shotgun/double/sawn, /obj/structure/bed/bedroll{ dir = 9; layer = 4 @@ -9594,6 +10168,7 @@ pixel_y = 35 }, /obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/gun/shotgun/combat/guard, /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/hobosecret) "aOK" = ( @@ -9655,7 +10230,9 @@ /area/lv759/indoors/power_plant/fusion_generators) "aPi" = ( /obj/structure/bed/chair/dropship/pilot{ - dir = 1 + dir = 1; + pixel_y = 8; + buckling_y = 8 }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, /area/lv759/indoors/spaceport/horizon_runner) @@ -9796,7 +10373,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/hybrisa/medical/autoname, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "aQB" = ( /obj/effect/decal/warning_stripes{ @@ -10176,16 +10753,8 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/southeastexit) -"aTu" = ( -/obj/structure/platform/metal/strata/east, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "aTv" = ( /obj/effect/decal/hybrisa/dirt, /obj/item/tool/warning_cone{ @@ -10350,9 +10919,6 @@ "aUs" = ( /obj/structure/bed/roller, /obj/item/trash/used_stasis_bag, -/obj/structure/curtain/medical{ - pixel_y = -32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "aUt" = ( @@ -10856,7 +11422,7 @@ /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/south_east_street) "aYk" = ( -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/changing_room) "aYz" = ( /obj/effect/decal/warning_stripes{ @@ -10870,9 +11436,6 @@ /area/lv759/indoors/wy_research_complex/xenobiology) "aYA" = ( /obj/effect/decal/hybrisa/dirt, -/obj/structure/machinery/light/blue{ - dir = 4 - }, /turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/spaceport/docking_bay_1) "aYC" = ( @@ -11150,7 +11713,8 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/hallway_north_locker) "baT" = ( /obj/effect/decal/hybrisa/road/lines4, @@ -11850,6 +12414,11 @@ /obj/structure/machinery/light{ dir = 8 }, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, /turf/open/floor/prison/darkbrown2/east, /area/lv759/indoors/power_plant/south_hallway) "bfR" = ( @@ -12202,7 +12771,7 @@ /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/wy_research_complex/vehicledeploymentbay) "bjm" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "25" }, /area/lv759/indoors/spaceport/starglider) @@ -12307,15 +12876,6 @@ }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/south_east_street) -"bjS" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) "bjT" = ( /obj/item/trash/uscm_mre, /obj/item/stack/sheet/cardboard{ @@ -12334,7 +12894,7 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/xenoarcheology) "bka" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "27"; opacity = 0 }, @@ -12358,15 +12918,15 @@ /area/lv759/indoors/derelict_ship) "bkn" = ( /obj/effect/decal/hybrisa/dirt, -/obj/structure/stairs{ - color = "#b7b8b2"; - dir = 8 - }, /obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/barricade/handrail/strata{ layer = 3.1 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/colony_streets/central_streets) "bkr" = ( @@ -12519,7 +13079,7 @@ dir = 1 }, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/apartment/westbedrooms) "blt" = ( /obj/structure/surface/table/reinforced/prison{ @@ -12628,12 +13188,6 @@ pixel_y = 28; pixel_x = -12 }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - layer = 2.9; - pixel_x = 32 - }, /turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/office) "bms" = ( @@ -12792,7 +13346,7 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastentrance) "bnA" = ( /obj/effect/decal/warning_stripes{ @@ -12852,9 +13406,6 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) "bnK" = ( /obj/structure/closet/crate/medical, -/obj/structure/curtain/medical{ - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "bnP" = ( @@ -13015,7 +13566,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/corsat, +/turf/open/floor/corsat/squares, /area/lv759/indoors/power_plant/gas_generators) "bpa" = ( /obj/item/ammo_casing/bullet, @@ -13032,7 +13583,7 @@ "bph" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "bpi" = ( /obj/effect/decal/hybrisa/dirt, @@ -13383,7 +13934,7 @@ /area/lv759/indoors/spaceport/starglider) "brx" = ( /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/wood, /area/lv759/indoors/apartment/westbedrooms) "brD" = ( /obj/structure/surface/rack, @@ -13591,7 +14142,7 @@ "bsS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_north) +/area/lv759/indoors/power_plant) "bsT" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, @@ -13855,23 +14406,10 @@ /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) "bvi" = ( -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/tool/pen{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/paper{ - layer = 5; - pixel_x = -8; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer{ - color = "#EBD9B7" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison/darkbrown2/west, +/turf/open/floor/prison/cell_stripe/east, /area/lv759/indoors/power_plant) "bvk" = ( /obj/structure/flora/pottedplant{ @@ -13943,6 +14481,10 @@ /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/meridian/meridian_office) "bvS" = ( @@ -13982,6 +14524,7 @@ name = "Pipe" }, /obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "bwf" = ( @@ -14228,6 +14771,11 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_west_street) "bxS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/outdoors/power_plant/transformers_south) "bxT" = ( @@ -14238,11 +14786,13 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/caveplateau) "bxV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/obj/structure/machinery/door/airlock/almayer/engineering/autoname{ + name = "\improper Airlock" + }, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/gas_generators) "bxX" = ( /obj/effect/decal/hybrisa/dirt, @@ -14384,12 +14934,6 @@ /obj/item/reagent_container/food/drinks/dry_ramen{ pixel_x = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/hospital/break_room) "bzo" = ( @@ -14444,7 +14988,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/southwest_public_restroom) "bzI" = ( /obj/effect/decal/hybrisa/road/road_edge{ @@ -14891,14 +15435,14 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/indoors/caves/central_caves) "bDM" = ( -/obj/structure/largecrate/supply/supplies/mre/wy, /obj/item/clothing/head/hardhat/dblue{ pixel_x = -7; pixel_y = 10 }, -/obj/item/storage/box/mre/wy{ - pixel_y = 16; - pixel_x = 2 +/obj/structure/largecrate/supply/supplies/mre/twe, +/obj/effect/spawner/random/tool{ + pixel_x = 2; + pixel_y = 8 }, /turf/open/floor/plating/platingdmg3, /area/lv759/indoors/electical_systems/substation3) @@ -15138,7 +15682,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "bFx" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -15191,14 +15735,6 @@ }, /turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/lv759/indoors/meridian/meridian_managersoffice) -"bFO" = ( -/obj/item/tool/warning_cone{ - layer = 2; - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/east_central_street_left) "bFR" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal2" @@ -15428,10 +15964,6 @@ /obj/item/trash/cigbutt, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) -"bHs" = ( -/obj/structure/platform/metal/strata/east, -/turf/open/floor/strata/blue1, -/area/lv759/indoors/spaceport/docking_bay_2) "bHv" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" @@ -15574,10 +16106,7 @@ /area/lv759/indoors/meridian/meridian_factory) "bIo" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/powercell{ - pixel_x = -1; - pixel_y = 5 - }, +/obj/effect/spawner/random/powercell, /turf/open/floor/prison/darkbrown2, /area/lv759/indoors/power_plant/fusion_generators) "bIt" = ( @@ -15612,7 +16141,7 @@ pixel_y = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "bIG" = ( /obj/effect/decal/hybrisa/road/road_edge{ @@ -15702,12 +16231,6 @@ dir = 8; pixel_x = 1 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "bJt" = ( @@ -15769,11 +16292,11 @@ /area/lv759/outdoors/colony_streets/north_west_street) "bJT" = ( /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/colony_streets/central_streets) "bKa" = ( @@ -15927,7 +16450,7 @@ /obj/item/tool/kitchen/utensil/knife{ pixel_x = -2 }, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "bLy" = ( /obj/structure/machinery/floodlight, @@ -16016,17 +16539,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) -"bMm" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, -/turf/open/floor/hybrisa/wood/darkerwood, -/area/lv759/indoors/colonial_marshals/north_office) "bMn" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /obj/structure/pipes/standard/simple/hidden/dark{ @@ -16332,9 +16844,6 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) -"bON" = ( -/turf/open/floor/plating, -/area/lv759/indoors/spaceport/communications_office) "bOU" = ( /obj/effect/decal/strata_decals/grime/grime3{ dir = 4; @@ -16458,7 +16967,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/kitchen) "bPD" = ( /obj/structure/platform_decoration/metal/almayer, @@ -16489,6 +16998,7 @@ /area/lv759/indoors/caves/comms_tower) "bPL" = ( /obj/structure/window/framed/corsat, +/obj/structure/curtain/medical, /turf/open/floor/plating, /area/lv759/indoors/wy_research_complex/medical_annex) "bPN" = ( @@ -16580,6 +17090,11 @@ pixel_x = -6; pixel_y = 4 }, +/obj/structure/blackgoocontainer{ + pixel_y = -10; + layer = 3.01; + pixel_x = 9 + }, /turf/open/floor/hybrisa/engineership/engineer_floor9, /area/lv759/indoors/derelict_ship) "bQq" = ( @@ -16870,7 +17385,7 @@ /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/colony_streets/north_east_street_LZ) "bSp" = ( -/obj/structure/machinery/light/blue{ +/obj/structure/machinery/light/small/blue{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, @@ -16909,11 +17424,11 @@ /obj/effect/decal/cleanable/blood{ icon_state = "mgibbl4" }, +/obj/structure/platform/metal/stair_cut/strata_left, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, -/obj/structure/platform/metal/stair_cut/strata_left, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_1) "bSO" = ( @@ -17104,10 +17619,6 @@ pixel_y = 3; layer = 4.12 }, -/obj/structure/curtain/colorable{ - pixel_y = 32; - color = "#8c3038" - }, /turf/open/floor/hybrisa/carpet/carpetred, /area/lv759/indoors/casino) "bTJ" = ( @@ -17499,15 +18010,16 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "bWf" = ( -/obj/effect/spawner/random/powercell, -/obj/effect/decal/cleanable/generic{ - color = "#5d524b"; - alpha = 155 +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 }, -/obj/effect/decal/cleanable/molten_item, /obj/structure/showcase{ breakable = 1; density = 0; @@ -17515,13 +18027,6 @@ icon_state = "igniter0"; name = "floor panel" }, -/obj/effect/hybrisa/misc/fake/wire/blue{ - pixel_x = -4 - }, -/obj/effect/hybrisa/misc/fake/wire/yellow, -/obj/effect/hybrisa/misc/fake/wire/red{ - pixel_x = 4 - }, /obj/structure/platform/metal/almayer, /turf/open/floor/corsat, /area/lv759/indoors/power_plant/fusion_generators) @@ -17834,9 +18339,6 @@ }, /turf/open/floor/almayer/blackfull/west, /area/lv759/indoors/wy_research_complex/xenoarcheology) -"bYl" = ( -/turf/open/floor/plating, -/area/lv759/indoors/apartment/northhallway) "bYu" = ( /obj/effect/decal/hybrisa/dirt, /obj/item/trash/cigbutt{ @@ -17896,11 +18398,6 @@ icon_state = "docstripingdir"; color = "#d3d3d3" }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitegreen/north, /area/lv759/indoors/hospital/emergency_room) "bYI" = ( @@ -18737,7 +19234,7 @@ /area/lv759/indoors/wy_research_complex/hallwaysouthwest) "cfb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastrestroomsshower) "cfd" = ( /obj/effect/decal/hybrisa/dirt, @@ -18863,7 +19360,7 @@ /area/lv759/indoors/caves/north_west_caves) "cfN" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/changing_room) "cfP" = ( /obj/structure/closet/secure_closet/freezer/meat, @@ -18879,8 +19376,7 @@ /obj/structure/machinery/door_control/brbutton{ id = "secretlockdown1"; pixel_y = 24; - needs_power = 0; - explo_proof = 1 + needs_power = 0 }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance_north) @@ -19461,8 +19957,9 @@ /turf/open/floor/plating, /area/lv759/indoors/caves/south_caves) "clb" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 14 }, /turf/open/floor/prison/darkbrown2/southeast, /area/lv759/indoors/power_plant/south_hallway) @@ -19587,7 +20084,7 @@ pixel_y = 14; pixel_x = -12 }, -/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, /area/lv759/indoors/meridian/meridian_factory) "clM" = ( /obj/structure/largecrate/random/barrel/green, @@ -20040,7 +20537,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/vehicledeploymentbay) "coK" = ( /obj/effect/decal/hybrisa/dirt, @@ -20062,10 +20559,6 @@ /turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/wy_research_complex/vehicledeploymentbay) "coU" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, /obj/structure/machinery/light/blue{ dir = 1 }, @@ -20277,7 +20770,7 @@ /turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, /area/lv759/indoors/meridian/meridian_showroom) "cqH" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing3"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -20431,7 +20924,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/cafeteriakitchen) "crT" = ( /obj/effect/decal/hybrisa/trash{ @@ -20561,7 +21054,7 @@ /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/northeast) "csK" = ( -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "csL" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -20662,7 +21155,7 @@ /obj/structure/machinery/fuelcell_recycler, /obj/structure/machinery/power/terminal, /obj/item/fuel_cell/used, -/turf/open/floor/corsat, +/turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/power_plant/equipment_east) "ctZ" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ @@ -20705,7 +21198,7 @@ /turf/open/floor/hybrisa/metal/zbrownfloor1/west, /area/lv759/indoors/meridian/meridian_factory) "cuc" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider, +/turf/closed/shuttle/dropship4/WY/StarGlider, /area/lv759/indoors/spaceport/starglider) "cuj" = ( /obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ @@ -20810,7 +21303,7 @@ /area/lv759/outdoors/colony_streets/east_central_street) "cvb" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "cvf" = ( /obj/structure/machinery/colony_floodlight/traffic{ @@ -20976,13 +21469,19 @@ /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/processing) "cvZ" = ( -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/structure/machinery/door/poddoor/hybrisa/shutters{ id = "disposals_maint" }, -/turf/open/floor/corsat/officesquares, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1; + pixel_x = 3 + }, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) "cwd" = ( /obj/structure/surface/table/reinforced/prison{ @@ -21020,7 +21519,7 @@ /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/south_east_street) "cwi" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "6" }, /area/lv759/indoors/spaceport/starglider) @@ -21054,6 +21553,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/item/shard, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) "cwp" = ( @@ -21111,13 +21611,6 @@ }, /turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, /area/lv759/indoors/recycling_plant) -"cwA" = ( -/obj/structure/platform/metal/strata/north, -/obj/structure/sign/safety/landingzone{ - pixel_x = 32 - }, -/turf/open/floor/strata/orange_cover, -/area/lv759/indoors/spaceport/docking_bay_1) "cwD" = ( /obj/effect/decal/hybrisa/road/lines1, /obj/effect/decal/hybrisa/road/road_edge, @@ -21213,9 +21706,6 @@ dir = 4; pixel_y = 12 }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 4 - }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "cxS" = ( @@ -21308,7 +21798,7 @@ id = "disposals_garage_2"; dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant) "cyX" = ( /obj/structure/surface/table/reinforced, @@ -21428,6 +21918,11 @@ /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "czP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/outdoors/power_plant/transformers_north) "czS" = ( @@ -21600,12 +22095,6 @@ dir = 8; pixel_x = 1 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "cAU" = ( @@ -21624,7 +22113,10 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/spawner/random/tool, +/obj/item/storage/box/mre/twe{ + pixel_x = 4; + pixel_y = 15 + }, /turf/open/floor/plating/platingdmg3, /area/lv759/indoors/electical_systems/substation3) "cBa" = ( @@ -21810,12 +22302,6 @@ pixel_y = 14; pixel_x = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8a6161"; - alpha = 225; - layer = 2.9; - pixel_y = 32 - }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/head_office) "cCD" = ( @@ -22298,10 +22784,6 @@ }, /turf/open/floor/almayer/cargo, /area/lv759/indoors/spaceport/baggagehandling) -"cFR" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_south) "cFZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -22381,7 +22863,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/south_hallway) "cGA" = ( /obj/structure/platform_decoration/stone/hybrisa/rockdark/north, @@ -22462,17 +22944,23 @@ /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "cGV" = ( -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/weapon/gun/pistol/highpower, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/weapon/gun/pistol/highpower, /obj/structure/surface/rack{ color = "#98a3ab" }, +/obj/item/weapon/gun/pistol/l54{ + pixel_y = -5 + }, +/obj/item/weapon/gun/pistol/l54{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/weapon/gun/pistol/l54{ + pixel_y = 4 + }, +/obj/item/weapon/gun/pistol/l54{ + pixel_x = -1; + pixel_y = 9 + }, /turf/open/floor/prison/redfull, /area/lv759/indoors/colonial_marshals/armory) "cGX" = ( @@ -22707,6 +23195,10 @@ "cIo" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable{ + color = "#8c3038"; + layer = 3.5 + }, /turf/open/floor/plating, /area/lv759/indoors/casino) "cIs" = ( @@ -23032,7 +23524,8 @@ /area/lv759/outdoors/colony_streets/north_street) "cKN" = ( /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/hotel/hotel_hallway) @@ -23131,7 +23624,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/south_maintenance) "cLp" = ( /obj/structure/prop/structure_lattice{ @@ -23275,16 +23768,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating, /area/lv759/indoors/spaceport/cargo_maintenance) -"cMw" = ( -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/obj/structure/platform_decoration/metal/almayer/west, -/obj/structure/machinery/door/poddoor/hybrisa/shutters{ - dir = 8; - layer = 2.9; - id = "engineering_lockdown" - }, -/turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_north) "cME" = ( /obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/warnplate/southwest, @@ -23310,11 +23793,11 @@ /turf/open/floor/prison, /area/lv759/outdoors/colony_streets/south_west_street) "cML" = ( +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/central_streets) "cMT" = ( @@ -23386,7 +23869,7 @@ }, /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/blue, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "cNq" = ( /obj/effect/decal/hybrisa/dirt, @@ -23401,7 +23884,8 @@ color = "#6e6e6e" }, /obj/structure/machinery/light/blue{ - dir = 4 + dir = 4; + pixel_y = 15 }, /turf/open/floor/corsat, /area/lv759/indoors/spaceport/engineering) @@ -23507,10 +23991,6 @@ /obj/item/device/flashlight/lamp/tripod{ on = 0 }, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) @@ -24752,7 +25232,7 @@ /obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_security/checkpoint_northeast) "cXk" = ( /obj/item/stack/sheet/metal, @@ -25020,7 +25500,7 @@ pixel_y = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "cYU" = ( /obj/effect/decal/medical_decals{ @@ -25265,12 +25745,6 @@ /turf/open/floor/prison/darkyellow2/north, /area/lv759/indoors/wy_research_complex/hallwaysouthwest) "dak" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /obj/structure/filingcabinet{ density = 0; pixel_x = 8; @@ -25633,7 +26107,7 @@ /obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) @@ -25644,11 +26118,6 @@ pixel_y = 7 }, /obj/effect/landmark/objective_landmark/science, -/obj/structure/curtain/colorable_transparent{ - color = "#91799d"; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/virology) "dcT" = ( @@ -25807,10 +26276,6 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, /obj/structure/machinery/light/blue{ dir = 8 }, @@ -25818,9 +26283,6 @@ icon_state = "N"; pixel_y = 3 }, -/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ - pixel_y = 28 - }, /turf/open/floor/prison/darkbrown3/northwest, /area/lv759/indoors/meridian/meridian_factory) "ddY" = ( @@ -25879,7 +26341,7 @@ pixel_x = 1; pixel_y = 4 }, -/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/caveplateau) "deD" = ( /obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ @@ -25891,12 +26353,13 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/indoors/caves/south_caves/derelict_ship) "deF" = ( -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/effect/decal/warning_stripes{ icon_state = "N" }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/plating/platingdmg3, /area/lv759/indoors/caves/north_east_caves_comms_2) "deH" = ( @@ -26108,7 +26571,7 @@ pixel_x = -3 }, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "dfX" = ( /obj/item/device/flashlight/lamp/tripod{ @@ -26127,11 +26590,11 @@ /turf/open/floor/plating, /area/lv759/indoors/casino/casino_office) "dgc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, /obj/structure/stairs{ color = "#a6aeab"; - dir = 1 + layer = 2.5 }, -/obj/structure/platform/metal/hybrisa/metalplatform6/east, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) "dgl" = ( @@ -26501,14 +26964,6 @@ }, /turf/open/hybrisa/street/sidewalkcenter/north, /area/lv759/outdoors/colony_streets/east_central_street) -"diA" = ( -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/tile/tileblackcheckered, -/area/lv759/indoors/casino) "diH" = ( /obj/structure/machinery/computer/arcade{ pixel_x = -3; @@ -26670,12 +27125,12 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/southwest_maintenance) "djI" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "djJ" = ( /turf/open/floor/prison/darkbrown2/east, @@ -26887,6 +27342,7 @@ }, /obj/effect/decal/hybrisa/dirt, /obj/structure/barricade/handrail/hybrisa/handrail, +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/hybrisa/metal/grated/east, /area/lv759/outdoors/colony_streets/north_east_street) "dlq" = ( @@ -26918,7 +27374,7 @@ /turf/open/floor/strata, /area/lv759/indoors/colonial_marshals/hallway_north_locker) "dlL" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "47" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -27224,15 +27680,6 @@ /obj/item/storage/bag/plasticbag, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/north_west_street) -"doF" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = 32 - }, -/turf/open/floor/hybrisa/metal/zbrownfloor1/west, -/area/lv759/indoors/meridian/meridian_office) "doH" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -27352,7 +27799,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_security/checkpoint_central) "dpr" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -27474,8 +27921,6 @@ /turf/closed/wall/hybrisa/research/reinforced, /area/lv759/indoors/wy_research_complex/hallwaysoutheast) "dqs" = ( -/obj/structure/platform/metal/strata/east, -/obj/structure/largecrate/empty/secure, /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -27483,6 +27928,11 @@ /area/lv759/indoors/spaceport/docking_bay_2) "dqv" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/apartment/westentertainment) "dqz" = ( @@ -27519,10 +27969,6 @@ icon_state = "stone"; color = "#c59f52" }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilegrey, /area/lv759/indoors/casino) "dqK" = ( @@ -28163,7 +28609,7 @@ /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, /area/lv759/indoors/apartment/northapartments) "dvk" = ( /obj/effect/decal/hybrisa/dirt, @@ -28373,9 +28819,6 @@ icon_state = "bodybag_folded" }, /obj/structure/bed/portable_surgery, -/obj/structure/curtain/medical{ - pixel_y = -32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "dwE" = ( @@ -28392,9 +28835,6 @@ /obj/structure/barricade/handrail/wire{ layer = 4 }, -/obj/structure/machinery/light/blue{ - dir = 8 - }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/spaceport/engineering) "dwG" = ( @@ -28541,11 +28981,6 @@ dir = 4; pixel_y = -4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/prison/red/northeast, /area/lv759/indoors/hospital/icu) "dyM" = ( @@ -28569,7 +29004,8 @@ /area/lv759/outdoors/colony_streets/north_east_street) "dyT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/hybrisa/street/cement1, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_maintenance_east) "dyX" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -29111,9 +29547,6 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/curtain/medical{ - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "dDr" = ( @@ -29126,12 +29559,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/spawner/random/powercell{ - pixel_y = -1 - }, -/obj/effect/spawner/random/powercell{ - pixel_y = 11 - }, /turf/open/floor/strata/yellow3/west, /area/lv759/indoors/power_plant/geothermal_generators) "dDy" = ( @@ -29852,12 +30279,16 @@ /obj/structure/platform/metal/hybrisa/metalplatform1/east, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/item/hybrisa/misc/trash_bag_full_prop{ - pixel_x = -9; - pixel_y = 20 + pixel_x = -12; + pixel_y = 15 }, /obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ pixel_y = 28 }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -2; + pixel_y = 11 + }, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/central_streets) "dJI" = ( @@ -30061,7 +30492,8 @@ dir = 4 }, /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/northeast, /area/lv759/outdoors/colony_streets/central_streets) @@ -30078,12 +30510,6 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_street) "dLp" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 1; @@ -30122,7 +30548,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/prison, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/processing) "dLD" = ( /obj/effect/decal/hybrisa/road/road_stop{ @@ -30132,12 +30558,6 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) "dLN" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = 32; - alpha = 220 - }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) "dLO" = ( @@ -30185,13 +30605,14 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/ammo_magazine/pistol/highpower{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/weapon/gun/pistol/highpower{ +/obj/item/weapon/gun/pistol/l54{ pixel_x = -1; - pixel_y = 4 + pixel_y = 9 + }, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54{ + pixel_x = 7; + pixel_y = 2 }, /turf/open/floor/prison/redfull, /area/lv759/indoors/colonial_marshals/armory_firingrange) @@ -30273,11 +30694,12 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/hospital/maintenance_north) "dMY" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, /obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, /turf/open/floor/corsat/officesquares, /area/lv759/outdoors/colony_streets/central_streets) "dNb" = ( @@ -30337,7 +30759,7 @@ icon_state = "3" }, /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "dNz" = ( /obj/structure/platform_decoration/metal/strata, @@ -30354,7 +30776,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "dNG" = ( /obj/effect/decal/warning_stripes{ @@ -30379,8 +30801,7 @@ /area/lv759/indoors/southwest_public_restroom) "dOb" = ( /obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 + color = "#a6aeab" }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/spaceport/cargo) @@ -30455,7 +30876,7 @@ dir = 1; locked = 1 }, -/turf/open/floor/plating, +/turf/open/floor/interior/wood, /area/lv759/indoors/jacks_surplus) "dOH" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -30555,6 +30976,11 @@ /area/lv759/indoors/weymart) "dPm" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#687d89"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/press_room) "dPo" = ( @@ -30659,14 +31085,6 @@ }, /turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, /area/lv759/indoors/weyyu_office/breakroom) -"dQj" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/lv759/outdoors/colony_streets/central_streets) "dQk" = ( /obj/structure/machinery/hybrisa/coffee_machine{ pixel_x = -2; @@ -30715,7 +31133,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/bar/bathroom) "dQM" = ( /obj/structure/largecrate/empty/case, @@ -30985,6 +31403,7 @@ /area/lv759/outdoors/colony_streets/north_east_street_LZ) "dSP" = ( /obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/plating, /area/lv759/indoors/weymart/backrooms) "dSW" = ( @@ -31372,14 +31791,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/hybrisa/engineership/pillars/west/pillarwest1, /area/lv759/oob) -"dVH" = ( -/obj/structure/platform/metal/strata/west, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "dVT" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -31604,6 +32015,12 @@ icon_state = "SW-out"; pixel_x = -2 }, +/obj/structure/machinery/door_control{ + id = "weymart_garage"; + name = "Weymart loading-bay shutters"; + pixel_y = -20; + needs_power = 0 + }, /turf/open/floor/plating, /area/lv759/indoors/meridian/meridian_maintenance) "dXq" = ( @@ -31784,7 +32201,7 @@ /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "dYL" = ( /obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark2, @@ -32012,7 +32429,7 @@ /obj/structure/surface/rack{ color = "#848484" }, -/turf/open/floor/corsat, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, /area/lv759/indoors/meridian/meridian_factory) "eaq" = ( /obj/effect/decal/warning_stripes{ @@ -32381,7 +32798,6 @@ /obj/effect/decal/hybrisa/road/road_stop{ pixel_y = -6 }, -/obj/effect/decal/hybrisa/road/lines2, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/central_streets) "edy" = ( @@ -32391,10 +32807,11 @@ /area/lv759/indoors/wy_research_complex/hangarbay) "edA" = ( /obj/structure/platform/metal/almayer/east, +/obj/structure/blocker/forcefield/vehicles, /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, -/obj/structure/blocker/forcefield/vehicles, /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/outdoors/caves/north_west_caves_outdoors) "edB" = ( @@ -32446,7 +32863,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant/synthetic_storage) "edQ" = ( /obj/structure/pipes/standard/simple/hidden/dark, @@ -32461,7 +32878,7 @@ /area/lv759/indoors/weymart) "edR" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/hotel/hotel_hallway) "edX" = ( /obj/effect/decal/warning_stripes{ @@ -32536,11 +32953,10 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/landing_zone_1) "eeO" = ( +/obj/structure/blocker/forcefield/vehicles, /obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 + color = "#b7b8b2" }, -/obj/structure/blocker/forcefield/vehicles, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/caves/north_west_caves_outdoors) "eeP" = ( @@ -32555,17 +32971,6 @@ }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) -"eeV" = ( -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) "eeX" = ( /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 4 @@ -32639,6 +33044,11 @@ pixel_x = 3; pixel_y = 17 }, +/obj/structure/sign/calendar/twe{ + pixel_x = -4; + pixel_y = 33; + layer = 2.9 + }, /turf/open/floor/wood, /area/lv759/indoors/apartment/eastbedrooms) "efu" = ( @@ -32696,10 +33106,6 @@ /area/lv759/indoors/caves/west_caves) "efI" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_y = 20; - pixel_x = -4 - }, /obj/item/ashtray/bronze{ icon_state = "ashtray_full_bl"; pixel_x = 8; @@ -32708,8 +33114,12 @@ /obj/item/trash/cigbutt, /obj/item/trash/cigbutt, /obj/structure/sign/calendar/wy{ - pixel_y = 30; - layer = 2.9 + pixel_y = 29; + layer = 3 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_y = 20; + pixel_x = -4 }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) @@ -32730,7 +33140,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_street) "efT" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "83" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -33134,12 +33544,6 @@ /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/apartment/northhallway) "eja" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 2.9; - pixel_y = 32; - alpha = 220 - }, /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8; pixel_y = 18; @@ -33206,11 +33610,6 @@ /area/lv759/indoors/apartment/eastbedrooms) "ejt" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = 32 - }, /obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/zbrownfloor_corner/west, /area/lv759/indoors/meridian/meridian_office) @@ -33331,9 +33730,6 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/meridian/meridian_maintenance) -"ejV" = ( -/turf/closed/wall/hybrisa/spaceport, -/area/lv759/indoors/spaceport/docking_bay_2) "ekb" = ( /obj/effect/decal/cleanable/blood, /obj/item/trash/hybrisa/cuppa_joes/empty_cup, @@ -33369,12 +33765,6 @@ pixel_y = 10 }, /obj/effect/decal/hybrisa/trash, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/north_office) "ekq" = ( @@ -33502,7 +33892,7 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/indoors/caves/south_east_caves) "elL" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "67" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -33541,7 +33931,8 @@ /obj/structure/platform/metal/hybrisa/metalplatform6/east, /obj/effect/decal/hybrisa/dirt, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -33594,7 +33985,7 @@ "emm" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/cuppajoes) "emp" = ( /obj/structure/cable{ @@ -33830,6 +34221,11 @@ /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/weyyu_office) "eoc" = ( @@ -33920,7 +34316,7 @@ /turf/open/floor/mech_bay_recharge_floor, /area/lv759/indoors/wy_research_complex/hangarbay) "eoZ" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "4" }, /area/lv759/indoors/spaceport/starglider) @@ -33973,7 +34369,7 @@ /obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hotel/hotel_rooms) "epI" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -34107,7 +34503,6 @@ pixel_y = 14; pixel_x = 4 }, -/obj/item/clothing/head/fedora/grey, /obj/structure/noticeboard{ pixel_y = 32 }, @@ -34117,6 +34512,7 @@ desc = null; name = "sticky notes" }, +/obj/item/clothing/head/fedora/brown, /turf/open/floor/hybrisa/carpet/carpetfadedred, /area/lv759/indoors/colonial_marshals/head_office) "eqF" = ( @@ -34363,12 +34759,6 @@ /obj/structure/machinery/big_computers/messaging_server/brown{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1/northwest, /area/lv759/indoors/spaceport/communications_office) "esG" = ( @@ -34491,7 +34881,7 @@ /turf/open/floor/prison/red/northeast, /area/lv759/indoors/colonial_marshals/hallway_south) "eti" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "rightengine_3" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -34584,7 +34974,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilered, /area/lv759/indoors/pizzaria) "etX" = ( /obj/effect/decal/warning_stripes{ @@ -34593,16 +34983,6 @@ }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/caves/wy_research_complex_entrance) -"etZ" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -9; - pixel_y = 10 - }, -/obj/structure/machinery/light/blue{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "eug" = ( /obj/structure/machinery/atm{ icon = 'icons/obj/structures/props/atm.dmi'; @@ -35390,7 +35770,8 @@ dir = 8 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/corsat, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) @@ -35674,13 +36055,6 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, /area/lv759/outdoors/landing_zone_2) -"eCV" = ( -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, -/turf/open/floor/hybrisa/tile/tileblackcheckered, -/area/lv759/indoors/casino) "eCW" = ( /mob/living/simple_animal/mouse/rat/brown, /obj/structure/disposalpipe/tagger/partial, @@ -35726,7 +36100,7 @@ /obj/structure/prop/hybrisa/misc/redmeter{ pixel_y = 32 }, -/turf/open/floor/prison/darkbrown2/southwest, +/turf/open/floor/prison/darkbrown2, /area/lv759/indoors/power_plant/south_hallway) "eDR" = ( /obj/effect/decal/hybrisa/dirt, @@ -35880,16 +36254,16 @@ /turf/open/floor/prison/darkyellow2/west, /area/lv759/indoors/caves/wy_research_complex_entrance) "eEN" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - layer = 2.5 - }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_x = -1; pixel_y = 2 }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/weymart/backrooms) "eEQ" = ( @@ -36063,7 +36437,7 @@ pixel_x = -8; pixel_y = 18 }, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "eGr" = ( /turf/closed/shuttle/dropship2/transparent{ @@ -36430,11 +36804,8 @@ icon_state = "4-8" }, /obj/structure/platform/metal/almayer/north, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "eJh" = ( /turf/closed/wall/hybrisa/marhsalls/reinforced, @@ -36693,8 +37064,7 @@ /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_center"; - name = "Checkpoint Lockdown"; - explo_proof = 1 + name = "Checkpoint Lockdown" }, /obj/item/reagent_container/food/drinks/coffee{ pixel_x = -4; @@ -36921,7 +37291,6 @@ pixel_x = 1; pixel_y = 8 }, -/obj/structure/machinery/power/apc/no_power/east, /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 4 }, @@ -36977,13 +37346,11 @@ /turf/open/floor/kutjevo/fake_wood, /area/lv759/indoors/apartment/westbedrooms) "eMI" = ( -/obj/structure/platform/metal/strata, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/blue3/north, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "eMO" = ( /obj/structure/pipes/standard/simple/hidden/dark, @@ -36992,15 +37359,15 @@ "eMP" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/almayer, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 4 - }, /obj/structure/platform/metal/stair_cut/platform_left, /obj/structure/cable{ icon_state = "5-8"; color = "#550d0d" }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, /turf/open/floor/plating, /area/lv759/indoors/caves/comms_tower) "eMR" = ( @@ -37342,7 +37709,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) "eQw" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_factory) "eQx" = ( /obj/structure/fence/dark, @@ -37526,7 +37893,7 @@ /area/lv759/indoors/colonial_marshals/wardens_office) "eRI" = ( /obj/effect/timed_event/scrapeaway{ - time = 40 + time = 30 }, /turf/closed/wall/hybrisa/rock, /area/lv759/indoors/caves/central_caves) @@ -37536,7 +37903,9 @@ /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/mining_outpost/east_deploymentbay) "eRR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/autoname, +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1 + }, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/geothermal_generators) "eRT" = ( @@ -37904,21 +38273,6 @@ }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/south_east_street) -"eUx" = ( -/obj/structure/bed/hybrisa/hospital/hospitaldivider{ - pixel_y = -8; - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, -/turf/open/floor/prison/blue/northeast, -/area/lv759/indoors/hospital/outgoing) "eUy" = ( /obj/structure/prop/hybrisa/cavedecor/stalagmite2, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -38025,7 +38379,7 @@ /turf/open/floor/almayer/blackfull/west, /area/lv759/indoors/wy_research_complex/xenobiology) "eVc" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "17"; opacity = 0 }, @@ -38041,7 +38395,7 @@ dir = 1; locked = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "eVy" = ( /obj/effect/decal/hybrisa/dirt, @@ -38329,7 +38683,7 @@ /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/north_street) "eYd" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "18" }, /area/lv759/indoors/spaceport/starglider) @@ -38547,11 +38901,11 @@ /turf/open/floor/prison/whitegreen/east, /area/lv759/indoors/hospital/east_hallway) "eZA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, /obj/structure/stairs{ color = "#a6aeab"; - dir = 1 + layer = 2.5 }, -/obj/structure/platform/metal/hybrisa/metalplatform6/west, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) "eZB" = ( @@ -38635,7 +38989,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northfoyer) "fak" = ( /obj/effect/decal/medical_decals{ @@ -38712,13 +39066,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/power_plant/telecomms) "faV" = ( -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/hotel/hotel_hallway) "faX" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/west, /obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 + color = "#a6aeab" }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) @@ -38773,10 +39126,10 @@ pixel_y = -4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "fbs" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "30" }, /area/lv759/indoors/spaceport/starglider) @@ -39147,11 +39500,12 @@ /area/lv759/outdoors/landing_zone_1) "feM" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/west, -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/structure/pipes/standard/simple/hidden/dark, /obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) "feN" = ( @@ -39254,7 +39608,7 @@ pixel_y = -12 }, /obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, +/turf/open/floor/prison/cell_stripe, /area/lv759/indoors/electical_systems/substation1) "ffl" = ( /turf/closed/shuttle/dropship2/transparent{ @@ -39432,11 +39786,8 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/almayer/north, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "ffP" = ( /obj/structure/window/framed/bunker/reinforced, @@ -39817,7 +40168,7 @@ /obj/effect/landmark/objective_landmark/close{ layer = 5 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_office) "fjl" = ( /obj/structure/fence/dark, @@ -40219,7 +40570,7 @@ locked = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/apartment/eastbedroomsstorage) "fmC" = ( /obj/effect/decal/hybrisa/dirt, @@ -40633,10 +40984,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/sign/poster/wylogo{ - pixel_y = 32 - }, /obj/effect/landmark/objective_landmark/medium, +/obj/structure/sign/calendar/wy{ + pixel_y = 29; + layer = 3 + }, /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "fpL" = ( @@ -40660,8 +41012,7 @@ /area/lv759/indoors/caves/north_west_caves) "fpT" = ( /obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 + color = "#b7b8b2" }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/caves/north_west_caves_outdoors) @@ -41159,7 +41510,7 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_east_street_LZ) "fua" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "62" }, /area/lv759/indoors/spaceport/starglider) @@ -41337,6 +41688,10 @@ /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 }, +/obj/structure/curtain/colorable{ + color = "#8c3038"; + layer = 3.5 + }, /turf/open/floor/plating, /area/lv759/indoors/casino) "fuT" = ( @@ -41409,6 +41764,7 @@ layer = 4 }, /obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/grated, /area/lv759/outdoors/colony_streets/central_streets) "fvC" = ( @@ -41675,12 +42031,6 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/central_streets) "fxt" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_y = 32; - layer = 3 - }, /obj/structure/filingcabinet/chestdrawer{ density = 0; pixel_x = 10; @@ -41751,15 +42101,9 @@ "fxZ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /obj/structure/sign/calendar/twe{ - pixel_y = 29; - pixel_x = -4 + pixel_x = -2; + pixel_y = 29 }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/north_office) @@ -41784,7 +42128,8 @@ /obj/structure/platform/metal/hybrisa/metalplatform6/west, /obj/effect/decal/hybrisa/dirt, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -42224,7 +42569,7 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/east_central_street) "fAV" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "leftengine_1" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -42315,18 +42660,10 @@ /turf/open/floor/hybrisa/carpet/carpetreddeco, /area/lv759/indoors/apartment/northapartments) "fBC" = ( -/obj/item/clipboard{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/packageWrap{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer{ - color = "#EBD9B7" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison/darkbrown2/west, +/turf/open/floor/prison/darkbrown2/northwest, /area/lv759/indoors/power_plant) "fBL" = ( /obj/effect/decal/warning_stripes{ @@ -42456,8 +42793,7 @@ /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_west"; - name = "Checkpoint Lockdown"; - explo_proof = 1 + name = "Checkpoint Lockdown" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42597,8 +42933,7 @@ /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) "fEo" = ( -/obj/structure/platform_decoration/metal/strata/east, -/turf/open/floor/strata/blue3, +/turf/open/floor/strata/blue3/north, /area/lv759/indoors/spaceport/docking_bay_2) "fEu" = ( /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ @@ -42713,7 +43048,7 @@ "fFj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart) "fFr" = ( /obj/effect/decal/hybrisa/dirt, @@ -42861,7 +43196,7 @@ /area/lv759/indoors/caves/south_caves) "fGp" = ( /obj/structure/machinery/door/airlock/hybrisa/personal/autoname, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "fGq" = ( /obj/effect/hybrisa/misc/fake/wire/red{ @@ -42947,7 +43282,7 @@ /area/lv759/indoors/wy_research_complex/cargo) "fHd" = ( /obj/effect/timed_event/scrapeaway{ - time = 40 + time = 30 }, /turf/closed/wall/hybrisa/rock, /area/lv759/indoors/caves/central_caves_north) @@ -43049,7 +43384,7 @@ /area/lv759/indoors/wy_research_complex/cargo) "fHF" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart) "fHK" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -43112,7 +43447,7 @@ /area/lv759/outdoors/colony_streets/north_street) "fHZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/east_deploymentbay) "fIc" = ( /obj/effect/decal/hybrisa/road/lines3, @@ -43339,7 +43674,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/paramedics_garage) "fKx" = ( /obj/effect/decal/hybrisa/road/road_edge{ @@ -43421,7 +43756,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northhallway) "fLl" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, @@ -43579,7 +43914,7 @@ "fMC" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, /obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hotel/hotel_rooms) "fMH" = ( /obj/structure/platform/metal/kutjevo_smooth/north{ @@ -43704,7 +44039,7 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/indoors/caves/north_caves/east) "fNP" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "75" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -43727,13 +44062,6 @@ }, /turf/open/floor/prison/whitegreenfull, /area/lv759/indoors/hospital/cryo_room) -"fOb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_y = 16 - }, -/turf/closed/wall/hybrisa/colony/reinforced, -/area/lv759/indoors/meridian/meridian_factory) "fOc" = ( /obj/structure/sign/safety/landingzone{ pixel_y = 7; @@ -43910,11 +44238,10 @@ pixel_x = 5; pixel_y = 13 }, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8 + }, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) "fPs" = ( @@ -44139,11 +44466,8 @@ icon_state = "4-10" }, /obj/structure/platform/metal/almayer, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "fRb" = ( /obj/structure/roof/hybrisa/lattice_prop/lattice_1{ @@ -44861,7 +45185,7 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/close, /obj/structure/closet/cabinet, -/obj/item/clothing/shoes/royal_marine, +/obj/item/clothing/shoes/marine/royal_marine, /obj/item/clothing/accessory/patch/royal_marines, /obj/item/clothing/under/marine/veteran/royal_marine, /obj/effect/landmark/objective_landmark/medium, @@ -44896,7 +45220,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/prison, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "fWZ" = ( /obj/effect/decal/cleanable/dirt{ @@ -45323,7 +45647,7 @@ vehicle_resistant = 1 }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "fZU" = ( /obj/structure/machinery/vending/coffee{ @@ -45584,12 +45908,6 @@ dir = 4; pixel_y = 7 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "gbK" = ( @@ -46008,7 +46326,7 @@ /area/lv759/indoors/derelict_ship) "geG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/westhallway) "geH" = ( /obj/effect/decal/hybrisa/road/lines2, @@ -46155,7 +46473,7 @@ /obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/east_deploymentbay) "gfS" = ( /obj/effect/landmark/monkey_spawn, @@ -46497,7 +46815,7 @@ /area/lv759/outdoors/colony_streets/south_east_street) "giI" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_showroom) "giM" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -46630,7 +46948,7 @@ }, /obj/structure/pipes/standard/simple/hidden/dark, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, /area/lv759/indoors/hotel/hotel_rooms) "gku" = ( /obj/structure/machinery/big_computers/computerblack/computer4, @@ -46862,6 +47180,9 @@ /area/lv759/indoors/wy_research_complex/cafeteriakitchen) "gml" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable{ + color = "#5a5a5a" + }, /turf/open/floor/plating, /area/lv759/indoors/casino/casino_office) "gmm" = ( @@ -46946,6 +47267,11 @@ /area/lv759/indoors/meridian/meridian_office) "gnc" = ( /obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/storage) "gni" = ( @@ -46967,7 +47293,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ambulance_garage" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/paramedics_garage) "gnm" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform2{ @@ -47069,7 +47395,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/security) "gnI" = ( /obj/effect/decal/hybrisa/dirt, @@ -47250,7 +47576,7 @@ "gpC" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen) "gpE" = ( /obj/item/reagent_container/food/drinks/coffee{ @@ -47329,10 +47655,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/plating/platingdmg3/west, /area/lv759/outdoors/colony_streets/south_east_street) -"gqt" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_south) "gqu" = ( /obj/structure/platform/metal/hybrisa/metalplatform1/east, /obj/structure/barricade/handrail/strata{ @@ -47393,7 +47715,8 @@ "gqY" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/west, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/east_central_street_left) @@ -47716,7 +48039,7 @@ /obj/item/stack/cable_coil/cut{ icon_state = "coil1" }, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "33"; opacity = 0 }, @@ -48374,7 +48697,6 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door_control/brbutton{ id = "hybrisamining_northeast2"; - explo_proof = 1; name = "Mining Lockdown"; pixel_x = -6; pixel_y = 32 @@ -48441,7 +48763,7 @@ /area/lv759/outdoors/colony_streets/north_street) "gzw" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hotel/hotel_rooms) "gzz" = ( /obj/effect/decal/hybrisa/dirt, @@ -48607,7 +48929,7 @@ "gBm" = ( /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/landing_zone_1) @@ -48678,6 +49000,7 @@ pixel_x = 8; pixel_y = 2 }, +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/hybrisa/metal/zbrownfloor_corner/east, /area/lv759/indoors/meridian/meridian_office) "gBU" = ( @@ -48712,9 +49035,6 @@ /obj/item/weapon/dart, /turf/open/floor/corsat, /area/lv759/indoors/spaceport/maintenance_east) -"gCg" = ( -/turf/closed/wall/wood, -/area/lv759/oob) "gCj" = ( /obj/structure/prop/hybrisa/signs/high_voltage/small{ pixel_y = 32 @@ -48764,7 +49084,7 @@ /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/dormsbedroom) "gCI" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, @@ -48840,7 +49160,7 @@ /obj/item/storage/bag/plasticbag, /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/cement1, +/turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/central_streets) "gDn" = ( /turf/open/floor/prison/southwest, @@ -48995,7 +49315,7 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "gEn" = ( /obj/structure/prop/ice_colony/soil_net, @@ -49310,19 +49630,11 @@ /turf/open/floor/strata/red3/north, /area/lv759/indoors/spaceport/security) "gGO" = ( -/obj/structure/prop/hybrisa/vehicles/Armored_Truck/WY_White, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/WY_White{ + layer = 4 + }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) -"gGP" = ( -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/machinery/door/poddoor/hybrisa/shutters{ - dir = 8; - layer = 2.9; - id = "engineering_lockdown" - }, -/turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_south) "gGQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -49434,6 +49746,11 @@ /area/lv759/indoors/caves/wy_research_complex_entrance) "gHF" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 2.9; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "gHI" = ( @@ -49674,7 +49991,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "gJx" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, @@ -49747,6 +50064,10 @@ /obj/structure/bed/hybrisa/hospital/hospitaldivider{ pixel_y = -8 }, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/outgoing) "gJW" = ( @@ -49903,7 +50224,7 @@ /turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/reception) "gKH" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "56" }, /area/lv759/indoors/spaceport/starglider) @@ -50327,7 +50648,7 @@ "gOG" = ( /obj/structure/stairs{ color = "#a6aeab"; - dir = 1 + layer = 2.5 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -50427,6 +50748,7 @@ /area/lv759/outdoors/colony_streets/south_east_street) "gPA" = ( /obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "gPE" = ( @@ -50542,10 +50864,6 @@ /obj/structure/prop/hybrisa/misc/graffiti/graffiti4{ pixel_y = -4 }, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 4 - }, /obj/structure/sign/poster/ad{ pixel_x = 4; pixel_y = 32 @@ -50556,6 +50874,10 @@ pixel_y = 34 }, /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) "gQp" = ( @@ -50653,12 +50975,6 @@ pixel_y = 21 }, /obj/effect/decal/cleanable/blood, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/hospital/virology) "gQW" = ( @@ -50934,7 +51250,7 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/indoors/caves/comms_tower) "gSF" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "99" }, /area/lv759/indoors/spaceport/starglider) @@ -50969,7 +51285,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_security/checkpoint_northeast) "gSU" = ( /obj/effect/decal/hybrisa/dirt, @@ -51083,7 +51399,7 @@ /turf/open/floor/plating, /area/lv759/indoors/electical_systems/substation3) "gTz" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "95" }, /area/lv759/indoors/spaceport/starglider) @@ -51108,11 +51424,6 @@ pixel_y = 32; layer = 2.8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/prison/blue_plate, /area/lv759/indoors/hospital/outgoing) "gTP" = ( @@ -51702,6 +52013,10 @@ layer = 4; pixel_x = -20 }, +/obj/structure/largecrate/random/barrel/red{ + pixel_x = 4; + pixel_y = 3 + }, /turf/open/hybrisa/street/cement2, /area/lv759/outdoors/colony_streets/north_west_street) "gZg" = ( @@ -51736,11 +52051,12 @@ icon_state = "N" }, /obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) "gZl" = ( /obj/structure/transmitter/colony_net{ @@ -51807,12 +52123,6 @@ /obj/item/paper/courtroom{ name = "A Crash Course in Legal SOP" }, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/north_office) "gZJ" = ( @@ -51927,6 +52237,10 @@ /obj/structure/surface/table/reinforced/prison{ color = "#98a3ab" }, +/obj/item/ammo_magazine/pistol/l54{ + pixel_x = -6; + pixel_y = 16 + }, /turf/open/floor/plating/kutjevo, /area/lv759/indoors/colonial_marshals/armory) "haS" = ( @@ -52100,7 +52414,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "hco" = ( /obj/structure/platform/metal/almayer, @@ -52264,7 +52578,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "hdU" = ( /obj/structure/platform_decoration/metal/almayer, @@ -52680,7 +52994,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) @@ -53413,12 +53727,6 @@ /obj/structure/closet/lasertag/red, /obj/item/clothing/suit/redtag, /obj/effect/landmark/objective_landmark/close, -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) "hnb" = ( @@ -53489,7 +53797,7 @@ /obj/item/storage/box/mre/wy, /obj/item/storage/box/mre/wy, /obj/effect/spawner/random/attachment, -/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/caveplateau) "hnA" = ( /obj/structure/window/reinforced, @@ -53827,7 +54135,7 @@ /turf/open/floor/hybrisa/metal/metalwhitefull, /area/lv759/indoors/colonial_marshals/prisoners_recreation_area) "hqi" = ( -/obj/structure/cargo_container/hd/left, +/obj/structure/cargo_container/wy/left, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "hqo" = ( @@ -53874,7 +54182,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_street) @@ -53974,7 +54282,7 @@ /area/lv759/indoors/caves/east_caves) "hrq" = ( /obj/structure/machinery/door/airlock/hybrisa/medical_solid, -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/icu) "hrt" = ( /obj/structure/barricade/handrail/hybrisa/road/metal/metaldark{ @@ -53992,16 +54300,16 @@ /turf/open/hybrisa/street/sidewalkcenter/west, /area/lv759/outdoors/colony_streets/north_east_street) "hru" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 4 - }, /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, /obj/structure/prop/invuln/overhead_pipe{ color = "#a6aeab"; dir = 5 }, /obj/structure/blocker/invisible_wall, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, /turf/open/floor/corsat, /area/lv759/bunker/gonzo) "hrv" = ( @@ -54108,11 +54416,6 @@ /obj/structure/bed/stool{ icon_state = "stool_alt" }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32; - layer = 3.5 - }, /turf/open/floor/hybrisa/tile/tileblackcheckered, /area/lv759/indoors/casino) "hrZ" = ( @@ -54450,13 +54753,14 @@ /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/central_streets) "huz" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "94" }, /area/lv759/indoors/spaceport/horizon_runner) "huA" = ( /obj/structure/window_frame/hybrisa/colony/engineering/reinforced, /obj/item/shard, +/obj/item/shard, /turf/open/floor/plating, /area/lv759/indoors/power_plant/Hallway_East) "huF" = ( @@ -54584,7 +54888,7 @@ }, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/west, -/turf/open/hybrisa/street/underground_unweedable, +/turf/open/floor/prison/cell_stripe, /area/lv759/indoors/electical_systems/substation1) "hvV" = ( /obj/item/tool/warning_cone{ @@ -54867,10 +55171,10 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/wood, /area/lv759/indoors/hospital/cmo_office) "hyA" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing8"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -54933,12 +55237,6 @@ pixel_y = 7 }, /obj/item/reagent_container/food/drinks/sillycup, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/north_office) "hzk" = ( @@ -54970,8 +55268,7 @@ /area/lv759/outdoors/colony_streets/east_central_street) "hzq" = ( /obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 + color = "#b7b8b2" }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/central_streets) @@ -55110,7 +55407,7 @@ /turf/open/hybrisa/street/cement2, /area/lv759/outdoors/colony_streets/east_central_street) "hAc" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_showroom) "hAf" = ( /obj/structure/sign/safety/maint, @@ -55437,10 +55734,6 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_street) "hCr" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft"; - color = "#d3d3d3" - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, @@ -55457,11 +55750,6 @@ pixel_y = 20; dir = 1 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitegreen/northwest, /area/lv759/indoors/hospital/emergency_room) "hCC" = ( @@ -55497,6 +55785,12 @@ /area/lv759/indoors/caves/north_caves) "hCU" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, +/obj/effect/landmark/nightmare{ + insert_tag = "iasf_souter_airbase" + }, +/obj/effect/landmark/nightmare{ + insert_tag = "iasf_souter_airbase_survivors" + }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "hCW" = ( @@ -55835,7 +56129,7 @@ /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/bar/bathroom) "hEQ" = ( /obj/effect/decal/hybrisa/dirt, @@ -55990,11 +56284,6 @@ dir = 4 }, /obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitegreenfull, /area/lv759/indoors/hospital/emergency_room) "hGx" = ( @@ -56063,7 +56352,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant_office) "hGT" = ( /obj/structure/platform/metal/hybrisa/metalplatform1/west, @@ -56307,7 +56596,7 @@ pixel_y = 5 }, /obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/prison, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/caves/sensory_tower) "hIM" = ( /obj/structure/machinery/light/double/blue, @@ -56487,7 +56776,7 @@ name = "towel" }, /obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/changing_room) "hKf" = ( /obj/structure/machinery/conveyor, @@ -56705,7 +56994,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname{ locked = 1 }, -/turf/open/floor/plating, +/turf/open/floor/prison/blue/west, /area/lv759/indoors/power_plant/telecomms) "hLN" = ( /obj/effect/decal/hybrisa/dirt, @@ -56817,8 +57106,7 @@ /area/lv759/oob) "hMI" = ( /obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 + color = "#b7b8b2" }, /turf/open/floor/hybrisa/engineership/engineer_floor9, /area/lv759/indoors/derelict_ship) @@ -56930,13 +57218,10 @@ /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/south) "hNp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 6 }, -/turf/open/floor/prison/blue, +/turf/open/floor/prison/bluecorner, /area/lv759/indoors/power_plant/telecomms) "hNr" = ( /obj/item/trash/cigbutt{ @@ -56949,7 +57234,7 @@ /obj/structure/closet, /obj/item/storage/backpack/satchel, /obj/item/tape, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/changing_room) "hNA" = ( /obj/structure/platform/stone/hybrisa/rockdark/east, @@ -57025,7 +57310,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant/synthetic_storage) "hNZ" = ( /obj/item/clothing/head/hardhat{ @@ -57261,7 +57546,7 @@ layer = 5 }, /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "hPL" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/north, @@ -57460,9 +57745,6 @@ /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ dir = 8 }, -/obj/effect/landmark/nightmare{ - insert_tag = "clfadmin" - }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "hRr" = ( @@ -58157,7 +58439,6 @@ /obj/structure/machinery/door_control/brbutton/alt{ id = "hybrisaLZ2_2"; name = "north - door-control"; - explo_proof = 1; needs_power = 0 }, /obj/effect/decal/warning_stripes{ @@ -58196,7 +58477,8 @@ /obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ pixel_y = 28 }, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_maintenance_east) "hWL" = ( /obj/effect/decal/warning_stripes{ @@ -58227,7 +58509,6 @@ pixel_y = 3 }, /obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/machinery/light, /turf/open/floor/prison/darkbrown2/north, /area/lv759/indoors/power_plant/south_hallway) "hWZ" = ( @@ -58260,7 +58541,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/prison, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/electical_systems/substation2) "hXw" = ( /turf/closed/wall/hybrisa/spaceport, @@ -58395,7 +58676,7 @@ "hYt" = ( /obj/structure/platform/metal/strata/east, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/blue3, /area/lv759/indoors/spaceport/docking_bay_2) "hYy" = ( /obj/effect/decal/hybrisa/dirt, @@ -58486,7 +58767,7 @@ /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/colonial_marshals/north_office) "hYZ" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "15" }, /area/lv759/indoors/spaceport/starglider) @@ -58495,6 +58776,11 @@ /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/weyyu_office/supervisor) "hZb" = ( @@ -58614,7 +58900,6 @@ /turf/closed/wall/hybrisa/colony/reinforced/hull, /area/lv759/oob) "hZZ" = ( -/obj/effect/spawner/random/powercell, /obj/item/tool/shovel{ pixel_x = 2; pixel_y = 5 @@ -58721,7 +59006,7 @@ /turf/open/floor/hybrisa/metal/bluemetal1/northwest, /area/lv759/indoors/spaceport/flight_control_room) "iaD" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northfoyer) "iaE" = ( /obj/structure/machinery/vending/coffee{ @@ -59248,11 +59533,6 @@ pixel_x = -1; pixel_y = 5 }, -/obj/structure/curtain/colorable_transparent{ - color = "#91799d"; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/virology) "ieV" = ( @@ -59296,11 +59576,14 @@ /area/lv759/indoors/derelict_ship) "ifb" = ( /obj/structure/machinery/light/double/blue, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_box/magazine/mk45, /obj/structure/surface/rack{ color = "#98a3ab" }, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_box/magazine/l54, /turf/open/floor/prison/red/north, /area/lv759/indoors/colonial_marshals/armory) "ife" = ( @@ -59425,6 +59708,9 @@ /obj/structure/cable{ icon_state = "1-8" }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, /turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "igf" = ( @@ -59439,24 +59725,20 @@ /area/lv759/indoors/caves/west_caves) "igh" = ( /obj/structure/closet/crate/ammo/alt, -/obj/item/weapon/gun/pistol/m4a3{ - pixel_y = -3 - }, -/obj/item/weapon/gun/pistol/m4a3{ - pixel_y = -3 - }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol/ap, -/obj/item/ammo_magazine/pistol/ap, -/obj/item/ammo_magazine/pistol/ap, -/obj/item/ammo_magazine/pistol/ap, -/obj/item/ammo_magazine/pistol/ap, -/obj/item/ammo_magazine/pistol/ap, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54, +/obj/item/ammo_magazine/pistol/l54/ap, +/obj/item/ammo_magazine/pistol/l54/ap, +/obj/item/ammo_magazine/pistol/l54/ap, +/obj/item/ammo_magazine/pistol/l54/ap, +/obj/item/ammo_magazine/pistol/l54/ap, +/obj/item/ammo_magazine/pistol/l54/ap, +/obj/item/weapon/gun/pistol/l54, +/obj/item/weapon/gun/pistol/l54, /turf/open/floor/almayer/cargo, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) "igo" = ( @@ -59484,11 +59766,6 @@ pixel_y = 6 }, /obj/effect/landmark/objective_landmark/science, -/obj/structure/curtain/colorable_transparent{ - color = "#91799d"; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/virology) "igA" = ( @@ -60248,7 +60525,7 @@ /area/lv759/indoors/hospital/central_hallway) "imM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/hallway_north) "imN" = ( /obj/effect/decal/hybrisa/dirt, @@ -60390,7 +60667,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant/synthetic_storage) "inr" = ( /obj/structure/blackgoocontainer{ @@ -60429,6 +60706,14 @@ name = "Pipe"; layer = 2 }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 10; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/corsat/squares, /area/lv759/indoors/power_plant/gas_generators) "inM" = ( @@ -61232,7 +61517,7 @@ /turf/open/floor/hybrisa/engineership/engineer_floor3, /area/lv759/indoors/derelict_ship) "iuj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ dir = 1; autoname = 1 }, @@ -61282,11 +61567,11 @@ /turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "iuz" = ( +/obj/structure/platform/metal/almayer, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/almayer, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/landing_zone_1) "iuA" = ( @@ -61598,7 +61883,8 @@ dir = 8 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) @@ -61656,11 +61942,12 @@ pixel_x = -13; pixel_y = 11 }, -/obj/structure/machinery/light/spot/blue{ +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ dir = 8; - pixel_x = -8 + pixel_x = 1; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) "iwI" = ( @@ -61784,7 +62071,7 @@ /area/lv759/outdoors/colony_streets/south_east_street) "ixx" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "ixB" = ( /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, @@ -61909,20 +62196,6 @@ /obj/item/prop/colony/canister, /turf/open/floor/prison/darkyellow2/northwest, /area/lv759/indoors/garage_workshop) -"iyi" = ( -/obj/item/paper/crumpled{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/stack/sheet/metal{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/lv759/indoors/power_plant) "iyj" = ( /obj/structure/surface/table/reinforced/prison{ color = "#b7b8b2" @@ -61931,12 +62204,6 @@ pixel_x = -1; pixel_y = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "iyl" = ( @@ -62101,13 +62368,13 @@ /turf/open/floor/prison/red/east, /area/lv759/indoors/wy_security/checkpoint_east) "izq" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "23"; opacity = 0 }, /area/lv759/indoors/spaceport/starglider) "izu" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing2"; opacity = 0 }, @@ -62304,11 +62571,6 @@ /obj/item/roller/bedroll{ pixel_y = 6 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 7; pixel_y = 24 @@ -62385,7 +62647,8 @@ /obj/effect/decal/medical_decals{ dir = 1; icon_state = "triagedecaldir"; - pixel_x = 1 + pixel_x = 1; + color = "#d3d3d3" }, /obj/structure/sign/safety/restrictedarea{ pixel_x = -18; @@ -62588,7 +62851,6 @@ /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/flight_control_room) "iCI" = ( -/obj/structure/platform/metal/almayer/west, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 @@ -62750,7 +63012,6 @@ /obj/effect/decal/hybrisa/road/road_stop{ pixel_y = 6 }, -/obj/effect/decal/hybrisa/road/lines3, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/central_streets) "iDQ" = ( @@ -62760,12 +63021,6 @@ pixel_y = 17 }, /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1/north, /area/lv759/indoors/spaceport/communications_office) "iDU" = ( @@ -62886,7 +63141,7 @@ /area/lv759/outdoors/colony_streets/central_streets) "iET" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_foyer) "iEX" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -63466,14 +63721,6 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_west_street) -"iJH" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv759/outdoors/power_plant/transformers_north) "iJJ" = ( /obj/item/tool/warning_cone{ pixel_x = -10; @@ -63739,7 +63986,7 @@ /area/lv759/indoors/spaceport/maintenance_east) "iLQ" = ( /obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, -/turf/open/hybrisa/street/sidewalk/south, +/turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "iLR" = ( /obj/structure/barricade/handrail/strata{ @@ -63948,7 +64195,7 @@ "iNB" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/black_double/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_factory) "iNJ" = ( /obj/structure/barricade/handrail{ @@ -64580,7 +64827,7 @@ /turf/open/floor/prison/whitegreen/northwest, /area/lv759/indoors/hospital/reception) "iSX" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "wy_rightengine" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -64684,7 +64931,8 @@ /area/lv759/indoors/caves/sensory_tower) "iTX" = ( /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/floor/corsat, /area/lv759/indoors/electical_systems/substation2) @@ -64877,6 +65125,9 @@ "iVK" = ( /obj/item/stack/sheet/metal/small_stack, /obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, /obj/item/shard, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/east_central_street) @@ -65006,20 +65257,6 @@ }, /turf/open/floor/hybrisa/tile/supermartfloor2, /area/lv759/indoors/power_plant/workers_canteen_kitchen) -"iWL" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - layer = 2.9; - pixel_x = 32 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/wood/darkerwood, -/area/lv759/indoors/colonial_marshals/office) "iWQ" = ( /obj/item/frame/rack, /obj/item/device/toner, @@ -65102,7 +65339,7 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/hybrisa/street/sidewalk/north, +/turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "iXm" = ( /obj/structure/blocker/invisible_wall, @@ -65507,17 +65744,16 @@ /area/lv759/bunker/gonzo) "jah" = ( /obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "damaged_console1"; opacity = 0 }, /area/lv759/indoors/spaceport/starglider) "jai" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/blue3/east, /area/lv759/indoors/spaceport/docking_bay_2) "jan" = ( @@ -66244,6 +66480,11 @@ /area/lv759/indoors/meridian/meridian_office) "jgd" = ( /obj/structure/window/framed/hybrisa/spaceport, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/spaceport/communications_office) "jgg" = ( @@ -66252,7 +66493,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/Hallway_East) "jgh" = ( /obj/structure/bed/chair{ @@ -66432,14 +66673,6 @@ }, /turf/open/floor/kutjevo/grey, /area/lv759/indoors/mining_outpost/northeast) -"jhu" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv759/outdoors/power_plant/transformers_north) "jhv" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/mining_outpost/vehicledeployment) @@ -66572,7 +66805,8 @@ /obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ dir = 1 }, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison, /area/lv759/indoors/pizzaria) "jiG" = ( /obj/effect/decal/warning_stripes{ @@ -66619,7 +66853,10 @@ pixel_x = -10; pixel_y = 8 }, -/obj/item/clothing/glasses/sunglasses/sechud/blue, +/obj/item/clothing/glasses/sunglasses/sechud/blue{ + pixel_x = 1; + pixel_y = 1 + }, /obj/item/clothing/head/hybrisa/nspa_peaked_cap_gold{ pixel_y = 10; pixel_x = 8 @@ -66627,6 +66864,13 @@ /obj/structure/surface/table/reinforced/prison{ color = "#98a3ab" }, +/obj/structure/machinery/door_control{ + id = "secure_prison_lockdown1"; + name = "Maximum Security Ward - Recreation Area - Lockdown"; + pixel_x = -7; + pixel_y = -3; + needs_power = 0 + }, /turf/open/floor/prison/red, /area/lv759/indoors/colonial_marshals/wardens_office) "jiQ" = ( @@ -66723,25 +66967,18 @@ pixel_x = -8; pixel_y = -1 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/wood, /area/lv759/indoors/hospital/cmo_office) "jjK" = ( -/obj/item/clothing/accessory/storage/holster/armpit, /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/clothing/suit/storage/CMB/hybrisa/nspa_jacket, /obj/structure/surface/table/reinforced/prison{ color = "#98a3ab" }, +/obj/item/storage/belt/gun/l54/full, +/obj/item/clothing/suit/storage/CMB/hybrisa/nspa_jacket, /turf/open/floor/prison/red/north, /area/lv759/indoors/colonial_marshals/armory_foyer) "jjN" = ( @@ -66756,15 +66993,13 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/indoors/caves/north_caves) "jjZ" = ( -/obj/item/storage/belt/security/MP/CMB/full, -/obj/item/storage/belt/security/MP/CMB/full, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, /obj/structure/surface/rack{ color = "#98a3ab" }, +/obj/item/storage/belt/gun/l54, +/obj/item/storage/belt/gun/l54, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, /turf/open/floor/prison/red/southwest, /area/lv759/indoors/colonial_marshals/hallway_north_locker) "jkd" = ( @@ -67250,7 +67485,7 @@ autoname = 1; name = "\improper Reinforced Airlock" }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/metal/bluemetal1/west, /area/lv759/indoors/spaceport/communications_office) "jnW" = ( /obj/structure/machinery/vending/sovietsoda{ @@ -67516,11 +67751,6 @@ /turf/open/floor/plating, /area/lv759/indoors/caves/north_caves) "jpP" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /obj/structure/pipes/vents/pump_hybrisa, /turf/open/floor/prison/whitered/southeast, /area/lv759/indoors/hospital/operation) @@ -67544,6 +67774,10 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/garage_workshop) "jql" = ( @@ -67608,7 +67842,7 @@ /turf/open/floor/bcarpet02/southeast, /area/lv759/bunker/gonzo) "jqQ" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing6"; opacity = 0 }, @@ -67752,7 +67986,8 @@ "jsc" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/east_central_street_left) @@ -68132,7 +68367,8 @@ layer = 3.33 }, /obj/structure/machinery/light{ - dir = 8 + dir = 8; + pixel_y = 15 }, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/floor3, @@ -68255,11 +68491,6 @@ pixel_x = 4; pixel_y = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/patient_ward) "jvo" = ( @@ -68349,6 +68580,10 @@ /area/lv759/outdoors/colony_streets/east_central_street) "jvW" = ( /obj/structure/window/framed/hybrisa/colony/engineering, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/garage_managersoffice) "jvY" = ( @@ -68431,7 +68666,7 @@ /obj/item/clothing/suit/armor/vest/hybrisa/nspa_vest, /obj/item/clothing/accessory/tie/black, /obj/item/clothing/suit/storage/CMB/hybrisa/nspa_formal_jacket, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/changing_room) "jwV" = ( /obj/structure/sign/poster/corporate{ @@ -68530,7 +68765,7 @@ pixel_x = 12; pixel_y = 3 }, -/obj/item/attachable/bayonet/upp, +/obj/item/attachable/bayonet/tanto, /turf/open/floor/plating/platingdmg1, /area/lv759/indoors/electical_systems/substation3) "jxK" = ( @@ -68739,10 +68974,11 @@ /area/lv759/indoors/casino) "jzl" = ( /obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/forcefield/vehicles, /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, -/obj/structure/blocker/forcefield/vehicles, /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/outdoors/caves/north_west_caves_outdoors) "jzo" = ( @@ -68798,11 +69034,6 @@ pixel_y = 1 }, /obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilegreen, /area/lv759/indoors/garage_managersoffice) "jzF" = ( @@ -68861,6 +69092,10 @@ pixel_y = -10; pixel_x = -8 }, +/obj/structure/sign/calendar/twe{ + pixel_x = 2; + pixel_y = 29 + }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/hotel/hotel_hallway) "jzT" = ( @@ -68984,7 +69219,7 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "jAM" = ( /obj/structure/machinery/door/airlock/hybrisa/personal/autoname, @@ -69073,10 +69308,6 @@ icon_state = "E"; pixel_x = 2 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, /obj/structure/machinery/light/blue{ dir = 4 }, @@ -69257,7 +69488,8 @@ icon_state = "E"; pixel_x = 2 }, -/turf/open/floor/prison/darkbrown2, +/obj/item/shard, +/turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "jCN" = ( /obj/structure/platform_decoration/stone/mineral/east{ @@ -69298,7 +69530,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, /area/lv759/indoors/hotel/hotel_rooms) "jDf" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ @@ -69313,12 +69545,6 @@ /area/lv759/indoors/caves/comms_tower) "jDk" = ( /obj/effect/landmark/objective_landmark/close, -/obj/structure/curtain/colorable_transparent{ - color = "#8a6161"; - alpha = 225; - layer = 2.9; - pixel_y = 32 - }, /obj/structure/filingcabinet/chestdrawer{ pixel_x = 8; pixel_y = 20; @@ -69363,7 +69589,7 @@ dir = 4 }, /obj/structure/largecrate/empty/case/double, -/turf/open/floor/prison/darkbrown2/west, +/turf/open/floor/prison/darkbrown2/northwest, /area/lv759/indoors/power_plant) "jDr" = ( /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/east, @@ -69520,7 +69746,8 @@ "jEO" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -69789,12 +70016,6 @@ pixel_x = 12; pixel_y = 32 }, -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) "jHj" = ( @@ -69835,6 +70056,11 @@ "jHO" = ( /obj/structure/window/framed/hybrisa/spaceport, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/spaceport/communications_office) "jHP" = ( @@ -70005,7 +70231,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/southwest_maintenance) "jJd" = ( /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6, @@ -70408,7 +70634,7 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "jNj" = ( /obj/structure/machinery/conveyor{ @@ -70436,7 +70662,8 @@ dir = 1; pixel_y = 34; lazy_nodes = 0; - layer = 3 + layer = 3; + pixel_x = 6 }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) @@ -70543,15 +70770,12 @@ icon_state = "5-8" }, /obj/structure/platform/metal/almayer, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/effect/hybrisa/misc/fake/wire/blue{ dir = 4; pixel_y = -4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "jOs" = ( /obj/effect/decal/hybrisa/road/lines3, @@ -70871,7 +71095,7 @@ /obj/item/ammo_casing/bullet, /obj/structure/stairs{ color = "#a6aeab"; - dir = 1 + layer = 2.5 }, /turf/open/floor/prison, /area/lv759/indoors/caves/comms_tower) @@ -70879,6 +71103,7 @@ /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 1 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/docking_bay_2) "jQM" = ( @@ -70914,12 +71139,6 @@ /turf/open/floor/hybrisa/tile/cuppajoesfloor, /area/lv759/indoors/spaceport/cuppajoes) "jQT" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1/north, /area/lv759/indoors/spaceport/communications_office) "jQY" = ( @@ -71140,9 +71359,6 @@ icon_state = "4-10" }, /obj/structure/platform/metal/almayer, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/effect/hybrisa/misc/fake/wire/blue{ dir = 4; pixel_y = -4 @@ -71151,7 +71367,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "jSM" = ( /turf/open/floor/plating/warnplate/north, @@ -71315,7 +71531,7 @@ /obj/structure/surface/rack{ color = "#848484" }, -/turf/open/floor/corsat, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, /area/lv759/indoors/meridian/meridian_factory) "jUd" = ( /obj/structure/largecrate/random/barrel{ @@ -71403,7 +71619,7 @@ /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/south) "jUp" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_foyer) "jUs" = ( /obj/structure/machinery/big_computers/computerbrown/computer4, @@ -71534,25 +71750,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/colony_streets/central_streets) -"jVc" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -6; - pixel_y = 18; - layer = 3.21 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_y = 32; - layer = 3 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/hybrisa/metal/zbrownfloor1, -/area/lv759/indoors/meridian/meridian_office) -"jVg" = ( -/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, -/area/lv759/indoors/meridian/meridian_factory) "jVj" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, /obj/effect/decal/cleanable/blood, @@ -71765,13 +71962,6 @@ }, /turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) -"jWG" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/lv759/indoors/power_plant/south_hallway) "jWH" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" @@ -71806,7 +71996,8 @@ pixel_y = -1 }, /obj/structure/stairs{ - color = "#ffcd68" + color = "#ffcd68"; + dir = 1 }, /turf/open/floor/hybrisa/tile/tilegrey, /area/lv759/indoors/casino) @@ -72155,7 +72346,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/south_maintenance) "kad" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/north, @@ -72291,7 +72482,7 @@ /area/lv759/outdoors/colony_streets/south_east_street) "kbe" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/hospital/break_room) "kbk" = ( /obj/effect/decal/warning_stripes{ @@ -72328,7 +72519,6 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv759/outdoors/colony_streets/south_east_street) "kbu" = ( -/obj/structure/platform/metal/strata/west, /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -72609,7 +72799,7 @@ "kdT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "kdV" = ( /obj/structure/fence/dark/warning, @@ -73067,6 +73257,11 @@ /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/weyyu_office) "khY" = ( @@ -73256,7 +73451,6 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door_control/brbutton{ id = "hybrisamining_northeast1"; - explo_proof = 1; layer = 4; name = "Mining Lockdown"; pixel_x = 6; @@ -73378,7 +73572,7 @@ use_power = 0; id = "disposals_garage" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant/garage) "kkL" = ( /obj/structure/flora/pottedplant{ @@ -73534,12 +73728,6 @@ pixel_y = 5 }, /obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = -32; - layer = 3.2 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "klC" = ( @@ -73626,7 +73814,7 @@ /area/lv759/outdoors/colony_streets/south_east_street) "klY" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "kma" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -73741,12 +73929,6 @@ pixel_x = -5; pixel_y = -12 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "kmV" = ( @@ -73886,7 +74068,7 @@ /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/apartment/westfoyer) "kon" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "64" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -74093,7 +74275,7 @@ /turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "kpl" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "32"; opacity = 0 }, @@ -74209,8 +74391,7 @@ /obj/structure/machinery/door_control/brbutton/alt{ pixel_y = -20; id = "bunker_exit_tunnel"; - name = "lockdown button"; - explo_proof = 1 + name = "lockdown button" }, /obj/effect/decal/hybrisa/dirt, /obj/structure/barricade/handrail/strata{ @@ -74261,7 +74442,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -74352,7 +74533,7 @@ /turf/open/floor/prison/darkyellow2, /area/lv759/indoors/caves/wy_research_complex_entrance) "kqI" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "99" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -74438,7 +74619,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/power_plant/equipment_east) "krs" = ( /obj/item/trash/cigbutt{ @@ -74869,7 +75050,6 @@ /obj/effect/decal/hybrisa/doubleroad/lines2{ pixel_y = 4 }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_west_street) "ktU" = ( @@ -74967,7 +75147,6 @@ id = "hybrisaLZ2_4"; name = "southwest - door-control"; pixel_x = -5; - explo_proof = 1; pixel_y = 6; needs_power = 0 }, @@ -75065,8 +75244,8 @@ /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) "kvc" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 30 +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 }, /turf/open/floor/strata/orange_edge/north, /area/lv759/indoors/spaceport/docking_bay_1) @@ -75362,7 +75541,7 @@ dir = 1 }, /obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/maintenance_south) "kwE" = ( /obj/effect/decal/hybrisa/road/lines2{ @@ -75482,12 +75661,6 @@ pixel_y = 40; pixel_x = 6 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/wood, /area/lv759/indoors/hospital/cmo_office) "kxW" = ( @@ -75567,11 +75740,8 @@ /obj/structure/cable{ icon_state = "4-10" }, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "kyB" = ( /obj/structure/prop/ice_colony/soil_net, @@ -75727,9 +75897,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/metal/grated, /area/lv759/indoors/power_plant/geothermal_generators) -"kzE" = ( -/turf/open/floor/plating, -/area/lv759/indoors/spaceport/baggagehandling) "kzF" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ dir = 4 @@ -76034,7 +76201,7 @@ /area/lv759/indoors/meridian/meridian_office) "kBA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance_north) "kBB" = ( /obj/effect/decal/hybrisa/deco_edging{ @@ -76134,12 +76301,6 @@ /area/lv759/outdoors/colony_streets/east_central_street) "kCK" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/corsat/box, /area/lv759/indoors/wy_research_complex/head_research_office) "kCO" = ( @@ -76180,6 +76341,9 @@ "kDf" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8 + }, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) "kDh" = ( @@ -76235,11 +76399,12 @@ /turf/open/floor/prison/darkyellow2/north, /area/lv759/indoors/wy_research_complex/hallwaynorth) "kDp" = ( -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/structure/pipes/standard/simple/hidden/dark, /obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) "kDq" = ( @@ -76248,11 +76413,6 @@ /obj/structure/barricade/handrail/medical{ dir = 1 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/prison/blue_plate, /area/lv759/indoors/hospital/outgoing) "kDy" = ( @@ -76429,6 +76589,12 @@ layer = 2.5; pixel_x = -2 }, +/obj/structure/machinery/door_control{ + id = "weymart_garage"; + name = "Weymart loading-bay shutters"; + pixel_y = 34; + needs_power = 0 + }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/meridian/meridian_maintenance) "kFh" = ( @@ -76532,6 +76698,10 @@ /area/lv759/outdoors/colony_streets/central_streets) "kGu" = ( /obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/patient_ward) "kGv" = ( @@ -76699,7 +76869,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "kHI" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -76727,13 +76897,16 @@ /turf/open/floor/strata/orange_edge/west, /area/lv759/indoors/weymart) "kIc" = ( -/obj/item/shard, /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/turf/open/floor/prison/darkbrown2/north, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/obj/item/shard, +/turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "kIh" = ( /obj/effect/decal/hybrisa/dirt, @@ -76998,7 +77171,8 @@ /area/lv759/indoors/wy_research_complex/hangarbay) "kJV" = ( /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/east_central_street) @@ -77071,10 +77245,8 @@ /turf/open/floor/almayer/test_floor4, /area/lv759/indoors/wy_research_complex/researchanddevelopment) "kKz" = ( -/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright{ - layer = 4 - }, -/turf/open/hybrisa/street/sidewalk/south, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright, +/turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "kKB" = ( /obj/effect/decal/hybrisa/dirt, @@ -77353,9 +77525,13 @@ /area/lv759/indoors/caves/wy_research_complex_entrance) "kMD" = ( /obj/effect/decal/hybrisa/dirt, -/obj/structure/window_frame/hybrisa/colony/engineering/reinforced, -/obj/item/shard, -/turf/open/floor/plating, +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant) "kME" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -77389,10 +77565,6 @@ }, /turf/open/floor/hybrisa/metal/bluemetal1, /area/lv759/indoors/spaceport/flight_control_room) -"kMX" = ( -/obj/structure/platform/metal/strata/west, -/turf/open/floor/strata/blue1, -/area/lv759/indoors/spaceport/docking_bay_2) "kMZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 28 @@ -77530,12 +77702,6 @@ /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /obj/item/weapon/baseballbat, -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) "kOJ" = ( @@ -77592,16 +77758,10 @@ /area/lv759/indoors/derelict_ship) "kPb" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/weyyu_office/floor) "kPe" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "wy2" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -77844,15 +78004,6 @@ /obj/structure/platform/metal/hybrisa/metalplatform6/east, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/south_west_street) -"kQx" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) "kQF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -78461,10 +78612,14 @@ desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty." }, /obj/structure/sign/catclock{ - pixel_x = 6; + pixel_x = 15; pixel_y = 32 }, /obj/effect/landmark/objective_landmark/medium, +/obj/structure/sign/calendar/twe{ + pixel_x = -2; + pixel_y = 29 + }, /turf/open/floor/hybrisa/carpet/carpetpatternbrown, /area/lv759/indoors/apartment/northapartments) "kVy" = ( @@ -78486,7 +78641,7 @@ /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "kVG" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant) "kVM" = ( /obj/effect/decal/hybrisa/road/lines5, @@ -78535,20 +78690,17 @@ /obj/structure/machinery/door_control{ id = "bunker_front_doors"; name = "Bunker Checkpoint Lockdown - Main doors"; - explo_proof = 1; pixel_y = -4 }, /obj/structure/machinery/door_control{ id = "bunker_elevator"; name = "Bunker Checkpoint Lockdown - Elevator"; - explo_proof = 1; pixel_y = -4; pixel_x = 9 }, /obj/structure/machinery/door_control{ id = "bunker_shutters"; name = "Bunker Checkpoint Lockdown - Shutters"; - explo_proof = 1; pixel_y = -4; pixel_x = -9 }, @@ -78621,10 +78773,6 @@ }, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/researchanddevelopment) -"kWx" = ( -/obj/structure/platform/metal/almayer/east, -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_north) "kWB" = ( /obj/structure/prop/hybrisa/cavedecor/stalagmite2{ pixel_x = -5; @@ -78891,10 +79039,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating, /area/lv759/indoors/caves/north_caves/east) -"kYM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkbrown2/northeast, -/area/lv759/indoors/power_plant) "kYO" = ( /obj/structure/machinery/colony_floodlight/street{ pixel_y = 12 @@ -79040,11 +79184,8 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/almayer/north, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "kZD" = ( /obj/effect/hybrisa/misc/fake/pipes/pipe1{ @@ -79057,20 +79198,6 @@ }, /turf/open/floor/corsat/officetiles, /area/lv759/outdoors/colony_streets/central_streets) -"kZF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/corsat, -/area/lv759/indoors/power_plant/gas_generators) "kZK" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -79422,7 +79549,7 @@ /turf/open/floor/corsat/squares, /area/lv759/indoors/wy_research_complex/vehicledeploymentbay) "lcg" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "95" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -79491,7 +79618,7 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "lcW" = ( /obj/effect/decal/cleanable/blood, @@ -79570,13 +79697,14 @@ /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/north_west_street) "ldt" = ( +/obj/item/tool/mop{ + pixel_x = -11; + pixel_y = 19 + }, /obj/structure/closet/crate/trashcart{ opened = 1; - pixel_y = 8 - }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 + pixel_y = 12; + pixel_x = 11 }, /turf/open/floor/prison/darkbrown2, /area/lv759/indoors/power_plant) @@ -79833,11 +79961,11 @@ /turf/open/floor/almayer/test_floor4, /area/lv759/indoors/wy_research_complex/researchanddevelopment) "lfo" = ( +/obj/structure/platform/metal/stair_cut/strata_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/stair_cut/strata_right, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_1) "lfp" = ( @@ -79944,7 +80072,8 @@ /area/lv759/indoors/wy_research_complex/hallwaysoutheast) "lgl" = ( /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_west_street) @@ -80078,16 +80207,6 @@ /obj/effect/decal/hybrisa/lattice/full, /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/indoors/caves/south_east_caves) -"lhG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 - }, -/turf/closed/wall/hybrisa/research/reinforced/hull, -/area/lv759/oob) "lhK" = ( /obj/effect/hybrisa/misc/fake/pipes/pipe1, /obj/effect/hybrisa/misc/fake/wire/blue, @@ -80233,7 +80352,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/east_command) "ljg" = ( /obj/effect/decal/hybrisa/dirt, @@ -80254,6 +80373,10 @@ /obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ pixel_y = 28 }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 1; + pixel_y = 12 + }, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/central_streets) "ljl" = ( @@ -80637,7 +80760,7 @@ /turf/open/floor/strata/orange_edge/west, /area/lv759/indoors/spaceport/docking_bay_1) "lmb" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "78" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -80759,11 +80882,6 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) "lmW" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /obj/structure/bed/chair/wheelchair{ dir = 8; pixel_x = 4; @@ -81187,7 +81305,8 @@ /area/lv759/outdoors/colony_streets/central_streets) "lpN" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_maintenance_east) "lpO" = ( /obj/item/weapon/twohanded/folded_metal_chair{ @@ -81229,7 +81348,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/kutjevo/fake_wood, /area/lv759/indoors/apartment/westbedrooms) "lqr" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, @@ -81358,6 +81477,11 @@ /area/lv759/indoors/caves/north_caves/east) "lrh" = ( /obj/structure/window/framed/hybrisa/colony/office, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/weyyu_office/floor) "lri" = ( @@ -81462,9 +81586,6 @@ icon_state = "4-10" }, /obj/structure/platform/metal/almayer, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/effect/hybrisa/misc/fake/wire/red{ dir = 4; pixel_y = 4 @@ -81474,7 +81595,7 @@ pixel_y = -4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "lrL" = ( /obj/item/card/id/visa{ @@ -81498,9 +81619,6 @@ pixel_x = -12; pixel_y = 3 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, /turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant/south_hallway) "lrU" = ( @@ -81667,7 +81785,6 @@ }, /obj/structure/machinery/door_control/research_lockdown{ id = "hybrisaresearchlockdown"; - explo_proof = 1; name = "Research Complex - Lockdown"; pixel_y = -5; needs_power = 0 @@ -81695,7 +81812,7 @@ /area/lv759/indoors/electical_systems/substation1) "ltP" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northfoyer) "ltR" = ( /obj/item/ashtray/bronze{ @@ -81977,6 +82094,7 @@ pixel_x = -8; pixel_y = 2 }, +/obj/item/attachable/bayonet/tanto/blue, /turf/open/floor/interior/wood, /area/lv759/indoors/mining_outpost/south) "lvG" = ( @@ -82150,6 +82268,11 @@ /area/lv759/outdoors/colony_streets/central_streets) "lwP" = ( /obj/structure/window/framed/hybrisa/research/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/wy_research_complex/head_research_office) "lwR" = ( @@ -82525,7 +82648,7 @@ /turf/open/floor/hybrisa/metal/zbrownfloor_full, /area/lv759/indoors/meridian/meridian_office) "lzm" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "8" }, /area/lv759/indoors/spaceport/starglider) @@ -82762,9 +82885,10 @@ /turf/open/floor/plating, /area/lv759/indoors/apartment/eastfoyer) "lAQ" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, /turf/open/floor/corsat/officesquares, /area/lv759/outdoors/colony_streets/central_streets) @@ -82958,7 +83082,7 @@ pixel_y = 21 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "lCt" = ( /obj/structure/sink{ @@ -83717,13 +83841,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/south) -"lHK" = ( -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/obj/structure/machinery/door/poddoor/hybrisa/shutters{ - id = "engineering_lockdown" - }, -/turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_south) "lHL" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, /obj/effect/decal/hybrisa/dirt, @@ -83737,12 +83854,6 @@ /obj/structure/surface/rack, /obj/item/device/toner, /obj/item/device/toner, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/north_office) "lHX" = ( @@ -83867,7 +83978,7 @@ /obj/structure/prop/hybrisa/fakeplatforms/platform4, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) @@ -84070,10 +84181,11 @@ /turf/open/floor/plating/engineer_ship, /area/lv759/indoors/derelict_ship) "lKI" = ( +/obj/structure/pipes/standard/simple/hidden/dark, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/hotel/hotel_hallway) "lKN" = ( @@ -84098,11 +84210,6 @@ pixel_x = -6; pixel_y = 6 }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_y = 32 - }, /obj/effect/landmark/objective_landmark/medium, /obj/structure/machinery/light{ dir = 8 @@ -84154,7 +84261,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/east_deploymentbay) "lLj" = ( /obj/effect/decal/hybrisa/dirt, @@ -84418,7 +84525,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/cuppajoes) "lNy" = ( /obj/structure/machinery/light/blue, @@ -84573,7 +84680,7 @@ dir = 4 }, /obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "lOD" = ( /obj/structure/window/reinforced{ @@ -84597,15 +84704,14 @@ /obj/structure/machinery/light/blue{ dir = 8 }, -/obj/structure/sign/calendar/wy{ - pixel_y = 28; - pixel_x = -3 +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 }, /turf/open/floor/strata/red1, /area/lv759/indoors/spaceport/security) "lOG" = ( /obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/prison/darkbrown2/west, +/turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "lOI" = ( /obj/effect/decal/hybrisa/dirt, @@ -84848,7 +84954,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/hybrisa/personal/autoname, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/hospital/break_room) "lQm" = ( /turf/open/floor/plating, @@ -84938,29 +85044,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/east_central_street_left) -"lQT" = ( -/obj/effect/landmark/objective_landmark/close, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 21; - layer = 3.20 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 21; - layer = 3.20 - }, -/turf/open/floor/hybrisa/tile/tilebeigecheckered, -/area/lv759/indoors/colonial_marshals/north_office) "lQU" = ( /obj/effect/hybrisa/misc/fake/pipes/pipe2{ dir = 4; @@ -85092,7 +85175,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/corsat, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/corsat/squares, /area/lv759/indoors/power_plant/gas_generators) "lRV" = ( /obj/item/trash/cigbutt, @@ -85140,7 +85226,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/prison/darkbrown2/east, +/turf/open/floor/prison/darkbrown2/northeast, /area/lv759/indoors/power_plant) "lSh" = ( /obj/structure/platform/metal/almayer/west, @@ -85356,7 +85442,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/central_streets) "lUd" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "73" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -85454,8 +85540,7 @@ "lVf" = ( /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_east"; - name = "Checkpoint Lockdown"; - explo_proof = 1 + name = "Checkpoint Lockdown" }, /obj/structure/surface/table/reinforced, /obj/item/device/radio{ @@ -85590,7 +85675,8 @@ /obj/effect/decal/medical_decals{ dir = 1; icon_state = "triagedecaldir"; - pixel_x = 1 + pixel_x = 1; + color = "#d3d3d3" }, /turf/open/floor/strata/floor3, /area/lv759/indoors/wy_research_complex/hangarbay) @@ -85728,6 +85814,7 @@ pixel_y = -16; name = "rubber mat" }, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/weymart) "lWR" = ( @@ -85867,12 +85954,6 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_east_street_LZ) -"lXW" = ( -/obj/structure/sign/safety/landingzone{ - pixel_x = 32 - }, -/turf/open/floor/strata/orange_cover, -/area/lv759/indoors/spaceport/docking_bay_1) "lXX" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal2" @@ -86001,7 +86082,7 @@ /turf/open/floor/hybrisa/tile/tilegreen, /area/lv759/indoors/garage_reception) "lYT" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) "lYX" = ( /obj/structure/fence/dark, @@ -86088,7 +86169,7 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "lZp" = ( /obj/structure/girder, @@ -86143,7 +86224,7 @@ "mah" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "maj" = ( /obj/effect/decal/hybrisa/dirt, @@ -86410,11 +86491,6 @@ /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "mch" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /obj/structure/bed/hybrisa/hospital/hospitaldivider{ dir = 1; layer = 3; @@ -86535,7 +86611,7 @@ /turf/open/floor/strata/orange_edge/west, /area/lv759/indoors/spaceport/docking_bay_1) "mdv" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "19" }, /area/lv759/indoors/spaceport/starglider) @@ -86672,7 +86748,6 @@ /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "meP" = ( -/obj/structure/machinery/light, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_25"; pixel_x = 7; @@ -87004,12 +87079,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/wy_research_complex/hangarbay) -"mgK" = ( -/obj/structure/curtain/medical{ - pixel_x = 32 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered, -/area/lv759/indoors/wy_research_complex/medical_annex) "mgN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -87252,14 +87321,6 @@ }, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/caveplateau) -"min" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 4 - }, -/obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/hybrisa/street/cement3, -/area/lv759/outdoors/colony_streets/east_central_street) "miw" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal2" @@ -87419,10 +87480,6 @@ /obj/effect/decal/hybrisa/gold/line4{ pixel_x = -1 }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilegrey, /area/lv759/indoors/casino) "mkj" = ( @@ -87831,7 +87888,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "mnv" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing7"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -87940,7 +87997,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) @@ -88031,7 +88088,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/dormsbedroom) "moV" = ( /obj/item/tool/pickaxe{ @@ -88075,7 +88132,8 @@ pixel_y = -4 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/central_streets) @@ -88178,7 +88236,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_west_street) "mpY" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "72" }, /area/lv759/indoors/spaceport/starglider) @@ -88232,10 +88290,11 @@ }, /obj/item/ammo_casing/bullet, /obj/item/ammo_casing/bullet, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/weapon/gun/pistol/highpower{ - pixel_y = 5 +/obj/item/weapon/gun/pistol/l54{ + pixel_x = -1; + pixel_y = 9 }, +/obj/item/ammo_magazine/pistol/l54, /turf/open/floor/prison/redfull, /area/lv759/indoors/colonial_marshals/armory_firingrange) "mqu" = ( @@ -88880,7 +88939,8 @@ pixel_x = 5; pixel_y = 13 }, -/turf/open/floor/prison/darkbrown2, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/power_plant/south_hallway) "muP" = ( /obj/effect/decal/hybrisa/road/road_edge, @@ -89714,14 +89774,14 @@ /area/lv759/indoors/colonial_marshals/hallway_central) "mBa" = ( /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, /obj/structure/sign/poster/wylogo{ pixel_y = 32; layer = 2.9 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/central_streets) "mBb" = ( @@ -90170,7 +90230,7 @@ /area/lv759/indoors/weyyu_office/pressroom) "mEP" = ( /obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northapartments) "mER" = ( /obj/structure/platform/metal/almayer/north, @@ -90347,7 +90407,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "weymart__pharmacy_lockdown" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart) "mFY" = ( /obj/structure/window/framed/hybrisa/colony/engineering/reinforced, @@ -90413,9 +90473,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/southwest_maintenance) -"mGR" = ( -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_north) "mGS" = ( /obj/structure/machinery/iv_drip{ layer = 4; @@ -90920,7 +90977,7 @@ dir = 1 }, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastentrance) "mLb" = ( /obj/structure/surface/table/reinforced/prison{ @@ -90936,7 +90993,7 @@ /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/cuppajoes) "mLd" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "24" }, /area/lv759/indoors/spaceport/starglider) @@ -91074,6 +91131,9 @@ icon_state = "pipe-c"; level = 2 }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/east_central_street_left) "mMw" = ( @@ -91127,7 +91187,7 @@ vehicle_resistant = 1 }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "mMN" = ( /obj/effect/decal/hybrisa/dirt, @@ -91277,7 +91337,7 @@ /obj/structure/surface/table/reinforced/prison{ color = "#98a3ab" }, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/changing_room) "mNJ" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -91392,7 +91452,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_street) "mPd" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing8"; opacity = 0 }, @@ -91861,36 +91921,22 @@ "mTG" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; + pixel_x = -8; pixel_y = 10 }, /obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 4 + pixel_x = 9; + pixel_y = 15 }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 +/obj/structure/sign/nosmoking_1{ + pixel_y = 32; + layer = 2.8 }, /obj/item/reagent_container/glass/rag{ desc = "A pile of clothing, these need washing..."; name = "pile of clothing"; color = "#37485b"; - pixel_y = -4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32; - layer = 2.8 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = 32; - alpha = 220 + pixel_x = 3 }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) @@ -91971,7 +92017,8 @@ dir = 1 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) @@ -92386,7 +92433,7 @@ pixel_x = -23; pixel_y = 26 }, -/turf/open/auto_turf/hybrisa_auto_turf/layer1, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/caveplateau) "mYv" = ( /obj/effect/decal/medical_decals{ @@ -92437,12 +92484,6 @@ pixel_x = -2; pixel_y = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/hospital/break_room) "mYO" = ( @@ -92461,7 +92502,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_street) "mYZ" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "62" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -92894,9 +92935,6 @@ pixel_x = 12; pixel_y = 8 }, -/obj/effect/spawner/random/powercell{ - pixel_x = 12 - }, /obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ pixel_x = 6; pixel_y = 6 @@ -93274,7 +93312,7 @@ /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/apartment/westbedrooms) "neM" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "67" }, /area/lv759/indoors/spaceport/starglider) @@ -93426,6 +93464,10 @@ /area/lv759/indoors/meridian/meridian_maintenance) "ngb" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#91799d"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/virology) "ngr" = ( @@ -93615,7 +93657,7 @@ /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/virology) "nhW" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing6"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -93990,12 +94032,6 @@ /area/lv759/indoors/apartment/eastentrance) "nlh" = ( /obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/hospital/storage) "nlj" = ( @@ -94011,7 +94047,7 @@ /area/lv759/indoors/spaceport/docking_bay_1) "nln" = ( /obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 5; + pixel_x = 7; pixel_y = -11 }, /obj/item/tool/warning_cone{ @@ -94070,13 +94106,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance_north) -"nlO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/prison/bright_clean/southwest, -/area/lv759/indoors/power_plant/south_hallway) "nlS" = ( /obj/effect/decal/hybrisa/dirt, /obj/item/hybrisa/misc/trash_bag_full_prop{ @@ -94193,9 +94222,6 @@ /obj/effect/decal/cleanable/blood{ icon_state = "mgibbl2" }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, /obj/effect/decal/cleanable/blood{ dir = 8; icon_state = "gib6"; @@ -94204,6 +94230,11 @@ pixel_y = 3 }, /obj/structure/blocker/invisible_wall, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1; + pixel_y = 4; + buckling_y = 4 + }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, /area/lv759/indoors/spaceport/starglider) "nnj" = ( @@ -94416,10 +94447,6 @@ /turf/open/floor/hybrisa/engineership/engineer_floor8/west, /area/lv759/indoors/derelict_ship) "nnQ" = ( -/obj/item/tool/warning_cone{ - pixel_x = -13; - pixel_y = 11 - }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -94427,6 +94454,9 @@ pixel_y = 16 }, /obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_2) "nnT" = ( @@ -94596,6 +94626,11 @@ "npm" = ( /obj/structure/window/framed/hybrisa/research/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/wy_research_complex/head_research_office) "npo" = ( @@ -94727,6 +94762,11 @@ /area/lv759/indoors/caves/north_caves/east) "nqz" = ( /obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/break_room) "nqC" = ( @@ -94764,6 +94804,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, +/obj/structure/machinery/light/small/blue, /turf/open/floor/plating, /area/lv759/indoors/spaceport/engineering) "nqH" = ( @@ -94838,7 +94879,7 @@ /obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ dir = 1 }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/south_public_restroom) "nrx" = ( /obj/structure/fence/dark/warning, @@ -94904,7 +94945,7 @@ /turf/open/floor/prison/darkbrown2/northeast, /area/lv759/indoors/recycling_plant/synthetic_storage) "nsg" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "26"; opacity = 0 }, @@ -95051,15 +95092,15 @@ dir = 4; health = 80 }, -/obj/item/weapon/gun/revolver/cmb{ +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/revolver/cmb/custom{ pixel_y = 5 }, /obj/item/clothing/ears/earmuffs{ pixel_x = 3; pixel_y = 1 }, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, /turf/open/floor/prison/redfull, /area/lv759/indoors/colonial_marshals/armory_firingrange) "ntp" = ( @@ -95259,7 +95300,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/prison/kitchen, /area/lv759/indoors/spaceport/kitchen) "nuH" = ( /obj/structure/platform_decoration/stone/hybrisa/rockdark, @@ -95326,16 +95367,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/derelict_ship) -"nvh" = ( -/obj/structure/bed/roller/hospital_empty/bigrollerempty2{ - icon_state = "bigrollerempty2_up"; - dir = 8 - }, -/obj/structure/curtain/medical{ - pixel_x = -32 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered, -/area/lv759/indoors/wy_research_complex/medical_annex) "nvr" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark, @@ -95358,7 +95389,8 @@ "nvE" = ( /obj/structure/platform_decoration/metal/hybrisa/engineer_corner, /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/floor/plating/engineer_ship, /area/lv759/indoors/derelict_ship) @@ -95483,6 +95515,7 @@ pixel_x = 1; pixel_y = -1 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/officesquares, /area/lv759/outdoors/colony_streets/central_streets) "nwK" = ( @@ -95544,11 +95577,6 @@ /obj/structure/surface/table/reinforced, /obj/item/tank/oxygen/yellow, /obj/effect/landmark/objective_landmark/close, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/prison/red/north, /area/lv759/indoors/hospital/icu) "nxF" = ( @@ -95604,6 +95632,11 @@ "nyf" = ( /obj/structure/window/framed/hybrisa/colony/office, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/weyyu_office/vip) "nyk" = ( @@ -95756,7 +95789,7 @@ id = "engineering_lockdown" }, /turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_north) +/area/lv759/indoors/power_plant) "nzf" = ( /obj/item/device/flashlight/lamp/tripod/grey{ on = 0 @@ -95811,7 +95844,7 @@ locked = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, /area/lv759/indoors/hotel/hotel_rooms) "nzE" = ( /obj/effect/landmark/monkey_spawn, @@ -96096,10 +96129,6 @@ /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/meridian/meridian_managersoffice) "nBU" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright"; - color = "#d3d3d3" - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, @@ -96914,6 +96943,9 @@ /obj/structure/prop/power_transformer{ density = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/outdoors/power_plant/transformers_south) "nIk" = ( @@ -97100,9 +97132,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/hybrisa/street/roadlines4, /area/lv759/outdoors/colony_streets/south_east_street) -"nJL" = ( -/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, -/area/lv759/indoors/meridian/meridian_factory) "nJM" = ( /obj/item/prop/alien/hugger, /turf/open/floor/hybrisa/tile/tilewhite, @@ -97426,6 +97455,9 @@ icon_state = "map"; name = "Pipe manifold" }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, /turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "nMg" = ( @@ -97448,14 +97480,6 @@ /obj/structure/machinery/big_computers/computerwhite/computer1, /turf/open/floor/plating/prison, /area/lv759/indoors/caves/sensory_tower) -"nMl" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv759/outdoors/power_plant/transformers_south) "nMm" = ( /obj/effect/decal/hybrisa/warning/redandwhite_N, /obj/effect/decal/hybrisa/dirt, @@ -97843,11 +97867,6 @@ /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = 32 - }, /obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/zbrownfloor1/west, /area/lv759/indoors/meridian/meridian_office) @@ -97959,7 +97978,6 @@ id = "hybrisaLZ2_1"; pixel_x = -7; pixel_y = -1; - explo_proof = 1; name = "west - door-control"; needs_power = 0 }, @@ -98160,11 +98178,6 @@ "nQI" = ( /obj/structure/barricade/handrail/medical, /obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/blue/northwest, /area/lv759/indoors/hospital/outgoing) "nQN" = ( @@ -98364,7 +98377,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -99226,6 +99239,10 @@ pixel_x = 6; pixel_y = -16 }, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = 16 + }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/spaceport/engineering) "nXT" = ( @@ -99530,7 +99547,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/east_dorms) "nZK" = ( /obj/effect/decal/hybrisa/road/lines2, @@ -100053,13 +100070,15 @@ "odN" = ( /obj/structure/machinery/vending/coffee{ pixel_x = 3; - pixel_y = 3 + pixel_y = 11; + density = 0 }, /obj/structure/machinery/vending/snack{ pixel_x = -18; - pixel_y = 4 + pixel_y = 12; + density = 0 }, -/turf/open/floor/prison/darkbrown2, +/turf/open/floor/prison/darkbrown2/southeast, /area/lv759/indoors/power_plant) "odT" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/north, @@ -100322,7 +100341,7 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/central_streets) "ofR" = ( -/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/largecrate/supply/supplies/mre/wy, /obj/structure/barricade/handrail{ dir = 8 }, @@ -100378,6 +100397,10 @@ dir = 4 }, /obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/icu) "ogm" = ( @@ -100426,7 +100449,9 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/garage) "ogs" = ( -/obj/structure/largecrate/random/barrel/black, +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "ogy" = ( @@ -100530,8 +100555,12 @@ /turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "ohy" = ( -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/turf/open/floor/plating, +/obj/item/device/flashlight/lamp/tripod{ + on = 0; + pixel_x = -7; + pixel_y = 26 + }, +/turf/open/floor/prison/darkbrown2/east, /area/lv759/indoors/power_plant/south_hallway) "ohz" = ( /obj/structure/surface/rack, @@ -100599,7 +100628,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/cafeteriakitchen) "oik" = ( /obj/structure/disposalpipe/sortjunction/flipped{ @@ -100755,14 +100784,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) -"oja" = ( -/obj/structure/platform/metal/strata/west, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, -/turf/open/floor/strata/blue3/west, -/area/lv759/indoors/spaceport/docking_bay_2) "ojb" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -101134,7 +101155,7 @@ pixel_y = 2; pixel_x = 10 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "olW" = ( /obj/structure/prop/hybrisa/airport/dropshipvent1left, @@ -101227,7 +101248,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart) "omW" = ( /obj/structure/closet/cabinet/hybrisa/metal/alt, @@ -102088,7 +102109,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "otl" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -102098,7 +102119,7 @@ /obj/structure/machinery/door/poddoor/hybrisa/shutters{ id = "disposals_maint" }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) "oto" = ( /obj/effect/decal/hybrisa/road/lines1, @@ -102138,7 +102159,7 @@ /turf/open/floor/almayer/silver/east, /area/lv759/indoors/wy_research_complex/xenoarcheology) "otP" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing2"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -102253,7 +102274,7 @@ /area/lv759/outdoors/colony_streets/north_street) "ouJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "ouK" = ( /turf/open/hybrisa/street/sidewalk/south, @@ -102556,11 +102577,11 @@ /turf/open/floor/prison/whitegreen/north, /area/lv759/indoors/hospital/reception) "oxI" = ( +/obj/structure/platform/metal/stair_cut/platform_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/stair_cut/platform_right, /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/landing_zone_1) "oxJ" = ( @@ -103152,7 +103173,6 @@ pixel_x = -8; pixel_y = 7 }, -/obj/effect/spawner/random/powercell, /obj/item/device/radio/headset, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/telecomms) @@ -103196,7 +103216,8 @@ dir = 4 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/corsat, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) @@ -103366,10 +103387,10 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_maintenance_east) "oEn" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "48" }, /area/lv759/indoors/spaceport/starglider) @@ -103556,19 +103577,19 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "oFX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/casino) "oGb" = ( /obj/structure/barricade/wooden, /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/indoors/caves/south_east_caves) "oGf" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 3.3 }, /obj/item/stack/sheet/metal/med_small_stack, +/obj/item/shard, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/east_central_street) "oGi" = ( @@ -104009,7 +104030,6 @@ }, /obj/structure/machinery/door_control/brbutton{ id = "hybrisa_mining_lockdown1"; - explo_proof = 1; layer = 4; name = "lockdown button"; pixel_y = 26 @@ -104086,9 +104106,6 @@ /obj/structure/surface/table, /obj/item/device/healthanalyzer, /obj/structure/machinery/light, -/obj/structure/curtain/medical{ - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "oKx" = ( @@ -104522,7 +104539,7 @@ /turf/open/floor/hybrisa/tile/asteroidwarning_bigtile/west, /area/lv759/indoors/mining_outpost/east_deploymentbay) "oNs" = ( -/obj/structure/cargo_container/hd/right, +/obj/structure/cargo_container/wy/right, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "oNv" = ( @@ -104577,11 +104594,10 @@ /turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/electical_systems/substation1) "oNZ" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /obj/structure/largecrate/empty/case/double, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "oOf" = ( @@ -104836,6 +104852,11 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/cmo_office) "oPY" = ( @@ -105010,16 +105031,6 @@ /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/lv759/indoors/wy_research_complex/mainlabs) -"oRc" = ( -/obj/structure/platform/metal/strata, -/obj/structure/platform/metal/strata/east, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "oRd" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 @@ -105235,8 +105246,7 @@ /area/lv759/indoors/spaceport/baggagehandling) "oTf" = ( /obj/structure/sign/poster/safety{ - pixel_y = 34; - pixel_x = -7 + pixel_y = 32 }, /obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ pixel_x = -10; @@ -105414,10 +105424,6 @@ pixel_y = -1 }, /obj/structure/surface/rack, -/obj/effect/spawner/random/powercell{ - pixel_x = -1; - pixel_y = -1 - }, /obj/effect/spawner/random/toolbox{ layer = 4; pixel_y = 13 @@ -105461,17 +105467,15 @@ /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/south) "oUx" = ( -/obj/structure/platform/metal/strata, /obj/item/tool/warning_cone{ pixel_x = -9; pixel_y = 20 }, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/blue3/north, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "oUC" = ( /obj/effect/decal/hybrisa/road/road_edge{ @@ -105563,7 +105567,7 @@ "oUV" = ( /obj/effect/decal/hybrisa/dirt, /turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_south) +/area/lv759/indoors/power_plant/geothermal_generators) "oUW" = ( /turf/open/floor/hybrisa/tile/tilegrey, /area/lv759/indoors/wy_research_complex/hallwaysouthwest) @@ -105797,13 +105801,6 @@ }, /turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/icu) -"oWY" = ( -/obj/structure/largecrate/empty/secure, -/obj/structure/machinery/light/blue{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "oWZ" = ( /obj/structure/window/reinforced{ dir = 1; @@ -105917,8 +105914,7 @@ "oYo" = ( /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_northwest"; - name = "Checkpoint Lockdown"; - explo_proof = 1 + name = "Checkpoint Lockdown" }, /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ @@ -105948,12 +105944,6 @@ dir = 4; pixel_y = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "oYE" = ( @@ -106002,6 +105992,7 @@ }, /obj/effect/decal/hybrisa/road/lines3, /obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/l54, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_west_street) "oYW" = ( @@ -106772,7 +106763,7 @@ /obj/structure/surface/table/almayer{ color = "#EBD9B7" }, -/turf/open/floor/hybrisa/tile/supermartfloor2, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "peO" = ( /obj/structure/window/reinforced{ @@ -106908,7 +106899,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/prison/bright_clean2/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) "pgh" = ( /obj/structure/filingcabinet, @@ -106937,7 +106928,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/central_streets) "pgp" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "22"; opacity = 0 }, @@ -107202,7 +107193,7 @@ /turf/open/floor/almayer/plating_striped/west, /area/lv759/indoors/spaceport/cargo_maintenance) "pit" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "75" }, /area/lv759/indoors/spaceport/starglider) @@ -107286,13 +107277,12 @@ /area/lv759/indoors/spaceport/cargo_maintenance) "piJ" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/west, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 - }, /obj/structure/prop/hybrisa/signs/high_voltage/small{ pixel_x = -28 }, +/obj/structure/stairs{ + color = "#a6aeab" + }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/east_central_street) "piN" = ( @@ -107422,16 +107412,6 @@ }, /turf/open/floor/prison/ramptop/east, /area/lv759/outdoors/colony_streets/north_east_street_LZ) -"pjT" = ( -/obj/structure/platform/metal/strata, -/obj/structure/platform/metal/strata/west, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "pkg" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/cleanable/blood/gibs/body, @@ -107461,7 +107441,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/kitchen) "pkB" = ( /obj/effect/decal/hybrisa/dirt, @@ -107660,7 +107640,7 @@ /turf/open/floor/prison/cell_stripe, /area/lv759/indoors/meridian/meridian_factory) "pmi" = ( -/obj/structure/cargo_container/hd/mid, +/obj/structure/cargo_container/wy/mid, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "pmk" = ( @@ -107940,7 +107920,7 @@ vehicle_resistant = 1 }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "poo" = ( /obj/structure/disposalpipe/segment{ @@ -108042,12 +108022,6 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = -32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1, /area/lv759/indoors/spaceport/communications_office) "ppj" = ( @@ -108082,6 +108056,10 @@ /area/lv759/outdoors/colony_streets/north_east_street) "ppt" = ( /obj/structure/window/framed/hybrisa/colony/hospital, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/prison/whitegreen/southeast, /area/lv759/indoors/hospital/cryo_room) "ppu" = ( @@ -108540,7 +108518,7 @@ /turf/closed/wall/hybrisa/colony, /area/lv759/indoors/pizzaria) "psE" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "29"; opacity = 0 }, @@ -108597,7 +108575,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/baggagehandling) "ptb" = ( /obj/item/paper{ @@ -108942,7 +108920,7 @@ /turf/open/floor/corsat/spiralplate, /area/lv759/indoors/wy_research_complex/mainlabs) "pvO" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "2" }, /area/lv759/indoors/spaceport/starglider) @@ -109022,7 +109000,7 @@ pixel_x = 10; pixel_y = 34 }, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/changing_room) "pwJ" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ @@ -109146,15 +109124,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/almayer/black, /area/lv759/indoors/wy_research_complex/cargo) -"pxz" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, -/turf/open/floor/corsat/box, -/area/lv759/indoors/wy_research_complex/head_research_office) "pxC" = ( /obj/effect/decal/cleanable/blood, /obj/item/prop/helmetgarb/spent_buckshot, @@ -109200,12 +109169,6 @@ pixel_x = 7; pixel_y = 17 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "pxN" = ( @@ -109378,7 +109341,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/electical_systems/substation3) "pyK" = ( /obj/structure/machinery/door/poddoor/hybrisa/secure_red_door{ @@ -109493,11 +109456,6 @@ /area/lv759/outdoors/colony_streets/north_east_street) "pzr" = ( /obj/structure/machinery/body_scanconsole, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/prison/whitered, /area/lv759/indoors/hospital/operation) "pzs" = ( @@ -109550,11 +109508,6 @@ /area/lv759/outdoors/colony_streets/north_east_street_LZ) "pzx" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/prison/whitered/southwest, /area/lv759/indoors/hospital/operation) "pzA" = ( @@ -109584,7 +109537,8 @@ "pzK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; - pixel_y = 6 + pixel_y = 6; + layer = 3.4 }, /turf/open/floor/hybrisa/metal/bluemetalcorner/west, /area/lv759/indoors/weyyu_office/pressroom) @@ -109734,9 +109688,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/central_streets) -"pBg" = ( -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_south) "pBk" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/hybrisa/dirt, @@ -110052,8 +110003,7 @@ name = "DynaGrid Nexus lockdown"; id = "engineering_lockdown"; pixel_y = 32; - needs_power = 0; - explo_proof = 1 + needs_power = 0 }, /turf/open/floor/strata/yellow3/southwest, /area/lv759/indoors/power_plant/geothermal_generators) @@ -110069,8 +110019,7 @@ /area/lv759/indoors/meridian/meridian_factory) "pDH" = ( /obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 + color = "#a6aeab" }, /turf/open/floor/plating/platingdmg3, /area/lv759/indoors/caves/north_east_caves) @@ -110165,7 +110114,7 @@ pixel_y = -12 }, /obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, +/turf/open/floor/prison/cell_stripe, /area/lv759/indoors/electical_systems/substation1) "pEI" = ( /obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ @@ -110229,12 +110178,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) -"pFk" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/frame{ - pixel_y = 32 - }, -/turf/open/floor/hybrisa/misc/spaceport1, -/area/lv759/indoors/spaceport/docking_bay_1) "pFl" = ( /obj/structure/prop/hybrisa/supermart/rack/longrack7, /obj/structure/prop/souto_land/streamer{ @@ -110394,9 +110337,6 @@ /obj/effect/landmark/corpsespawner/hybrisa/pizza_galaxy, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) -"pGD" = ( -/turf/open/floor/hybrisa/metal/bluemetal1/southeast, -/area/lv759/indoors/spaceport/communications_office) "pGH" = ( /obj/structure/surface/table/reinforced/prison{ color = "#b7b8b2" @@ -110420,7 +110360,9 @@ /obj/structure/machinery/power/apc/no_power/west, /obj/structure/pipes/standard/simple/hidden/dark, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_maintenance_east) "pGL" = ( /obj/effect/decal/warning_stripes{ @@ -110570,12 +110512,13 @@ pixel_x = -10; pixel_y = 13 }, -/obj/structure/stairs{ - dir = 4 - }, /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, /obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/hybrisa/street/cement1, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/south_east_street) "pHE" = ( /obj/effect/spawner/random/toolbox{ @@ -110691,12 +110634,6 @@ icon_state = "trash_3" }, /obj/effect/decal/hybrisa/trash, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "pIr" = ( @@ -110817,9 +110754,6 @@ icon_state = "W"; layer = 3.3 }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, /obj/item/shard, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/east_central_street) @@ -110894,10 +110828,26 @@ /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/wy_research_complex/xenobiology) "pJM" = ( -/obj/structure/largecrate/empty, /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ dir = 8 }, +/obj/item/tool/warning_cone{ + layer = 4; + pixel_x = 5; + pixel_y = 13 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, /turf/open/floor/plating/platingdmg1, /area/lv759/outdoors/colony_streets/east_central_street_left) "pJN" = ( @@ -110965,7 +110915,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "pKG" = ( /obj/effect/decal/medical_decals{ @@ -111121,7 +111071,7 @@ autoname = 1; dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant) "pMk" = ( /obj/effect/decal/hybrisa/dirt_2, @@ -111254,7 +111204,7 @@ /turf/open/floor/prison/whitered/north, /area/lv759/indoors/hospital/medical_storage) "pNG" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "wy_leftengine" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -111509,7 +111459,7 @@ "pPH" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/westfoyer) "pPI" = ( /obj/structure/pipes/vents/pump_hybrisa, @@ -111543,7 +111493,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/flight_control_room) "pPT" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, @@ -111938,7 +111888,7 @@ "pSX" = ( /obj/effect/decal/hybrisa/dirt, /turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_north) +/area/lv759/indoors/power_plant) "pSZ" = ( /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/landing_zone_2) @@ -112226,7 +112176,7 @@ /area/lv759/indoors/spaceport/engineering) "pUS" = ( /obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, /area/lv759/indoors/meridian/meridian_factory) "pUT" = ( /turf/open/floor/plating/platingdmg3/west, @@ -112358,13 +112308,6 @@ }, /turf/open/floor/almayer/black, /area/lv759/indoors/wy_research_complex/mainlabs) -"pWg" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_y = 16 - }, -/turf/closed/wall/hybrisa/colony/reinforced, -/area/lv759/indoors/meridian/meridian_factory) "pWn" = ( /obj/effect/decal/hybrisa/road/road_stop{ icon_state = "stop_decal5" @@ -112426,12 +112369,6 @@ pixel_x = 9; pixel_y = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/corsat/box, /area/lv759/indoors/wy_research_complex/head_research_office) "pWI" = ( @@ -112687,7 +112624,7 @@ /turf/open/gm/river/desert/shallow, /area/lv759/indoors/apartment/westentertainment) "pYG" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "83" }, /area/lv759/indoors/spaceport/starglider) @@ -113672,16 +113609,6 @@ }, /turf/open/floor/hybrisa/carpet/pink, /area/lv759/indoors/apartment/westbedrooms) -"qgZ" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - layer = 2.9; - pixel_x = 32 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/wood/darkerwood, -/area/lv759/indoors/colonial_marshals/office) "qha" = ( /turf/closed/wall/hybrisa/marhsalls/reinforced, /area/lv759/outdoors/colony_streets/south_east_street_comms) @@ -113780,6 +113707,10 @@ /area/lv759/indoors/meridian/meridian_factory) "qhG" = ( /obj/structure/window/framed/hybrisa/colony/hospital, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/outgoing) "qhH" = ( @@ -113859,7 +113790,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_west_street) "qiE" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "3" }, /area/lv759/indoors/spaceport/starglider) @@ -113867,22 +113798,6 @@ /obj/structure/platform/stone/hybrisa/rockdark, /turf/open/auto_turf/hybrisa_auto_turf/layer3, /area/lv759/indoors/caves/central_caves) -"qiN" = ( -/obj/structure/platform/metal/strata/north, -/obj/vehicle/powerloader{ - dir = 8; - layer = 5; - level = 4 - }, -/turf/open/floor/strata/blue3, -/area/lv759/indoors/spaceport/docking_bay_2) -"qiP" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/spaceport/docking_bay_2) "qiR" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8; @@ -114035,7 +113950,7 @@ /area/lv759/indoors/spaceport/communications_office) "qjC" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/prison/blue/west, /area/lv759/indoors/power_plant/telecomms) "qjF" = ( /obj/effect/decal/warning_stripes{ @@ -114068,7 +113983,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/prison/darkbrown2/east, +/turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "qki" = ( /obj/structure/platform/stone/hybrisa/rockdark/west, @@ -114173,7 +114088,7 @@ /obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/hospital/storage) "qle" = ( /obj/effect/decal/cleanable/blood, @@ -114215,14 +114130,13 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/weymart/backrooms) "qlA" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /obj/structure/bed/chair/comfy/hybrisa/brown{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/blue3/east, /area/lv759/indoors/spaceport/docking_bay_2) "qlE" = ( @@ -114255,7 +114169,7 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/weymart/backrooms) "qlQ" = ( -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/icu) "qlT" = ( /obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark2, @@ -114487,7 +114401,7 @@ autoname = 1; name = "autoname" }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/security) "qnY" = ( /obj/structure/barricade/handrail/hybrisa/handrail{ @@ -114516,7 +114430,7 @@ req_one_access = null; locked = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "qoc" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past, @@ -114691,7 +114605,7 @@ /area/lv759/indoors/caves/north_west_caves) "qpx" = ( /obj/structure/machinery/door/airlock/hybrisa/personal/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/Hallway_East) "qpy" = ( /obj/structure/bed/chair/bolted{ @@ -114712,7 +114626,7 @@ /area/lv759/indoors/spaceport/heavyequip) "qpF" = ( /obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "damaged_console3"; opacity = 0 }, @@ -114728,7 +114642,7 @@ /area/lv759/indoors/wy_research_complex/xenobiology) "qpK" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northfoyer) "qpL" = ( /obj/effect/decal/hybrisa/WY/WYworn{ @@ -114744,7 +114658,8 @@ pixel_y = 2 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/weymart/backrooms) @@ -115086,13 +115001,14 @@ /area/lv759/outdoors/colony_streets/north_street) "qsG" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/structure/sign/safety/two{ color = "#61b8b9"; pixel_x = -17 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/plating, /area/lv759/indoors/caves/north_east_caves/south) "qsI" = ( @@ -115210,9 +115126,6 @@ }, /obj/structure/surface/table/almayer, /obj/effect/spawner/random/powercell, -/obj/structure/machinery/light/blue{ - dir = 4 - }, /turf/open/floor/plating, /area/lv759/indoors/spaceport/engineering) "qtj" = ( @@ -115304,7 +115217,7 @@ /area/lv759/outdoors/colony_streets/north_east_street_LZ) "qtM" = ( /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "qtP" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -115327,14 +115240,11 @@ dir = 4; pixel_y = 17 }, -/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/largecrate/supply/supplies/mre/wy, /obj/structure/barricade/handrail/type_b{ dir = 8 }, -/obj/structure/largecrate/supply/supplies/mre{ - pixel_y = 14; - layer = 4 - }, +/obj/structure/largecrate/supply/supplies/mre/wy, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/bunker/checkpoint) "qua" = ( @@ -115383,6 +115293,10 @@ /area/lv759/indoors/caves/north_west_caves) "quq" = ( /obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/icu) "quu" = ( @@ -115397,7 +115311,7 @@ name = "\improper Reinforced Airlock" }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/metal/bluemetal1/west, /area/lv759/indoors/spaceport/communications_office) "quz" = ( /obj/structure/closet/crate/trashcart{ @@ -115646,10 +115560,6 @@ /obj/structure/machinery/vending/cigarette/wy{ pixel_y = 8 }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, /turf/open/floor/hybrisa/tile/tileblackcheckered, /area/lv759/indoors/casino) "qwj" = ( @@ -115975,7 +115885,7 @@ /obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/patient_ward) "qyz" = ( /obj/structure/bed/chair/comfy/teal, @@ -116414,10 +116324,8 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - locked = 1 - }, -/turf/open/floor/plating, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "qCI" = ( /obj/structure/bed/chair/vehicle/white{ @@ -116587,12 +116495,6 @@ /obj/effect/landmark/objective_landmark/close{ layer = 5 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "qEq" = ( @@ -116617,7 +116519,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/weyyu_office) @@ -116675,17 +116577,14 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/vehicledeploymentbay) "qFA" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; - dir = 1; + dir = 6; icon = 'icons/obj/pipes/pipes.dmi'; icon_state = "intact"; - name = "Pipe"; - layer = 2 + name = "Pipe" }, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "qFF" = ( /obj/item/stack/rods, @@ -116905,14 +116804,14 @@ /turf/open/floor/plating, /area/lv759/indoors/caves/sensory_tower) "qHI" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "69" }, /area/lv759/indoors/spaceport/horizon_runner) "qHK" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/cuppajoes) "qHL" = ( /obj/effect/decal/hybrisa/dirt, @@ -117261,7 +117160,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "qJB" = ( /obj/item/tool/shovel, @@ -117370,19 +117269,11 @@ /turf/open/floor/strata/orange_edge/northeast, /area/lv759/indoors/wy_research_complex/hangarbay) "qKr" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/strata_decals/grime/grime3, -/obj/item/tool/warning_cone{ - layer = 4; - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/stack/rods, -/obj/item/device/flashlight/lamp/tripod{ - on = 0 +/obj/structure/largecrate/empty, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/east_central_street_left) @@ -117414,7 +117305,7 @@ vehicle_resistant = 1 }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_south) "qKA" = ( /obj/effect/decal/hybrisa/road/road_edge{ @@ -117677,7 +117568,8 @@ /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) @@ -117729,7 +117621,7 @@ /obj/structure/machinery/door/window/brigdoor/eastleft{ dir = 2 }, -/turf/open/floor/prison, +/turf/open/floor/plating, /area/lv759/indoors/wy_security/checkpoint_central) "qMN" = ( /obj/structure/prop/structure_lattice{ @@ -117749,7 +117641,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/caves/wy_research_complex_entrance) "qMQ" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "69" }, /area/lv759/indoors/spaceport/starglider) @@ -117847,12 +117739,6 @@ pixel_x = 12; pixel_y = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "qNI" = ( @@ -117991,7 +117877,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/power_plant/equipment_east) "qON" = ( /obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ @@ -118264,7 +118150,7 @@ /turf/open/floor/prison/ramptop, /area/lv759/indoors/colonial_marshals/garage) "qQE" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "zwing0" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -118595,12 +118481,6 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "qSW" = ( @@ -118725,7 +118605,7 @@ "qTW" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "qUb" = ( /obj/effect/decal/hybrisa/road/lines1, @@ -118949,7 +118829,7 @@ /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/north_west_street) "qVH" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "36" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -119050,11 +118930,8 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "qWM" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +/obj/structure/prop/hybrisa/misc/machinery/screens/frame{ + pixel_y = 32 }, /turf/open/floor/strata/orange_icorner/north, /area/lv759/indoors/spaceport/docking_bay_1) @@ -119205,10 +119082,6 @@ pixel_x = -6; pixel_y = 34 }, -/obj/structure/curtain/colorable{ - color = "#5a5a5a"; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/casino/casino_office) "qYb" = ( @@ -119346,7 +119219,7 @@ light_power = 5; light_range = 6 }, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "26"; opacity = 0 }, @@ -119395,11 +119268,6 @@ icon_state = "mgibbl2"; pixel_y = 8 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /obj/item/prop/colony/usedbandage{ dir = 1 }, @@ -119444,15 +119312,6 @@ }, /turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/weyyu_office/floor) -"qZM" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) "qZN" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/blocker/forcefield/vehicles, @@ -119698,7 +119557,7 @@ "rbG" = ( /obj/structure/surface/rack, /obj/item/engi_upgrade_kit, -/turf/open/floor/corsat, +/turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/power_plant/equipment_east) "rbH" = ( /turf/open/floor/prison/blue/east, @@ -119916,11 +119775,6 @@ /obj/structure/surface/rack, /obj/item/storage/firstaid/o2, /obj/item/storage/firstaid/o2, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/prison/red/southeast, /area/lv759/indoors/hospital/icu) "rdx" = ( @@ -120316,7 +120170,6 @@ /turf/open/floor/corsat/marked, /area/lv759/outdoors/colony_streets/central_streets) "rgy" = ( -/obj/structure/platform/metal/almayer/west, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 @@ -120456,7 +120309,7 @@ /area/lv759/indoors/caves/east_caves) "rhG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) "rhH" = ( /obj/effect/decal/hybrisa/dirt, @@ -120615,21 +120468,19 @@ /turf/open/floor/prison/ramptop, /area/lv759/indoors/caves/north_west_caves) "riQ" = ( -/obj/item/storage/belt/security/MP/CMB/full, -/obj/item/storage/belt/security/MP/CMB/full, /obj/structure/machinery/light/double/blue{ dir = 4 }, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, /obj/structure/sign/poster/nspa{ pixel_y = 32 }, /obj/structure/surface/rack{ color = "#98a3ab" }, +/obj/item/storage/belt/gun/l54, +/obj/item/storage/belt/gun/l54, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, /turf/open/floor/prison/red/west, /area/lv759/indoors/colonial_marshals/hallway_north_locker) "riS" = ( @@ -120793,10 +120644,6 @@ pixel_x = 6; layer = 4.12 }, -/obj/structure/curtain/colorable{ - pixel_y = 32; - color = "#8c3038" - }, /turf/open/floor/hybrisa/carpet/carpetblack, /area/lv759/indoors/casino) "rkt" = ( @@ -121102,6 +120949,11 @@ "rmZ" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2 + }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/meridian/meridian_managersoffice) "rnb" = ( @@ -121156,7 +121008,7 @@ /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 4 }, -/turf/open/floor/hybrisa/metal/bluemetal1, +/turf/open/floor/hybrisa/metal/bluemetalcorner/west, /area/lv759/indoors/spaceport/communications_office) "rnH" = ( /obj/structure/platform/metal/hybrisa/metalplatform1/west, @@ -121835,7 +121687,7 @@ "rtw" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen) "rtz" = ( /obj/structure/prop/structure_lattice{ @@ -121880,6 +121732,13 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 8; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, /turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/power_plant/gas_generators) "rua" = ( @@ -122360,7 +122219,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/icu) "rxA" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -122754,7 +122613,7 @@ /obj/item/stack/cable_coil/cut{ icon_state = "coil2" }, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "27"; opacity = 0 }, @@ -123103,12 +122962,13 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, -/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, /area/lv759/indoors/meridian/meridian_factory) "rCB" = ( /obj/structure/largecrate/empty/case/double, /obj/structure/machinery/light{ - dir = 4 + dir = 4; + pixel_y = 15 }, /turf/open/floor/almayer/plating_striped/west, /area/lv759/indoors/spaceport/baggagehandling) @@ -123125,10 +122985,6 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/east_central_street) -"rCF" = ( -/obj/structure/platform/metal/almayer/east, -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_south) "rCG" = ( /turf/open/hybrisa/street/asphalt, /area/lv759/indoors/wy_security/checkpoint_west) @@ -123186,10 +123042,6 @@ /area/lv759/outdoors/colony_streets/south_east_street) "rDj" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/machinery/power/apc/no_power/east, -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, /turf/open/floor/hybrisa/tile/supermartfloor1, /area/lv759/indoors/bar/kitchen) "rDr" = ( @@ -123233,6 +123085,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, /turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "rDy" = ( @@ -123730,11 +123585,11 @@ /turf/open/floor/hybrisa/metal/bluemetal1/southwest, /area/lv759/indoors/landing_zone_1/flight_control_room) "rGw" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/weyyu_office) "rGx" = ( @@ -123773,7 +123628,8 @@ /obj/structure/machinery/door/poddoor/almayer{ dir = 4; name = "Weakened Emergency Lockdown"; - needs_power = 0 + needs_power = 0; + id = "secure_prison_lockdown1" }, /turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/colonial_marshals/prisoners_recreation_area) @@ -123830,10 +123686,6 @@ pixel_x = 7; pixel_y = 7 }, -/obj/structure/curtain/colorable{ - color = "#5a5a5a"; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/casino/casino_office) "rHb" = ( @@ -124272,7 +124124,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/jacks_surplus) "rKJ" = ( /obj/structure/largecrate/supply/generator{ @@ -124657,7 +124509,7 @@ /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/north_office) "rNc" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "94" }, /area/lv759/indoors/spaceport/starglider) @@ -124721,8 +124573,7 @@ dir = 8 }, /obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 + color = "#b7b8b2" }, /turf/open/hybrisa/street/sidewalk/southwest, /area/lv759/outdoors/colony_streets/central_streets) @@ -124810,12 +124661,6 @@ /area/lv759/indoors/garage_reception) "rNR" = ( /obj/effect/decal/hybrisa/trash, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/wood, /area/lv759/indoors/hospital/cmo_office) "rNS" = ( @@ -124945,6 +124790,11 @@ color = "#5d524b"; alpha = 155 }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, /turf/open/floor/corsat/officesquares, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) "rON" = ( @@ -125066,7 +124916,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/east_central_street) "rPD" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "28"; opacity = 0 }, @@ -125313,6 +125163,7 @@ /obj/structure/prop/hybrisa/airport/dropshipnosecone{ dir = 4 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "rRC" = ( @@ -125383,13 +125234,6 @@ }, /turf/open/floor/plating/engineer_ship, /area/lv759/indoors/derelict_ship) -"rRV" = ( -/obj/structure/stairs{ - color = "#a6aeab" - }, -/obj/structure/platform/metal/hybrisa/metalplatform6/east, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/east_central_street) "rRX" = ( /obj/effect/decal/hybrisa/dirt, /obj/item/trash/cigbutt{ @@ -125569,12 +125413,6 @@ pixel_x = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/weyyu_office/floor) "rTk" = ( @@ -125675,7 +125513,7 @@ /area/lv759/indoors/landing_zone_1/flight_control_room) "rTQ" = ( /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/janitor) "rTT" = ( /obj/effect/decal/hybrisa/road/lines1, @@ -125741,12 +125579,6 @@ pixel_y = 2; pixel_x = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/weyyu_office/floor) "rUq" = ( @@ -126030,16 +125862,10 @@ /turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, /area/lv759/indoors/hotel/hotel_rooms) "rWs" = ( -/obj/structure/platform_decoration/metal/strata/north, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 5 }, -/turf/open/floor/strata/blue3/north, +/turf/open/floor/strata/blue3, /area/lv759/indoors/spaceport/docking_bay_2) "rWt" = ( /obj/effect/decal/warning_stripes{ @@ -126208,11 +126034,6 @@ /area/lv759/outdoors/colony_streets/central_streets) "rXS" = ( /obj/structure/bed/sofa/south/grey/right, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_y = 32 - }, /obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/carpet/rug_colorable/biege/north, /area/lv759/indoors/meridian/meridian_office) @@ -126242,7 +126063,7 @@ /area/lv759/indoors/colonial_marshals/office) "rYh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/colonial_marshals/press_room) "rYi" = ( /obj/structure/bed/chair/comfy{ @@ -126291,7 +126112,7 @@ /turf/open/floor/prison/whitegreen/north, /area/lv759/indoors/hospital/cryo_room) "rYL" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "brokendropshipconsole1"; opacity = 0 }, @@ -126377,7 +126198,7 @@ /turf/open/floor/hybrisa/engineership/engineer_floor14/west, /area/lv759/outdoors/caveplateau) "rZq" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen) "rZs" = ( /obj/effect/decal/warning_stripes{ @@ -126922,14 +126743,13 @@ /area/lv759/bunker/checkpoint) "scJ" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 - }, /obj/effect/decal/cleanable/blood, /obj/effect/decal/hybrisa/bloodtrail{ pixel_x = 7 }, +/obj/structure/stairs{ + color = "#a6aeab" + }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) "scL" = ( @@ -126939,16 +126759,6 @@ "scP" = ( /turf/open/floor/almayer/plate, /area/lv759/indoors/wy_research_complex/dormsfoyer) -"scQ" = ( -/turf/open/floor/plating, -/area/lv759/indoors/apartment/westfoyer) -"scS" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ - dir = 1 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/power_plant/south_hallway) "scT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -127080,14 +126890,12 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_west_street) "sev" = ( +/obj/structure/window_frame/hybrisa/colony/engineering/reinforced, /obj/effect/decal/hybrisa/dirt, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - autoname = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/corsat/officetiles, +/obj/effect/decal/hybrisa/dirt, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating, /area/lv759/indoors/power_plant) "sew" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ @@ -127169,11 +126977,11 @@ /turf/open/floor/plating/platingdmg1, /area/lv759/indoors/caves/north_caves) "seX" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/hybrisa/metalplatform6, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/central_streets) "sfe" = ( @@ -127439,12 +127247,6 @@ pixel_x = 13; pixel_y = 3 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /obj/structure/surface/table/reinforced/black, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/supervisor) @@ -127552,7 +127354,7 @@ /area/lv759/indoors/wy_research_complex/southeastexit) "shT" = ( /obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "damaged_console2"; opacity = 0 }, @@ -127597,6 +127399,11 @@ /area/lv759/indoors/wy_research_complex/vehicledeploymentbay) "siw" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#687d89"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/north_office) "siB" = ( @@ -127726,7 +127533,7 @@ /turf/open/floor/hybrisa/carpet/carpetfadedred, /area/lv759/indoors/apartment/westentertainment) "sjm" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "47" }, /area/lv759/indoors/spaceport/starglider) @@ -128295,7 +128102,7 @@ /obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_security/checkpoint_central) "snC" = ( /obj/effect/decal/hybrisa/road/road_stop{ @@ -128526,14 +128333,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/east_central_street) -"spA" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/spaceport/docking_bay_2) "spB" = ( /obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ dir = 4 @@ -128711,12 +128510,6 @@ pixel_y = 10 }, /obj/effect/decal/hybrisa/dirt, -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) "sqN" = ( @@ -128985,10 +128778,6 @@ icon_state = "couch_vet1_red"; pixel_x = 14 }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, /turf/open/floor/hybrisa/carpet/carpetreddeco, /area/lv759/indoors/casino) "ssy" = ( @@ -129065,10 +128854,6 @@ pixel_y = 12; pixel_x = 3 }, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell{ - pixel_x = 5 - }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 @@ -129104,7 +128889,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ locked = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastfoyer) "ssR" = ( /obj/item/device/camera_film{ @@ -129192,10 +128977,6 @@ pixel_x = 14; layer = 2.9 }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, /turf/open/floor/hybrisa/carpet/carpetreddeco, /area/lv759/indoors/casino) "stq" = ( @@ -129215,6 +128996,11 @@ /area/lv759/outdoors/colony_streets/south_east_street) "stG" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#8a6161"; + alpha = 225; + layer = 2.9 + }, /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/head_office) "stH" = ( @@ -129472,7 +129258,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/kitchen) "svS" = ( /obj/structure/pipes/standard/simple/hidden/dark, @@ -129560,7 +129346,7 @@ pixel_x = 26 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, /area/lv759/indoors/meridian/meridian_factory) "swy" = ( /obj/structure/machinery/shower{ @@ -129861,11 +129647,11 @@ /turf/open/floor/hybrisa/metal/greenmetal1/west, /area/lv759/indoors/colonial_marshals/prisoners_recreation_area) "sza" = ( +/obj/structure/platform/metal/stair_cut/strata_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/stair_cut/strata_right, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) "szf" = ( @@ -129909,14 +129695,6 @@ }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/south_east_street) -"szp" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/turf/open/hybrisa/street/cement3, -/area/lv759/outdoors/colony_streets/central_streets) "szr" = ( /obj/effect/decal/hybrisa/road/corner{ dir = 4 @@ -129963,7 +129741,8 @@ /area/lv759/outdoors/colony_streets/south_east_street) "szM" = ( /obj/structure/stairs{ - color = "#a6aeab" + color = "#b7b8b2"; + dir = 1 }, /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/northeast) @@ -130000,15 +129779,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/east_central_street_left) -"szT" = ( -/obj/structure/platform_decoration/metal/hybrisa/engineer_corner/north, -/obj/structure/blackgoocontainer{ - pixel_y = 23; - layer = 3.01; - pixel_x = 7 - }, -/turf/open/floor/hybrisa/engineership/engineer_floor9, -/area/lv759/indoors/derelict_ship) "szX" = ( /obj/structure/prop/hybrisa/supermart/freezer/supermartfreezer3, /obj/item/reagent_container/food/snacks/packaged_burger{ @@ -130284,7 +130054,7 @@ "sBY" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/hybrisa/street/sidewalk/east, +/turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "sBZ" = ( /obj/effect/decal/hybrisa/dirt, @@ -130360,7 +130130,7 @@ /turf/open/floor/plating/platingdmg3, /area/lv759/indoors/caves/north_caves) "sCE" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "5" }, /area/lv759/indoors/spaceport/starglider) @@ -130424,12 +130194,6 @@ "sDi" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/science, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ pixel_y = 40; pixel_x = 6 @@ -130473,7 +130237,7 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/mining_outpost/processing) "sDH" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "33"; opacity = 0 }, @@ -130522,14 +130286,6 @@ }, /turf/open/floor/prison/whitegreen/north, /area/lv759/indoors/hospital/reception) -"sEg" = ( -/obj/effect/decal/hybrisa/road/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/hybrisa/road/lines3, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/colony_streets/north_west_street) "sEn" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 10; @@ -131215,7 +130971,7 @@ /area/lv759/indoors/power_plant) "sKf" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart/backrooms) "sKi" = ( /obj/effect/decal/hybrisa/gold/line4{ @@ -131629,13 +131385,14 @@ /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/east_central_street) "sMZ" = ( -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/structure/barricade/handrail/strata{ dir = 4; layer = 4 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "sNa" = ( @@ -131898,7 +131655,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/floor/plating, /area/lv759/indoors/caves/sensory_tower) @@ -132158,7 +131915,7 @@ /turf/open/floor/almayer/blackfull/west, /area/lv759/indoors/wy_research_complex/janitor) "sRd" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "16"; opacity = 0 }, @@ -132168,7 +131925,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/cuppajoes) "sRq" = ( /obj/structure/bed/chair/office/dark{ @@ -132203,7 +131960,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_security/checkpoint_central) "sRP" = ( /obj/structure/platform/metal/strata/north, @@ -132653,6 +132410,11 @@ "sVa" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/weyyu_office/supervisor) "sVg" = ( @@ -132807,12 +132569,6 @@ pixel_x = 9; pixel_y = -4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/hybrisa/tile/tilebeigecheckered, /area/lv759/indoors/colonial_marshals/north_office) "sWZ" = ( @@ -133117,11 +132873,6 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_y = 32 - }, /obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_office) @@ -133201,7 +132952,7 @@ "sZy" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "sZE" = ( /turf/open/floor/prison, @@ -133251,13 +133002,6 @@ }, /turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/recycling_plant/synthetic_storage) -"sZW" = ( -/obj/structure/largecrate/empty, -/obj/structure/machinery/light/blue{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "sZX" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -133282,7 +133026,8 @@ /area/lv759/indoors/electical_systems/substation2) "tae" = ( /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/central_streets) @@ -133328,7 +133073,8 @@ dir = 8 }, /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/northwest, /area/lv759/outdoors/colony_streets/central_streets) @@ -133498,7 +133244,7 @@ /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/colonial_marshals/prisoners_recreation_area) "tbI" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "brokendropshipconsole3"; opacity = 0 }, @@ -133586,7 +133332,7 @@ /area/lv759/indoors/wy_research_complex/mainlabs) "tcu" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northhallway) "tcz" = ( /obj/structure/bedsheetbin{ @@ -133640,14 +133386,6 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/central_streets) -"tcK" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 - }, -/obj/structure/platform/metal/hybrisa/metalplatform6/east, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/east_central_street) "tcM" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/hybrisa/dirt, @@ -133661,7 +133399,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/east_central_street) "tcR" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing4"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -134022,10 +133760,6 @@ icon_state = "stone"; color = "#c59f52" }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, /obj/structure/closet/cabinet/hybrisa/metal/alt{ pixel_x = 4 }, @@ -134368,9 +134102,6 @@ /turf/open/floor/strata/orange_edge/east, /area/lv759/indoors/wy_research_complex/hangarbay) "tgx" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, /obj/structure/largecrate/random/case/small, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) @@ -134477,13 +134208,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating, /area/lv759/indoors/caves/south_east_caves) -"thu" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/east, -/obj/structure/stairs{ - color = "#a6aeab" - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) "thw" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/cleanable/blood/drip{ @@ -134640,9 +134364,6 @@ /turf/open/floor/corsat/brown/north, /area/lv759/indoors/power_plant/gas_generators) "tiY" = ( -/obj/structure/machinery/light/blue{ - dir = 4 - }, /obj/structure/sign/safety/coffee{ pixel_x = 32 }, @@ -134680,7 +134401,7 @@ /turf/open/hybrisa/street/roadlines4, /area/lv759/outdoors/colony_streets/south_east_street) "tjr" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing4"; opacity = 0 }, @@ -134759,7 +134480,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/black_double/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_foyer) "tjS" = ( /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ @@ -134866,7 +134587,7 @@ /obj/structure/surface/rack{ color = "#848484" }, -/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, /area/lv759/indoors/meridian/meridian_factory) "tky" = ( /obj/structure/pipes/standard/simple/hidden/dark, @@ -135182,6 +134903,7 @@ /obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ pixel_y = 25 }, +/obj/item/clothing/accessory/patch/clf_patch, /turf/open/floor/plating/platingdmg3, /area/lv759/indoors/electical_systems/substation3) "tmK" = ( @@ -135297,7 +135019,7 @@ /turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/lv759/indoors/jacks_surplus) "tnx" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "48" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -135347,7 +135069,7 @@ /turf/open/floor/hybrisa/metal/red_warning_floor, /area/lv759/indoors/mining_outpost/vehicledeployment) "tnS" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "37" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -135365,12 +135087,6 @@ layer = 3.21 }, /obj/effect/landmark/objective_landmark/medium, -/obj/structure/curtain/colorable_transparent{ - color = "#5d7362"; - alpha = 225; - pixel_y = 32; - layer = 3.2 - }, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/meridian/meridian_managersoffice) @@ -135383,7 +135099,6 @@ /turf/open/floor/hybrisa/tile/tileblue, /area/lv759/indoors/mining_outpost/south) "tod" = ( -/obj/structure/platform_decoration/metal/almayer/west, /obj/structure/window/framed/hybrisa/colony/engineering/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/shutters{ dir = 8; @@ -135391,7 +135106,7 @@ id = "engineering_lockdown" }, /turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_south) +/area/lv759/indoors/power_plant/geothermal_generators) "tof" = ( /obj/effect/decal/hybrisa/road/road_edge, /obj/effect/decal/hybrisa/road/lines1, @@ -135415,11 +135130,6 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitered/northwest, /area/lv759/indoors/hospital/operation) "tom" = ( @@ -135521,7 +135231,7 @@ /area/lv759/indoors/caves/north_west_caves) "toS" = ( /obj/structure/closet/emcloset, -/turf/open/floor/plating, +/turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_maintenance_east) "toU" = ( /obj/structure/machinery/recharge_station, @@ -135588,7 +135298,7 @@ /obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_street) @@ -135982,7 +135692,7 @@ dir = 1; locked = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) "tsN" = ( /obj/structure/reagent_dispensers/fueltank, @@ -136111,15 +135821,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) -"ttH" = ( -/obj/effect/decal/hybrisa/road/lines5, -/obj/effect/decal/hybrisa/road/lines5, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/colony_streets/south_east_street) "ttJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, /turf/open/floor/plating, @@ -136218,7 +135919,7 @@ /turf/open/floor/hybrisa/metal/grated, /area/lv759/outdoors/colony_streets/central_streets) "tun" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "53" }, /area/lv759/indoors/spaceport/starglider) @@ -136258,7 +135959,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "tuH" = ( /turf/closed/wall/hybrisa/spaceport/reinforced, @@ -136344,6 +136045,11 @@ /area/lv759/indoors/apartment/eastbedrooms) "tvf" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225; + layer = 2.9 + }, /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/office) "tvh" = ( @@ -136445,7 +136151,8 @@ /area/lv759/indoors/caves/north_east_caves) "tvQ" = ( /obj/structure/machinery/light/blue{ - dir = 8 + dir = 8; + pixel_y = -15 }, /turf/open/floor/hybrisa/misc/spaceport1, /area/lv759/indoors/spaceport/docking_bay_1) @@ -136889,8 +136596,9 @@ pixel_x = 2 }, /obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 + dir = 10 }, +/obj/item/shard, /turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "tyU" = ( @@ -137001,7 +136709,7 @@ /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "tzK" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "7" }, /area/lv759/indoors/spaceport/starglider) @@ -137028,13 +136736,13 @@ /turf/open/shuttle/escapepod/floor0/west, /area/lv759/indoors/electical_systems/substation2) "tAe" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, +/obj/structure/machinery/light/double/blue, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1; pixel_y = -1 }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/obj/structure/machinery/light/double/blue, /turf/open/floor/corsat/officesquares, /area/lv759/outdoors/colony_streets/central_streets) "tAm" = ( @@ -137393,8 +137101,16 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/caves/comms_tower) "tEE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, /obj/structure/platform/metal/hybrisa/metalplatform6/east, -/turf/open/floor/corsat/officesquares, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/central_streets) "tEI" = ( /turf/open/floor/prison/darkbrown3/east, @@ -137529,7 +137245,7 @@ pixel_y = -4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_north) "tFw" = ( /obj/effect/decal/warning_stripes{ @@ -137875,9 +137591,6 @@ }, /turf/open/floor/prison/ramptop/east, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) -"tHQ" = ( -/turf/open/floor/plating, -/area/lv759/indoors/power_plant/telecomms) "tHR" = ( /obj/effect/decal/hybrisa/road/lines4, /obj/effect/decal/hybrisa/road/lines5, @@ -137962,9 +137675,6 @@ /obj/structure/platform/stone/mineral, /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/wy_research_complex/weaponresearchlabtesting) -"tIH" = ( -/turf/open/floor/prison/darkbrown3, -/area/lv759/indoors/pizzaria) "tIK" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/cargo, @@ -138196,7 +137906,7 @@ /area/lv759/outdoors/colony_streets/south_east_street) "tKy" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/westhallway) "tKM" = ( /obj/structure/largecrate/random/barrel{ @@ -138404,7 +138114,7 @@ /turf/open/floor/hybrisa/metal/stripe_red/north, /area/lv759/indoors/wy_research_complex/mainlabs) "tLT" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "rightengine_1" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -138593,12 +138303,6 @@ pixel_y = 21 }, /obj/effect/landmark/corpsespawner/hybrisa/civilian_office, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 2.9; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "tNT" = ( @@ -138727,12 +138431,6 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = -32; - layer = 3.2 - }, /turf/open/floor/hybrisa/wood/blackwood, /area/lv759/indoors/weyyu_office/vip) "tOA" = ( @@ -138811,7 +138509,7 @@ /area/lv759/indoors/mining_outpost/east_deploymentbay) "tPc" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) "tPg" = ( /obj/effect/decal/hybrisa/road/road_edge{ @@ -139155,9 +138853,10 @@ /area/lv759/indoors/spaceport/communications_office) "tRU" = ( /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, /turf/open/floor/corsat/officesquares, /area/lv759/outdoors/colony_streets/central_streets) @@ -139763,7 +139462,7 @@ dir = 1 }, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "tWP" = ( /obj/effect/decal/cleanable/blood{ @@ -139788,7 +139487,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/mining_outpost/processing) "tWX" = ( /obj/structure/blocker/forcefield/vehicles, @@ -139833,7 +139532,8 @@ /area/lv759/outdoors/colony_streets/south_east_street) "tXs" = ( /obj/structure/machinery/light/blue{ - dir = 8 + dir = 8; + pixel_y = -15 }, /turf/open/floor/strata/orange_edge/east, /area/lv759/indoors/spaceport/docking_bay_1) @@ -140069,7 +139769,7 @@ "tZl" = ( /obj/structure/blocker/forcefield/vehicles, /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/electical_systems/substation3) "tZp" = ( /obj/effect/decal/hybrisa/dirt, @@ -140116,7 +139816,7 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/hybrisa/metalplatform4/east, -/turf/open/hybrisa/street/cement1, +/turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/central_streets) "tZA" = ( /obj/structure/surface/rack, @@ -140267,11 +139967,6 @@ "uaR" = ( /obj/structure/bed/roller, /obj/item/trash/used_stasis_bag, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/prison/blue_plate, /area/lv759/indoors/hospital/outgoing) "uba" = ( @@ -141059,7 +140754,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/maintenance_south) "uhM" = ( /obj/structure/platform/metal/strata/east, @@ -141343,14 +141038,6 @@ }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/central_streets) -"ujS" = ( -/obj/structure/platform/metal/strata/north, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = 3 - }, -/turf/open/floor/strata/blue3, -/area/lv759/indoors/spaceport/docking_bay_2) "ujU" = ( /obj/structure/barricade/handrail/hybrisa/handrail{ dir = 1 @@ -141551,7 +141238,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/southeastexit) "ulr" = ( /obj/effect/decal/hybrisa/lattice/full, @@ -141575,7 +141262,8 @@ /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer/west, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/prison, /area/lv759/indoors/caves/comms_tower) @@ -141883,10 +141571,6 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/caves/south_east_caves) -"unK" = ( -/obj/structure/blocker/invisible_wall, -/turf/closed/wall/hybrisa/spaceport/unmeltable, -/area/lv759/oob) "unM" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -141956,12 +141640,6 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 6 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/wood/redwood, /area/lv759/indoors/weyyu_office/floor) "uom" = ( @@ -142168,15 +141846,14 @@ /area/lv759/indoors/spaceport/cuppajoes) "uqa" = ( /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 4; - layer = 2.41 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "uqd" = ( /obj/effect/decal/cleanable/dirt{ @@ -142345,7 +142022,7 @@ light_range = 5; pixel_y = 32 }, -/turf/open/floor/corsat, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, /area/lv759/indoors/meridian/meridian_factory) "urh" = ( /obj/effect/spawner/random/toolbox{ @@ -142490,6 +142167,7 @@ /obj/structure/prop/hybrisa/airport/dropshipnosecone{ dir = 1 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "usr" = ( @@ -143125,14 +142803,14 @@ dir = 1; pixel_y = 20 }, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, /obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ pixel_y = 28; pixel_x = 20 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) "uxB" = ( @@ -143163,16 +142841,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/central_streets) -"uxD" = ( -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/machinery/door/poddoor/hybrisa/shutters{ - dir = 8; - layer = 2.9; - id = "engineering_lockdown" - }, -/turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_north) "uxE" = ( /obj/structure/machinery/newscaster{ pixel_y = 30 @@ -144070,11 +143738,6 @@ /area/lv759/indoors/recycling_plant/garage) "uDW" = ( /obj/structure/bed/hybrisa/hospital/hospitaldivider, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_x = 32 - }, /turf/open/floor/prison/blue_plate, /area/lv759/indoors/hospital/outgoing) "uDY" = ( @@ -144193,7 +143856,6 @@ /obj/structure/machinery/door_control{ id = "gonzo_hide_out"; name = "hide-out lockdown button"; - explo_proof = 1; pixel_x = -6; pixel_y = -2 }, @@ -144721,11 +144383,6 @@ pixel_x = 3; pixel_y = 10 }, -/obj/structure/curtain/colorable_transparent{ - color = "#91799d"; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/virology) "uHX" = ( @@ -144878,11 +144535,9 @@ /turf/open/floor/plating, /area/lv759/indoors/mining_outpost/east) "uIL" = ( -/obj/structure/platform/metal/strata/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/prison/ramptop, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "uIM" = ( /obj/item/stack/rods, @@ -145163,10 +144818,10 @@ /area/lv759/outdoors/colony_streets/central_streets) "uLk" = ( /obj/structure/platform/metal/almayer/north, -/obj/structure/machinery/light/spot/blue, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/machinery/light/blue, /turf/open/floor/corsat, /area/lv759/indoors/spaceport/engineering) "uLl" = ( @@ -145424,7 +145079,7 @@ /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/hallway_east) "uMQ" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/electical_systems/substation3) "uMR" = ( /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ @@ -145532,15 +145187,6 @@ /obj/effect/acid_hole, /turf/closed/wall/hybrisa/colony, /area/lv759/indoors/hotel/hotel_rooms) -"uNC" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) "uND" = ( /obj/item/shard, /turf/open/hybrisa/street/asphalt, @@ -145600,7 +145246,7 @@ /obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilered, /area/lv759/indoors/pizzaria) "uNZ" = ( /obj/effect/decal/hybrisa/dirt, @@ -145733,15 +145379,14 @@ /turf/open/floor/plating, /area/lv759/indoors/wy_research_complex/southeastexit) "uOX" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 4; - layer = 2.41 - }, /obj/structure/platform/metal/stair_cut/hybrisa_metal_left, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, /turf/open/floor/plating, /area/lv759/indoors/recycling_plant_office) "uPc" = ( @@ -145884,6 +145529,11 @@ /area/lv759/indoors/weymart) "uPX" = ( /obj/structure/window/framed/hybrisa/colony/hospital, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/cmo_office) "uQe" = ( @@ -146128,21 +145778,17 @@ pixel_y = 16; pixel_x = 4 }, -/obj/structure/sign/calendar/twe{ - pixel_y = 30; - pixel_x = -17 - }, /turf/open/floor/prison/red, /area/lv759/indoors/colonial_marshals/hallway_central) "uRf" = ( /obj/item/stack/rods{ amount = 25 }, +/obj/structure/platform/metal/stair_cut/strata_left, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, -/obj/structure/platform/metal/stair_cut/strata_left, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_1) "uRj" = ( @@ -146202,7 +145848,7 @@ /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/hallway_reception) "uRA" = ( -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastentrance) "uRC" = ( /obj/item/paper/crumpled, @@ -146376,6 +146022,9 @@ /obj/structure/prop/power_transformer{ density = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/outdoors/power_plant/transformers_north) "uSG" = ( @@ -146457,6 +146106,11 @@ /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/weyyu_office/vip) "uTj" = ( @@ -146621,7 +146275,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_south) +/area/lv759/indoors/power_plant/geothermal_generators) "uUM" = ( /obj/effect/decal/hybrisa/road/lines1, /obj/item/trash/uscm_mre, @@ -146635,8 +146289,7 @@ /obj/structure/machinery/door_control/brbutton/alt{ pixel_y = -20; id = "hybrisa_mining_lockdown1"; - name = "lockdown button"; - explo_proof = 1 + name = "lockdown button" }, /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -146927,7 +146580,6 @@ /obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door_control/brbutton{ id = "hybrisamining_northeast1"; - explo_proof = 1; name = "Mining Lockdown"; pixel_x = 8; pixel_y = 32 @@ -147041,16 +146693,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/hybrisa_auto_turf/layer3, /area/lv759/indoors/caves/south_west_caves) -"uXQ" = ( -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/obj/structure/machinery/door/poddoor/hybrisa/shutters{ - dir = 8; - layer = 2.9; - id = "engineering_lockdown" - }, -/turf/open/floor/plating, -/area/lv759/outdoors/power_plant/transformers_south) "uXS" = ( /obj/structure/machinery/sentry_holder/wy{ dir = 4; @@ -147074,7 +146716,7 @@ }, /obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/icu) "uXW" = ( /obj/effect/decal/warning_stripes{ @@ -147130,7 +146772,8 @@ /area/lv759/indoors/wy_security/checkpoint_east) "uYA" = ( /obj/structure/closet/firecloset, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_maintenance_east) "uYJ" = ( /obj/effect/decal/hybrisa/dirt, @@ -147173,10 +146816,6 @@ pixel_x = 14; pixel_y = -20 }, -/obj/structure/curtain/colorable{ - color = "#8c3038"; - pixel_x = 32 - }, /turf/open/floor/hybrisa/tile/tilegrey, /area/lv759/indoors/casino) "uZa" = ( @@ -147257,11 +146896,11 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "uZx" = ( +/obj/structure/platform/metal/stair_cut/strata_left, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, -/obj/structure/platform/metal/stair_cut/strata_left, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) "uZy" = ( @@ -147591,12 +147230,13 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant_office) "vcp" = ( /obj/structure/largecrate/random/barrel/yellow{ pixel_x = 5 }, +/obj/structure/machinery/light, /turf/open/floor/prison/darkbrown2/north, /area/lv759/indoors/power_plant/south_hallway) "vcq" = ( @@ -147745,7 +147385,7 @@ /turf/open/floor/plating, /area/lv759/indoors/hospital/break_room) "vdt" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "68" }, /area/lv759/indoors/spaceport/starglider) @@ -147819,11 +147459,8 @@ /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/almayer, /obj/structure/platform/metal/almayer/north, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "veg" = ( /obj/effect/decal/hybrisa/road/road_edge, @@ -147943,8 +147580,11 @@ /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/colony_streets/north_west_street) "vfy" = ( -/obj/structure/platform/metal/strata/north, -/turf/open/floor/strata/blue3, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_2) "vfG" = ( /obj/structure/platform/metal/almayer/north, @@ -148008,8 +147648,8 @@ dir = 1 }, /obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 + pixel_x = -2; + pixel_y = 10 }, /turf/open/floor/prison/darkbrown2, /area/lv759/indoors/power_plant) @@ -148283,6 +147923,10 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/garage_managersoffice) "viK" = ( @@ -148625,7 +148269,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/turf/open/floor/wood, /area/lv759/indoors/apartment/westbedrooms) "vlB" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, @@ -149167,9 +148811,6 @@ /area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) "vqh" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/curtain/medical{ - pixel_y = 32 - }, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) "vqk" = ( @@ -149405,7 +149046,7 @@ /turf/open/floor/plating, /area/lv759/indoors/caves/east_caves) "vrU" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar) "vrX" = ( /obj/structure/machinery/floodlight{ @@ -149816,7 +149457,8 @@ /area/lv759/indoors/spaceport/docking_bay_1) "vuA" = ( /obj/structure/machinery/light/blue{ - dir = 4 + dir = 4; + pixel_y = -15 }, /turf/open/floor/hybrisa/misc/spaceport2, /area/lv759/indoors/spaceport/docking_bay_1) @@ -149857,9 +149499,10 @@ icon_state = "N" }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, -/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/turf/open/floor/plating, /area/lv759/indoors/caves/south_west_caves) "vuF" = ( /obj/item/device/flashlight/lamp/tripod{ @@ -149999,8 +149642,7 @@ "vvG" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, /obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 + color = "#a6aeab" }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/east_central_street) @@ -150273,12 +149915,6 @@ "vxE" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toy, -/obj/structure/curtain/colorable_transparent{ - color = "#788685"; - layer = 3.2; - pixel_x = -32; - alpha = 220 - }, /turf/open/floor/wood, /area/lv759/indoors/apartment/westentertainment) "vxL" = ( @@ -150847,7 +150483,8 @@ /area/lv759/outdoors/colony_streets/east_central_street_left) "vBP" = ( /obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 + pixel_x = -18; + pixel_y = 6 }, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/blue3/west, @@ -150877,6 +150514,10 @@ /area/lv759/outdoors/colony_streets/south_east_street) "vBX" = ( /obj/structure/window/framed/hybrisa/colony/hospital, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/hospital/cryo_room) "vBY" = ( @@ -151041,6 +150682,11 @@ "vDl" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/meridian/meridian_managersoffice) "vDm" = ( @@ -151106,12 +150752,6 @@ /obj/effect/decal/hybrisa/trash{ icon_state = "trash_8" }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - pixel_y = 32; - alpha = 220; - layer = 2.9 - }, /obj/structure/filingcabinet/chestdrawer{ pixel_x = 8; pixel_y = 21; @@ -151421,7 +151061,8 @@ dir = 4 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) @@ -151429,7 +151070,7 @@ /obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ dir = 1 }, -/turf/open/floor/prison/sterile_white, +/turf/open/floor/prison/cell_stripe, /area/lv759/indoors/hospital/pharmacy) "vGx" = ( /obj/structure/prop/hybrisa/supermart/rack/longrackempty, @@ -151502,13 +151143,6 @@ /obj/item/trash/eat, /turf/open/floor/prison/whitegreen/east, /area/lv759/indoors/hospital/central_hallway) -"vGV" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/west, -/obj/structure/stairs{ - color = "#a6aeab" - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) "vHd" = ( /obj/effect/decal/hybrisa/dirt, /obj/item/shard, @@ -151709,7 +151343,7 @@ /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/south_east_street) "vIR" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "92" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -151824,9 +151458,6 @@ }, /turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_showroom) -"vKg" = ( -/turf/open/floor/plating, -/area/lv759/indoors/bar/entertainment) "vKh" = ( /obj/structure/sink{ dir = 4; @@ -152067,9 +151698,6 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/weyyu_office/pressroom) "vLE" = ( -/obj/item/device/flashlight/lamp/tripod{ - on = 0 - }, /obj/effect/decal/warning_stripes{ icon_state = "N" }, @@ -152193,9 +151821,8 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/structure/sign/poster/corporate{ - layer = 2.9; - pixel_y = 32 +/obj/structure/sign/calendar/wy{ + pixel_y = 29 }, /turf/open/floor/wood, /area/lv759/indoors/hospital/cmo_office) @@ -152289,24 +151916,14 @@ /turf/open/floor/strata/orange_cover, /area/lv759/indoors/weymart) "vNd" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 1 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/hybrisa/misc/fake/wire/red{ - dir = 4; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/dirt/greenglow{ - color = "#140400"; - name = "dirt" +/obj/item/tool/warning_cone{ + layer = 2; + pixel_y = 19; + pixel_x = 13 }, -/obj/effect/hybrisa/misc/fake/wire/blue{ - dir = 4; - pixel_y = -10 +/obj/item/stack/rods, +/obj/item/stack/sheet/cardboard{ + layer = 1 }, /turf/open/floor/plating/platingdmg3/west, /area/lv759/outdoors/colony_streets/east_central_street_left) @@ -152400,7 +152017,7 @@ /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/spaceport/docking_bay_2) "vNK" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "31" }, /area/lv759/indoors/spaceport/starglider) @@ -152943,6 +152560,11 @@ /area/lv759/indoors/spaceport/docking_bay_1) "vRS" = ( /obj/structure/window/framed/hybrisa/colony/office, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2 + }, /turf/open/floor/plating, /area/lv759/indoors/weyyu_office/floor) "vRT" = ( @@ -153046,7 +152668,7 @@ /area/lv759/indoors/weymart) "vSN" = ( /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/changing_room) "vSV" = ( /obj/structure/machinery/floodlight, @@ -153329,6 +152951,7 @@ pixel_x = -7; pixel_y = 10 }, +/obj/item/weapon/gun/pistol/l54, /turf/open/floor/hybrisa/carpet/carpetbluedeco, /area/lv759/indoors/colonial_marshals/north_office) "vVi" = ( @@ -153401,12 +153024,10 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/caves/north_east_caves/south) "vVB" = ( -/obj/structure/machinery/door/poddoor/hybrisa/shutters{ - dir = 8; - id = "engineering_lockdown" +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1 }, -/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant) "vVD" = ( /obj/effect/decal/hybrisa/road/lines3, @@ -153761,10 +153382,6 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/starglider) "vYw" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, /obj/structure/machinery/light/blue{ dir = 1 }, @@ -153787,14 +153404,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating, /area/lv759/indoors/caves/south_caves) -"vYK" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv759/outdoors/power_plant/transformers_south) "vYN" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/largecrate/random/barrel{ @@ -154361,7 +153970,7 @@ /area/lv759/indoors/caves/wy_research_complex_entrance) "wdm" = ( /obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_research_complex/dormsbedroom) "wdr" = ( /obj/structure/surface/table/reinforced/black, @@ -154737,6 +154346,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/hybrisa/carpet/carpetbeige, /area/lv759/indoors/meridian/meridian_office) "wfv" = ( @@ -154768,7 +154378,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "wfD" = ( /obj/structure/surface/rack{ @@ -154932,11 +154542,6 @@ "wgQ" = ( /obj/item/clothing/accessory/stethoscope, /obj/structure/surface/table, -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = -32 - }, /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/patient_ward) "whb" = ( @@ -155004,7 +154609,7 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/docking_bay_1) "whs" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "46" }, /area/lv759/indoors/spaceport/starglider) @@ -155663,7 +155268,6 @@ /area/lv759/indoors/apartment/westhallway) "wmv" = ( /obj/effect/decal/hybrisa/dirt, -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; dir = 1; @@ -155672,6 +155276,14 @@ name = "Pipe"; layer = 2 }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 8; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/power_plant/gas_generators) "wmy" = ( @@ -155751,7 +155363,7 @@ /obj/effect/decal/strata_decals/grime/grime4{ dir = 8 }, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/changing_room) "wns" = ( /obj/item/shard, @@ -155800,10 +155412,9 @@ /obj/structure/prop/hybrisa/fakeplatforms/platform4, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4; - layer = 2.41 + dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/eastbedrooms) "wnL" = ( /obj/item/tool/warning_cone{ @@ -155882,7 +155493,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/security_office) "wog" = ( /obj/effect/decal/warning_stripes{ @@ -155947,7 +155558,7 @@ explo_proof = 1 }, /obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "79"; opacity = 0 }, @@ -156093,7 +155704,7 @@ /obj/structure/machinery/door/airlock/hybrisa/medical_solid/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/paramedics_garage) "wpT" = ( /obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark2, @@ -156112,7 +155723,7 @@ /area/lv759/indoors/wy_research_complex/medical_annex) "wpY" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/northhallway) "wpZ" = ( /obj/effect/decal/cleanable/blood, @@ -156187,17 +155798,6 @@ /obj/effect/decal/hybrisa/road/lines4, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/east_central_street) -"wqI" = ( -/obj/effect/decal/hybrisa/road/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/hybrisa/road/lines3, -/obj/effect/decal/hybrisa/doubleroad/lines2{ - pixel_y = 4 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/colony_streets/north_west_street) "wqL" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32; @@ -156269,19 +155869,12 @@ /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/south_maintenance) "wrl" = ( -/obj/structure/platform_decoration/metal/strata/west, /obj/item/tool/warning_cone{ pixel_x = -21; pixel_y = 3 }, -/turf/open/floor/strata/blue3, +/turf/open/floor/strata/blue3/north, /area/lv759/indoors/spaceport/docking_bay_2) -"wro" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/lv759/indoors/power_plant/equipment_east) "wrs" = ( /obj/structure/machinery/light{ dir = 1 @@ -156459,7 +156052,7 @@ pixel_y = 12; pixel_x = -5 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_office) "wtr" = ( /obj/effect/decal/hybrisa/road/lines4, @@ -156989,7 +156582,7 @@ /obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/hospital/patient_ward) "wxO" = ( /obj/structure/closet/hybrisa/wy_bio, @@ -157137,15 +156730,12 @@ icon_state = "5-8" }, /obj/structure/prop/hybrisa/fakeplatforms/platform3, -/obj/structure/prop/hybrisa/fakeplatforms/platform3{ - dir = 8 - }, /obj/effect/hybrisa/misc/fake/wire/red{ dir = 4; pixel_y = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "wzl" = ( /turf/open/floor/almayer/cargo_arrow/west, @@ -157158,7 +156748,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/security_office) "wzn" = ( /obj/structure/platform_decoration/stone/hybrisa/rockdark/east, @@ -157219,6 +156809,10 @@ pixel_y = -9 }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, /turf/open/floor/prison/bright_clean/southwest, /area/lv759/indoors/power_plant) "wzH" = ( @@ -157326,7 +156920,7 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/wy_security/checkpoint_central) "wAO" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "73" }, /area/lv759/indoors/spaceport/starglider) @@ -157524,7 +157118,7 @@ /turf/open/floor/plating, /area/lv759/indoors/hospital/maintenance_north) "wCg" = ( -/turf/open/floor/prison, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/bar/entertainment) "wCh" = ( /obj/structure/machinery/vending/cigarette/wy{ @@ -157577,7 +157171,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/corsat/officetiles, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/restroom) "wCH" = ( /obj/effect/decal/hybrisa/road/lines4, @@ -157827,7 +157421,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/electical_systems/substation1) "wEg" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "82" }, /area/lv759/indoors/spaceport/starglider) @@ -157925,7 +157519,7 @@ /turf/open/floor/prison/cell_stripe, /area/lv759/indoors/wy_security/checkpoint_east) "wEG" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing3"; opacity = 0 }, @@ -157957,11 +157551,6 @@ buckling_y = 12 }, /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilegreen, /area/lv759/indoors/garage_managersoffice) "wEP" = ( @@ -158225,7 +157814,7 @@ /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) "wGJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white, /area/lv759/indoors/hospital/central_hallway) "wGQ" = ( /obj/structure/bed/chair/office/light{ @@ -158273,7 +157862,7 @@ /turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/wy_research_complex/mainlabs) "wHk" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/apartment/westhallway) "wHn" = ( /obj/effect/decal/hybrisa/road/lines3, @@ -158429,6 +158018,10 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) "wIL" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/meridian/meridian_foyer) "wIO" = ( @@ -158679,14 +158272,6 @@ }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/east_central_street_left) -"wLf" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/metal/zbrownfloor1/east, -/area/lv759/indoors/meridian/meridian_office) "wLg" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, /turf/open/hybrisa/street/sidewalk/east, @@ -158865,7 +158450,8 @@ dir = 8 }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/spaceport/cargo) @@ -158962,10 +158548,6 @@ }, /turf/open/floor/wood, /area/lv759/indoors/bar) -"wNp" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/closed/wall/hybrisa/colony/engineering/ribbed, -/area/lv759/outdoors/power_plant/transformers_north) "wNv" = ( /obj/item/tool/warning_cone{ pixel_x = -11; @@ -159149,9 +158731,7 @@ "wPp" = ( /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/east, -/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ - pixel_y = 25 - }, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison/ramptop, /area/lv759/outdoors/colony_streets/central_streets) "wPs" = ( @@ -159280,13 +158860,14 @@ /turf/open/floor/hybrisa/carpet/carpetblack, /area/lv759/indoors/weyyu_office/pressroom) "wQp" = ( -/obj/structure/stairs{ - color = "#a6aeab" - }, /obj/effect/decal/cleanable/blood/drip{ pixel_y = 15; pixel_x = -14 }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, /turf/open/floor/plating, /area/lv759/indoors/caves/sensory_tower) "wQx" = ( @@ -159303,18 +158884,6 @@ }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_street) -"wQB" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) "wQG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -159409,7 +158978,7 @@ /obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/power_plant/workers_canteen_kitchen) "wRy" = ( /obj/effect/decal/strata_decals/grime/grime1, @@ -159681,10 +159250,6 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/north_west_street) "wTL" = ( -/obj/structure/curtain/red{ - pixel_y = -32; - layer = 2.9 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, @@ -159986,7 +159551,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ autoname = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "wVM" = ( /obj/effect/decal/hybrisa/road/lines1, @@ -160118,7 +159683,7 @@ dir = 4 }, /obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/power_plant/transformers_south) "wWN" = ( /obj/item/tool/warning_cone{ @@ -161077,7 +160642,7 @@ /area/lv759/indoors/apartment/northfoyer) "xeo" = ( /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weyyu_office/breakroom) "xep" = ( /obj/structure/sign/safety/medical{ @@ -161126,6 +160691,7 @@ /area/lv759/indoors/wy_research_complex/reception) "xex" = ( /obj/structure/cargo_container/horizontal/blue/bottom, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "xey" = ( @@ -161207,7 +160773,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/recycling_plant_waste_disposal_incinerator) "xeW" = ( /obj/effect/decal/hybrisa/dirt, @@ -161329,7 +160895,7 @@ pixel_y = -5; pixel_x = 8 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart/backrooms) "xgc" = ( /obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, @@ -161347,7 +160913,7 @@ light_range = 5; pixel_y = 32 }, -/turf/open/floor/corsat, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, /area/lv759/indoors/meridian/meridian_factory) "xgl" = ( /obj/structure/window/framed/hybrisa/colony/hull, @@ -161726,9 +161292,6 @@ icon_state = "W"; layer = 3.3 }, -/obj/structure/machinery/light/blue{ - dir = 8 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 6 }, @@ -161806,7 +161369,7 @@ vehicle_resistant = 1 }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_south) "xjG" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, @@ -161994,7 +161557,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/janitor) "xlo" = ( /turf/open/floor/hybrisa/metal/zbrownfloor1/north, @@ -162026,15 +161589,8 @@ pixel_x = 8; pixel_y = 5 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /obj/structure/sign/calendar/wy{ - pixel_y = 27; - pixel_x = -6 + pixel_y = 29 }, /turf/open/floor/almayer/black/northwest, /area/lv759/indoors/wy_research_complex/head_research_office) @@ -162238,7 +161794,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/morgue) "xnt" = ( /obj/structure/prop/hybrisa/cavedecor/stalagmite1, @@ -162536,7 +162092,7 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/wy_research_complex/hangarbay) "xpt" = ( -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/weymart) "xpv" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, @@ -162633,7 +162189,9 @@ pixel_y = 14 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, /area/lv759/indoors/meridian/meridian_maintenance_east) "xqx" = ( /obj/structure/prop/hybrisa/vehicles/Small_Truck/Mining{ @@ -162701,11 +162259,6 @@ /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 1 }, -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = -32 - }, /turf/open/floor/hybrisa/tile/tilegreen, /area/lv759/indoors/garage_managersoffice) "xqR" = ( @@ -162737,11 +162290,13 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "2" }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, /obj/effect/decal/cleanable/blood/gibs/body, /obj/structure/blocker/invisible_wall, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1; + pixel_y = 4; + buckling_y = 4 + }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, /area/lv759/indoors/spaceport/starglider) "xrb" = ( @@ -162779,20 +162334,11 @@ }, /turf/open/floor/prison/red/north, /area/lv759/indoors/colonial_marshals/prisoners_foyer) -"xrf" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#687d89"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/turf/open/floor/hybrisa/tile/tilebeigecheckered, -/area/lv759/indoors/colonial_marshals/north_office) "xrg" = ( /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) @@ -163089,7 +162635,7 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_cargo) "xtp" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) "xtq" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, @@ -163349,21 +162895,20 @@ /obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted{ dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, /area/lv759/indoors/hotel/hotel_hallway) "xva" = ( /obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/prison/blue/east, /area/lv759/indoors/power_plant/telecomms) "xvb" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_northeast"; - name = "Checkpoint Lockdown"; - explo_proof = 1 + name = "Checkpoint Lockdown" }, /obj/item/reagent_container/food/drinks/coffee{ pixel_x = 5; @@ -163800,7 +163345,7 @@ /obj/structure/sign/safety/bathunisex{ pixel_y = -24 }, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/plating/prison, /area/lv759/indoors/colonial_marshals/changing_room) "xxC" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -163811,6 +163356,9 @@ name = "Pipe" }, /obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, /turf/open/floor/corsat, /area/lv759/indoors/power_plant/gas_generators) "xxL" = ( @@ -163836,7 +163384,7 @@ "xxR" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname, /obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/plating, +/turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/baggagehandling) "xxS" = ( /obj/structure/platform/stone/mineral/east, @@ -163922,13 +163470,11 @@ /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_bunker"; name = "Checkpoint Lockdown"; - explo_proof = 1; pixel_x = -8 }, /obj/structure/machinery/door_control{ id = "bunker_shutters"; name = "Bunker Checkpoint Lockdown - shutters"; - explo_proof = 1; pixel_x = 2 }, /obj/effect/decal/hybrisa/colorable_rug{ @@ -163953,7 +163499,6 @@ /obj/structure/machinery/door_control{ id = "hybrisacheckpoint_bunker_north"; name = "Checkpoint Lockdown - North"; - explo_proof = 1; pixel_x = -8; pixel_y = 6 }, @@ -164006,9 +163551,8 @@ pixel_y = 6; pixel_x = 5 }, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 +/obj/structure/machinery/light/blue{ + dir = 4 }, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) @@ -164126,7 +163670,7 @@ /obj/structure/machinery/door/airlock/almayer/secure/colony{ autoname = 1 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/electical_systems/substation1) "xzR" = ( /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, @@ -164455,8 +163999,10 @@ pixel_y = 12 }, /obj/item/trash/hybrisa/cuppa_joes/lid, -/turf/open/hybrisa/street/cement3, -/area/lv759/outdoors/colony_streets/central_streets) +/obj/structure/machinery/power/apc/no_power/west, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/north_west_street) "xBX" = ( /obj/effect/decal/hybrisa/dirt, /obj/item/hybrisa/misc/trash_bag_full_prop{ @@ -164683,16 +164229,8 @@ icon_state = "2" }, /obj/structure/machinery/door/airlock/hybrisa/medical/autoname, -/turf/open/floor/prison/bright_clean2/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/hospital/virology) -"xDO" = ( -/obj/structure/platform/metal/strata/east, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, -/turf/open/floor/strata/blue3/east, -/area/lv759/indoors/spaceport/docking_bay_2) "xEc" = ( /obj/structure/bed/chair/comfy/hybrisa/brown{ dir = 8 @@ -164793,7 +164331,7 @@ pixel_y = -8; layer = 4 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/meridian/meridian_office) "xFc" = ( /obj/effect/decal/hybrisa/dirt, @@ -164822,13 +164360,10 @@ /turf/open/hybrisa/street/cement1, /area/lv759/outdoors/colony_streets/north_east_street_LZ) "xFj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, /obj/effect/decal/cleanable/dirt{ layer = 4 }, -/turf/open/floor/prison/ramptop, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "xFl" = ( /obj/structure/surface/table/gamblingtable, @@ -165098,7 +164633,7 @@ /turf/open/hybrisa/dropship/dropship4, /area/lv759/indoors/spaceport/starglider) "xGY" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "leftengine_3" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -165135,6 +164670,9 @@ pixel_x = 7; pixel_y = 9 }, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/docking_bay_1) "xHw" = ( @@ -165150,6 +164688,10 @@ /area/lv759/indoors/wy_research_complex/xenobiology) "xHA" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/meridian/meridian_office) "xHB" = ( @@ -165312,7 +164854,7 @@ /obj/structure/platform/metal/stair_cut/hybrisa_metal_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) @@ -165420,7 +164962,7 @@ /turf/open/floor/hybrisa/carpet/carpetbeige, /area/lv759/indoors/meridian/meridian_office) "xJY" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "64" }, /area/lv759/indoors/spaceport/starglider) @@ -165454,11 +164996,6 @@ /turf/open/floor/hybrisa/wood/darkerwood, /area/lv759/indoors/colonial_marshals/head_office) "xKg" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#8bafa4"; - layer = 3.2; - pixel_y = 32 - }, /turf/open/floor/prison/whitered/north, /area/lv759/indoors/hospital/operation) "xKh" = ( @@ -165517,7 +165054,8 @@ icon_state = "armor_blood" }, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/central_streets) @@ -165539,11 +165077,6 @@ /turf/open/floor/hybrisa/metal/zbrownfloor1, /area/lv759/indoors/meridian/meridian_factory) "xLc" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#887362"; - alpha = 225; - pixel_x = -32 - }, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_25"; pixel_x = 10; @@ -165691,7 +165224,7 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) "xMc" = ( /obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble3{ @@ -166092,19 +165625,16 @@ /area/lv759/bunker/checkpoint) "xPk" = ( /obj/effect/decal/hybrisa/dirt, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 1 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 8 - }, -/obj/effect/hybrisa/misc/fake/wire/red{ - dir = 4; - pixel_y = -4 +/obj/item/tool/warning_cone{ + pixel_x = -20; + layer = 3 }, -/obj/effect/hybrisa/misc/fake/wire/blue{ - dir = 4; - pixel_y = -10 +/obj/item/tool/shovel/etool/folded, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1; + pixel_x = 1; + pixel_y = 2 }, /turf/open/floor/plating/platingdmg3/west, /area/lv759/outdoors/colony_streets/east_central_street_left) @@ -166341,7 +165871,7 @@ "xRb" = ( /obj/structure/pipes/standard/simple/hidden/dark, /obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/hybrisa/tile/cementflat, +/turf/open/floor/hybrisa/tile/tilebeige, /area/lv759/indoors/colonial_marshals/changing_room) "xRc" = ( /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ @@ -166376,12 +165906,6 @@ /obj/item/clothing/suit/storage/labcoat/researcher{ pixel_y = 6 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/almayer/black/southwest, /area/lv759/indoors/wy_research_complex/head_research_office) "xRm" = ( @@ -166411,7 +165935,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, /area/lv759/indoors/hospital/icu) "xRT" = ( /obj/effect/decal/hybrisa/dirt, @@ -166548,7 +166072,8 @@ /area/lv759/outdoors/colony_streets/central_streets) "xSM" = ( /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/floor/plating, /area/lv759/indoors/colonial_marshals/holding_cells) @@ -166686,6 +166211,10 @@ /area/lv759/indoors/power_plant/gas_generators) "xUe" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#887362"; + alpha = 225 + }, /turf/open/floor/plating, /area/lv759/indoors/garage_workshop) "xUi" = ( @@ -166927,7 +166456,8 @@ "xVX" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/west, /obj/structure/stairs{ - color = "#a6aeab" + color = "#a6aeab"; + dir = 1 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_street) @@ -167042,13 +166572,13 @@ /turf/open/floor/wood, /area/lv759/indoors/apartment/eastbedrooms) "xWM" = ( -/obj/structure/platform/metal/strata/west, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, /obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, /obj/item/fuel_cell, -/turf/open/floor/prison/ramptop, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "xWN" = ( /obj/structure/platform/metal/almayer, @@ -167105,7 +166635,6 @@ /obj/structure/machinery/door_control{ id = "bunker_garage_doors"; name = "Bunker Checkpoint Lockdown - North Entrance"; - explo_proof = 1; pixel_y = -4; pixel_x = 9 }, @@ -167335,9 +166864,6 @@ pixel_x = -1; pixel_y = 1 }, -/obj/structure/curtain/medical{ - pixel_y = 32 - }, /obj/structure/medical_supply_link/green, /turf/open/floor/hybrisa/tile/tilewhitecheckered, /area/lv759/indoors/wy_research_complex/medical_annex) @@ -167498,7 +167024,7 @@ /obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/central_streets) @@ -167996,7 +167522,8 @@ /area/lv759/indoors/hospital/virology) "ydp" = ( /obj/structure/stairs{ - color = "#b7b8b2" + color = "#b7b8b2"; + dir = 1 }, /turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/weyyu_office/pressroom) @@ -168146,13 +167673,6 @@ }, /turf/open/floor/hybrisa/metal/metalwhitefull, /area/lv759/indoors/colonial_marshals/prisoners_recreation_area) -"yeO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - autoname = 1 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/power_plant) "yeP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -168400,7 +167920,7 @@ autoname = 1; name = "autoname" }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/security_office) "ygz" = ( /obj/structure/barricade/handrail/hybrisa/road/metal/metaldark{ @@ -168751,7 +168271,7 @@ vehicle_resistant = 1 }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/almayer/plate, +/turf/open/floor/corsat/officetiles, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "yjF" = ( /obj/effect/decal/hybrisa/dirt, @@ -168826,12 +168346,6 @@ /obj/effect/decal/strata_decals/grime/grime4{ icon_state = "grime3" }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, /turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/lv759/indoors/hospital/break_room) "yjV" = ( @@ -168976,12 +168490,6 @@ icon_state = "pottedplant_17"; pixel_y = 13 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 2.9; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "ykI" = ( @@ -169039,10 +168547,7 @@ /obj/structure/prop/hybrisa/signs/high_voltage/small{ pixel_y = 32 }, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/turf/open/floor/prison/darkbrown2, +/turf/closed/wall/hybrisa/colony/engineering/ribbed, /area/lv759/indoors/power_plant/south_hallway) "ylg" = ( /obj/effect/decal/hybrisa/dirt, @@ -170323,7 +169828,7 @@ wds gfw qlW dDk -nvh +sRV sRV keD bnK @@ -170987,9 +170492,9 @@ uYg uYg uYg uYg -uYg -bGH -bhB +asN +uZV +asD wyg wyg wyg @@ -171079,7 +170584,7 @@ eSB ooo qlW uMr -mgK +mSW nJY aPl aoO @@ -171239,9 +170744,9 @@ oRT dQw vwj iju -sZW -uZV -wHS +cRq +cRq +asF qYX vQC vQC @@ -171475,22 +170980,22 @@ uZt bGH oDW vuy -vuy +asP cRq kYl tWQ tWQ -cvJ +asT cRq wHS tWQ tWQ -cvJ +asT cRq adc vuy fPu -vuy +asP cRq cRq qWM @@ -172487,12 +171992,12 @@ rPD pgp sRd lfo -iae +hUw jTR vpc jTR lfo -iae +hUw olW rPD pgp @@ -173483,7 +172988,7 @@ udB dHG bmk miy -nBG +atp tli oOf uIY @@ -173722,7 +173227,7 @@ cRq yfA pUQ fjP -uEV +atu cRq cRq fsS @@ -175007,12 +174512,12 @@ gtq rzV eVc uRf -hUw +iae jTR vpc rje bSI -hUw +iae gSm sDH bka @@ -175524,7 +175029,7 @@ uYg uYg uYg vuA -bGH +asL fbI jQk iEx @@ -176011,22 +175516,22 @@ fbI bGH vuy vuy -vuy +asP cRq kvc tWQ tWQ -cvJ +asT cRq add tWQ tWQ -cvJ +asT kTH oMe vuy -vuy -vuy +asQ +asP cRq cRq bhB @@ -176253,10 +175758,10 @@ iIR cRq cRq cuu -cwA +ary xWE anD -lXW +bGH mjY iHB mjY @@ -176264,7 +175769,7 @@ bGH oRT dQw vwj -etZ +fPu wHS tWQ tWQ @@ -176279,9 +175784,9 @@ oRT dQw vwj vuy -oWY -bGH -wHS +cRq +cRq +unM jqw icG icG @@ -176505,15 +176010,15 @@ eZY wee wee wee -wee +atn qZj qVd -wee +atn xkx xkx xkx -wee -pFk +asY +rZi rZi rZi rZi @@ -176531,7 +176036,7 @@ rZi rZi rZi rZi -rZi +asO bGH jhH mjY @@ -176999,7 +176504,7 @@ eLK qqJ qWN pir -qiP +pir pir pir pir @@ -177012,7 +176517,7 @@ rJC pir llV pir -qiP +pir pir pir mWA @@ -177251,7 +176756,7 @@ cii uCU nBU jdG -ejV +jdG xmu xmu jdG @@ -177264,7 +176769,7 @@ lva jdG mdy sGK -ejV +jdG jdG jdG mWA @@ -177294,7 +176799,7 @@ kNf llX aOQ tiY -tes +asA jld cRq cRq @@ -177453,7 +176958,7 @@ hMi hMi hMi jqr -ltK +arj jqr eky jqr @@ -177498,12 +177003,12 @@ rPf "} (34,1,1) = {" rPf -unK +fsS gvX yai aqT -vhD -aTu +atv +nHs gkZ dfM tVM @@ -177515,9 +177020,9 @@ dfM hYt exg nwv -bHs -xDO vhD +vhD +atf wrl mWA uGe @@ -177544,7 +177049,7 @@ dSJ hOc iRF cuk -uZt +asB hhE sRj ycJ @@ -177750,26 +177255,26 @@ rPf "} (35,1,1) = {" rPf -unK +fsS dzq anF eMI +atw xzX -oAg sza -tLJ +vdg oAg oAg oAg xzX sza -tLJ -oAg +vdg oAg oAg oAg oAg xzX +atg vfy kxB tuH @@ -177780,7 +177285,7 @@ jgd jgd fxl fxl -unM +asX uaa tes cvJ @@ -178003,10 +177508,10 @@ rPf (36,1,1) = {" rPf fsS -dzq +atC anF -oRc -oAg +kCB +atx oAg vLr vLr @@ -178021,9 +177526,9 @@ qVH pNG xGY fAV -oAg -vfy -kxB +ath +atd +atc tuH rbQ oYy @@ -178257,8 +177762,8 @@ rPf fsS dzq anF -kCB -oAg +eMI +atx oAg rGT fNP @@ -178273,7 +177778,7 @@ moO dlL pNG fAV -oAg +ati vfy aFX jgd @@ -178507,7 +178012,7 @@ rPf (38,1,1) = {" rPf fsS -dzq +atC anF yjL lcg @@ -178528,7 +178033,7 @@ hbU xWM kbu mna -jgd +asZ vDN sZE dri @@ -178615,7 +178120,7 @@ kbw kIa sTo kIa -qIC +arv aaj fIf fIf @@ -178760,7 +178265,7 @@ rPf rPf fsS dzq -anF +atA rRB ffl rYL @@ -179032,7 +178537,7 @@ eAw xFj mqj gsb -bON +key saD vBY akq @@ -179044,7 +178549,7 @@ tVt wnx nnG gmK -kzE +lCx pbE tQs oiH @@ -179263,8 +178768,8 @@ rPf (41,1,1) = {" rPf fsS -dzq -anF +atC +atA usm kqI huz @@ -179462,7 +178967,7 @@ dsk dNA ucR yag -pxz +yag npm uZe ktn @@ -179471,7 +178976,7 @@ xdd jqr abc gze -lhG +cAb dAh vxL jTE @@ -179515,10 +179020,10 @@ rPf (42,1,1) = {" rPf fsS -dzq +atC anF kCB -oAg +atx oAg nSM efT @@ -179533,8 +179038,8 @@ cGG tnx iSX tLT -oAg -qiN +atk +dqs jQJ jHO iDQ @@ -179723,7 +179228,7 @@ pUl jqr abd rGg -lhG +cAb wOg wyE mXK @@ -179767,11 +179272,11 @@ rPf (43,1,1) = {" rPf fsS -dzq +atC anF -pjT -oAg -oAg +kCB +atx +att vLr vLr piP @@ -179785,17 +179290,17 @@ tnS iSX eti tLT -oAg -ujS -kxB +atl +vfy +atc tuH scs key key tRT qjB -pGD -bON +key +key dxD wnx nnG @@ -179972,7 +179477,7 @@ dCf qGX xbw lAY -fEz +arn aaO bOs hiL @@ -180022,23 +179527,23 @@ fsS dzq anF oUx +atw xzX -oAg uZx -vdg +tLJ oAg oAg oAg xzX uZx -vdg -oAg +tLJ oAg oAg oAg oAg xzX -vfy +atg +ate kxB tuH fpH @@ -180274,8 +179779,8 @@ fsS qPz anG rWs -neX -dVH +atz +lNT gaa dXM tom @@ -180284,12 +179789,12 @@ neX lNT gaa dXM -kMX +tom neX neX -kMX -oja neX +neX +atm fEo qLn tuH @@ -180470,7 +179975,7 @@ jqr jqr jqr jqr -ltK +arj jqr jqr ull @@ -180527,7 +180032,7 @@ cii dEP hCr euU -ejV +euU xmu xmu euU @@ -180540,7 +180045,7 @@ euU euU euU euU -ejV +euU euU euU mWA @@ -180779,7 +180284,7 @@ eLK kHf qWN pir -aoY +pir pir pir pir @@ -180792,7 +180297,7 @@ pir pir pir pir -spA +llV pir pir lQc @@ -182358,8 +181863,8 @@ iKA yiF rcI nzY -diA -diA +aRE +aRE aRE aRE aRE @@ -183120,7 +182625,7 @@ sQX qwg hph ikH -eCV +kIX iLi aAd lPD @@ -183356,7 +182861,7 @@ gsg gsg gsg ghC -aqW +oBY sQX fuR fuR @@ -183581,7 +183086,7 @@ cfB hBo hBo hBo -hBo +iBq sBY sEn hBo @@ -183827,7 +183332,7 @@ cap cJW ina evV -sEg +fTI ogs tgx iam @@ -183854,9 +183359,9 @@ mtw cPd cPd juu -abz +juu mBa -szp +seX tqx cML seX @@ -184079,7 +183584,7 @@ oeR ozZ ina evV -wqI +jZg gGO diT jhZ @@ -184342,7 +183847,7 @@ sKO pQP gsg hNr -tYR +iBq ouK wEz vmj @@ -184583,7 +184088,7 @@ iyw ozZ ilM riy -wqI +jZg dmI kKz bNZ @@ -184890,7 +184395,7 @@ cUr aMp ofM sGs -vGV +lPh fGD sGs nvP @@ -185142,7 +184647,7 @@ cIs lWT ofM sGs -thu +lCO wDY gHS kQa @@ -185393,7 +184898,7 @@ lqr ink cWQ ofM -aqU +nvP tqx tqx bPT @@ -185851,7 +185356,7 @@ rVq roJ fnY hzH -qZM +xEA vRS nsz xCV @@ -185879,7 +185384,7 @@ lCo bND tjk ije -brx +asl ije ije ije @@ -186126,7 +185631,7 @@ juu kmJ sGs ife -aEU +iLR tKy vOI iSb @@ -186146,7 +185651,7 @@ dbr tjk nnE tKy -iLR +aEU fbU raD nvP @@ -186355,7 +185860,7 @@ geO xEA nPS xEA -wQB +geO vRS dTW hiw @@ -186378,7 +185883,7 @@ lal bxb sGs dkQ -jBN +pJm wHk vOI rsc @@ -186398,7 +185903,7 @@ tHH ohD vOI wHk -pJm +jBN plw qKg qKg @@ -186641,7 +186146,7 @@ fIN lns iTs dqv -uDD +asc dqv iTs dqv @@ -186861,8 +186366,8 @@ gbv eXd geO mKC -kQx -kQx +xEA +xEA uol kPb yhq @@ -187117,7 +186622,7 @@ que odt vDg meP -juu +asK pzK noQ hBO @@ -187630,7 +187135,7 @@ eYu qXu vWI sgL -bjS +mZu qyt qXu ljg @@ -188384,7 +187889,7 @@ qsT uAK oKP sVa -uNC +mZu raO jDO mfK @@ -188872,9 +188377,9 @@ iUi fkS yad yad -oVm -oVm -oVm +asS +asS +asS mFi yad vRS @@ -188888,7 +188393,7 @@ cOB uAK eqf sVa -uNC +mZu mZu mZu mZu @@ -188909,7 +188414,7 @@ qxk tHH iTs dqv -uDD +asc dqv ije ije @@ -189411,7 +188916,7 @@ ije ije cfv nnE -scQ +plr anz any frA @@ -189643,7 +189148,7 @@ pSt puV tMU tOx -gRZ +asw pck fXb hEi @@ -189895,7 +189400,7 @@ cAP bJn fOn klB -gRZ +asw fZU vNA efk @@ -191469,7 +190974,7 @@ rpC pSr hgb aIg -nhM +aru vsL gSL lMN @@ -191650,12 +191155,12 @@ dfK fuD ufv lEB -rAb +jTQ ara uCa sgD sdF -jTQ +rAb pWK fCA xrX @@ -191695,7 +191200,7 @@ nhT sGs sGs gRD -vGV +lPh ffE rqr bas @@ -191721,7 +191226,7 @@ rpC vAx hgb ylL -nhM +aru fvo wOG loK @@ -191902,12 +191407,12 @@ xak kLI xak kLI -waS +bvc onj uCa sgD sdF -bvc +waS kLI xak xak @@ -191973,7 +191478,7 @@ rpC fWq kSK aIg -nhM +aru fOi jSZ lHy @@ -192154,12 +191659,12 @@ rdQ rdQ kLI liG -daG +lak onj uCa sgD sdF -lak +daG xjx rdQ rdQ @@ -192199,7 +191704,7 @@ miD shl rXR ooC -thu +lCO gHS vEL aTd @@ -192225,7 +191730,7 @@ rpC rAl ftr vAn -nhM +aru fvo gSL iYQ @@ -192422,7 +191927,7 @@ xkA bAd lyk xJc -eeV +dpD ccO btb bAd @@ -192431,7 +191936,7 @@ gMC gMC uIf xJc -eeV +dpD jUX uQI ncM @@ -192673,7 +192178,7 @@ ohM tiZ tiZ ohM -bYl +gYt fLe ohM tiZ @@ -192974,7 +192479,7 @@ pll rrQ lui sDA -pWT +arz lKS wdr eBD @@ -193478,7 +192983,7 @@ nKU wzx wzx lTE -pWT +arz rXS xPa eBL @@ -193982,7 +193487,7 @@ tWs bxx tvI mlg -pWT +arz sYN aIL kSu @@ -194176,11 +193681,11 @@ gNj qRx ioZ ioZ -dvf +asC ioZ ioZ ioZ -dvf +asv ioZ mEU qfb @@ -194485,7 +193990,7 @@ nCU hCj oEb xLc -wLf +hGn qPQ fGC gsy @@ -194920,9 +194425,9 @@ dQW svx jrY scL -naJ +asV tTY -tIH +naJ jiD wYu kNC @@ -195457,7 +194962,7 @@ ooC ooC raD vEL -rGm +asf lnw map kME @@ -195681,7 +195186,7 @@ poZ poZ poZ kqa -ruU +mTt egO bwC dSv @@ -195700,7 +195205,7 @@ nuP cxg gMC nuP -psI +ast yau nuP gMC @@ -196242,7 +195747,7 @@ eAj nvP oEb lHd -doF +mlf eIu mlf nOH @@ -196713,7 +196218,7 @@ dQU tOD eAj hDG -lPh +asq nhT raD nvP @@ -196751,8 +196256,8 @@ cWq ecB gba qOd -xHA -jVc +arB +sBJ nhn nhn eCZ @@ -196844,8 +196349,8 @@ gSZ nTN rUc sOI -eak -eak +qHF +qHF rUc dqA aCK @@ -196965,7 +196470,7 @@ dQU tOD eAj fCw -lCO +asr miD ooC uws @@ -197003,7 +196508,7 @@ slR tBm von oEs -xHA +arB fxt pMH sXF @@ -197595,7 +197100,7 @@ unn unn apz deA -aCK +guG lEq kcU nMj @@ -197847,8 +197352,8 @@ unn unn apz hIH -aCK -gmf +guG +bKg dHK tpY fck @@ -197856,7 +197361,7 @@ bep jdu aLb weX -bKg +gmf aCK jbZ guz @@ -197951,7 +197456,7 @@ pbh pbh pbh nSt -mTt +ruU nEt bwC bwC @@ -197961,7 +197466,7 @@ pbh pbh pbh nSt -mTt +ruU pbh tqx tqx @@ -198015,7 +197520,7 @@ hfZ wIL hfZ bEE -kSu +arw dhn kSu kSu @@ -198100,7 +197605,7 @@ unn apz hnu mYu -gmf +bKg dHK idr xAz @@ -198352,7 +197857,7 @@ unn unn unn aCK -gmf +bKg dHK emp wTa @@ -198360,7 +197865,7 @@ wTa gLT kqg fNV -bKg +gmf aCK ixF jbZ @@ -199364,8 +198869,8 @@ aCK ebG wkm agN -qHF -qHF +eak +eak wkm vXB lhd @@ -199440,7 +198945,7 @@ nGT uvf uuz wTL -qUy +ato vyW tTw vAP @@ -199750,10 +199255,10 @@ xsr lDV xsr mco -xsr -xsr aNg -xsr +aNg +arX +aNg xsr mIC mIC @@ -200001,11 +199506,11 @@ wLi qra pEf tvM -tEE -tEE +asb +arZ tEE nwy -pEf +arV tAe mIC vbL @@ -200252,7 +199757,7 @@ bIo jzM tRU lAQ -dQj +dMY qzi qzi wgO @@ -200469,7 +199974,7 @@ dUf adM hMe dUf -vKg +wCg xtr tpO dWo @@ -200519,7 +200024,7 @@ pWR ajZ mIC tQW -feS +arG uQe wXR ssO @@ -201266,13 +200771,13 @@ djJ nMh lxb lxb -kYM -ohy +qWf +tsz qJx tsz syk bfP -tsz +arL ohy clb feS @@ -201519,13 +201024,13 @@ oiX oiX oiX wzG -scS +orL orL orL bxJ orL orL -scS +orL orL lWB oSR @@ -201537,7 +201042,7 @@ lQO iHZ iHZ gUm -nJL +jNZ gck uLq nIu @@ -201768,16 +201273,16 @@ eFj jCZ lxb fTP -iyi +amI bvi fBC -ohy -iNu -iNu -iNu -iNu +arU +arT +arQ +arN +arM +bYL iNu -ohy hMA feS fAK @@ -202021,11 +201526,11 @@ tTZ lxb xvm tSy -mFY -mFY +eRR tSy mFY mFY +mFY tSy eRR tSy @@ -202278,7 +201783,7 @@ gET gET gET gET -gET +arP qoq tSy wzz @@ -202293,7 +201798,7 @@ bOj iHZ eao jUc -jVg +jNZ gck fLX qSt @@ -202468,7 +201973,7 @@ jbW jbW jbW wdI -jbW +ata jbW sNs uGo @@ -202536,14 +202041,14 @@ tSy gCj ixd feS -bTu +rlQ wzz cVQ -qja -bFO +arF +tpG roW iHZ -fOb +iHZ iHZ wXT gck @@ -202794,7 +202299,7 @@ gVN qja xPk pJM -iHZ +arE ddX jog cay @@ -202925,7 +202430,7 @@ sYd edO aps hSG -aEE +gnF tgl nTG wfM @@ -203290,7 +202795,7 @@ wke bTX tSy ylf -fAK +arH voj hWW wzz @@ -203541,8 +203046,8 @@ gMg uNx rAO pgA +arK tXu -fAK feS vcp wzz @@ -203794,7 +203299,7 @@ blx rAO pgA muG -fAK +tXu feS gnz wzz @@ -203803,7 +203308,7 @@ fvZ mTf ovt aUr -pWg +iHZ iHZ rCr jSO @@ -203842,8 +203347,8 @@ eJh bmp mzq bYX -qgZ -iWL +bYX +vzW vzW xKt bYX @@ -203991,7 +203496,7 @@ qsu uFs bwC gQo -ruU +mTt bwC vGB gDJ @@ -204298,7 +203803,7 @@ sPv sBW tSy wzz -aEd +fVW feS kCo qNV @@ -204550,7 +204055,7 @@ wke bTX tSy wzz -fVW +aEd feS vfM qNV @@ -205029,10 +204534,10 @@ drP gGs uLI jEy -xUd -mKH +ass +asp qFA -ssZ +ash uLt wjp see @@ -205287,8 +204792,8 @@ rtQ eTL lRS bvY -kPj -see +iMT +asd apg cQy iMT @@ -205306,9 +204811,9 @@ wke bTX tSy wzz -wzz -jWG -wzz +arI +feS +oSR wzz wgx oYG @@ -205558,14 +205063,14 @@ xeK xLk vXV uQo -nlO +orL lWB lrT ieg rVh eeH wbj -fJQ +xoh rVN rSB wUD @@ -205817,7 +205322,7 @@ loC cVm hOC wbj -sMX +vAf xih pnT lfL @@ -206069,7 +205574,7 @@ wzz fri nDr wbj -lqz +kpA ofX kGU fwl @@ -206190,7 +205695,7 @@ wfM qvM fEm jKA -gnF +aEE nvf nvf nvf @@ -206299,7 +205804,7 @@ jKU wuZ hjN hjN -kZF +hjN xUd bNq lxb @@ -206545,7 +206050,7 @@ xUd xxy iKJ kPj -apg +asg wRS oHI ruX @@ -206557,13 +206062,13 @@ qtP lxb rbx tSy -abI +eRR tSy mFY mFY mFY scG -abI +eRR tSy hbb qSa @@ -206803,7 +206308,7 @@ xUd uLv hjN sYq -kZF +hjN xUd kqw lxb @@ -207321,7 +206826,7 @@ nHV nHV lmZ lyz -wro +qOI yeI bmI nsJ @@ -207549,9 +207054,9 @@ gQs mkm kht qNm -xoh +fJQ kbO -aMG +aso qke lSg djJ @@ -207573,7 +207078,7 @@ kSe kSe xgh akp -wro +qOI nsJ nsJ yeI @@ -207801,9 +207306,9 @@ cfy aEX lFC wbj -vAf +sMX bKD -yeO +aMG xYG sUN oiX @@ -208053,9 +207558,9 @@ aPJ muU mFq bSB -kpA +lqz kYE -aMG +aso lOG jDq xlT @@ -208305,36 +207810,36 @@ plb cnQ vwC vcr -mGR -mGR -wNp -kWx -kWx -cMw -uxD -kWx -kWx -cMw +eFj +eFj +eFj +eFj +eFj nza -mGR +nza +eFj +eFj +nza +nza +eFj ldt amF ukk -pBg -uXQ -rCF -rCF +tSy tod -gGP -rCF -rCF +tSy +tSy +tod +tod +tSy +tSy tod -cFR -rCF -rCF -gqt -pBg -pBg +hbb +hbb +hbb +hbb +hbb +hbb mfT mhj kpR @@ -208560,29 +208065,29 @@ jUB pid kZw jSL -czP +ase uSE kZw jOm -czP +ase uSE kZw lrI -mGR +eFj vgj amF ukk -lHK +pgA vdV -bxS +arJ nIa eJg aFx -bxS +arJ nIa kyx fQX -bxS +arJ nIa ffM wzf @@ -208795,7 +208300,7 @@ jus oIu bLp qhG -eUx +hfv bjA bjA hYW @@ -208820,11 +208325,11 @@ czP czP hdS fbr -mGR +eFj odN -amF -ukk -lHK +asa +qWf +pgA hci bxS bxS @@ -209066,29 +208571,29 @@ mNa aqV iCI iCI -jhu -iJH +mNa +mNa iCI iCI -jhu +mNa mNa waD jCI tyG kIc uUH -nMl +gcM rgy rgy -vYK -nMl +gcM +gcM rgy rgy -vYK +gcM aqR rgy rgy -vYK +gcM gcM iOL ayK @@ -209313,36 +208818,36 @@ eAf fvC kht vcr -mGR +eFj bsS -mGR +eFj fjl fjl fjl -mGR +eFj fjl fjl fjl pSX -mGR +eFj vVB sev kMD -pBg +tSy oUV eyR eyR eyR -pBg +tSy eyR eyR eyR -pBg +tSy eyR eyR eyR -pBg -pBg +tSy +tSy wog jEy wsT @@ -209597,7 +209102,7 @@ mFT dpP qhp rjI -fJQ +xoh fOh eFl kJn @@ -209605,7 +209110,7 @@ xfm uIN lrp dGA -ttH +jEp qfq qvC uHZ @@ -209704,7 +209209,7 @@ auT auT wfM bQp -szT +eYo bZe rjM rjM @@ -209817,7 +209322,7 @@ bif sSv kht wbj -vAf +sMX wbj dWc wbj @@ -209849,7 +209354,7 @@ csm gXg gXg jTw -sMX +vAf xih pnT nGX @@ -209865,9 +209370,9 @@ pnT lQe uiO gjS -trt -trt -trt +art +art +art gjS ptz miV @@ -210069,7 +209574,7 @@ bif sSv kht lrF -tcK +lqz kds wbj mhj @@ -210101,7 +209606,7 @@ jgF lnr wad wyK -rRV +kpA mpS pnT nGX @@ -210372,12 +209877,12 @@ mrh rJo cnk enP -gDa +ars hYY vpA tkl gDa -bMm +jbQ siw aLZ hSq @@ -211081,7 +210586,7 @@ ewo jse uoI dts -tHQ +jat jat gyl uba @@ -211377,14 +210882,14 @@ qkG tYA tYA tYA -lQT +hKl hYr fHS weB sWQ vpA gDa -xrf +gDa jjF tYA sqe @@ -212265,7 +211770,7 @@ unn fGn pYl hdz -gCg +fng unn unn unn @@ -212517,7 +212022,7 @@ vrX moy uSa hdz -gCg +fng unn unn unn @@ -212852,7 +212357,7 @@ bYT uiP fxS rZv -tHQ +jat aRZ vvH clM @@ -213776,7 +213281,7 @@ iiZ dsY gBk kDA -nBd +hdz unn unn unn @@ -214356,7 +213861,7 @@ acy tpx tpx mog -min +pUc ewo bKG fPT @@ -216624,7 +216129,7 @@ qKK khF khF hgT -pUc +asi ewo ewo pSe @@ -216722,7 +216227,7 @@ aBM ahQ ahQ uKg -jRp +aro ahF lhN kuw @@ -216879,7 +216384,7 @@ kht jEy voq nfl -sMX +vAf sai fPn tBY @@ -217131,7 +216636,7 @@ rjI jEy mDB cVm -lqz +kpA dDK mbU fGB @@ -217485,7 +216990,7 @@ rXF dss vAs fYs -jRp +aro uMi idR bMi @@ -217597,9 +217102,9 @@ nqz nqz hwQ kBk -iit +asW xDI -iit +asW kBk kBk xsg @@ -217861,13 +217366,13 @@ rcf ngb kBk rcf -iit +asy kBk rcf -iit +asy kBk amX -iit +asy kBk kBk unn @@ -220646,7 +220151,7 @@ eek eYj amR amP -aqY +amP vmg wmd kQu @@ -221447,7 +220952,7 @@ wCA fdi ezq bkG -xCa +arD oAL eRM gfQ @@ -223922,7 +223427,7 @@ jkP pDH cdU cIk -wDt +thL iQh jkP iQh @@ -224171,10 +223676,10 @@ tuZ tuZ nnc iQh -thL +wDt lLO aFt -wDt +thL nnc xZT jkP @@ -224423,10 +223928,10 @@ wmm tuZ iQh jkP -thL +wDt lLO cIk -wDt +thL jkP iQh iQh @@ -224776,8 +224281,8 @@ djn pja pja pja -aoA -pja +arr +djn pja pja eVH @@ -225009,7 +224514,7 @@ wwg wwg wUM dsS -aqs +dsS dsS aoH hcI @@ -225029,8 +224534,8 @@ aoj aoB hcI hcI -dsS -dsS +arq +aot dsS qfF npx diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfadmin.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfadmin.dmm deleted file mode 100644 index a89afc889652..000000000000 --- a/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfadmin.dmm +++ /dev/null @@ -1,6986 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/barricade/handrail/strata{ - layer = 4.1 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 11; - pixel_x = -5 - }, -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"ab" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ - icon_state = "bluemultimonitorbig_on"; - light_color = "#00f4ff"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_x = 1; - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/structure/sign/banners/clf_flag{ - pixel_y = 32 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"ac" = ( -/obj/effect/decal/hybrisa/WY/WY1{ - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"ad" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"ae" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"af" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"ag" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"ah" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"ai" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"aj" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"ak" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"al" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -4; - pixel_y = 20 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"am" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"an" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/hallway) -"ao" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"ap" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"aq" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"at" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"aw" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - icon_state = "grime3"; - pixel_x = -10; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"ax" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 4; - buckling_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"az" = ( -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -14; - buckling_x = -14 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"aC" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, -/area/lv759/indoors/weyyu_office/floor) -"aH" = ( -/obj/item/tool/warning_cone{ - pixel_y = 17 - }, -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"aR" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/west, -/obj/structure/sign/safety/conference_room{ - pixel_x = 2; - pixel_y = 32 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office/pressroom) -"aT" = ( -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_8"; - pixel_y = 12 - }, -/obj/item/tool/pen/multicolor/fountain, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"ba" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/breakroom) -"bb" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"bh" = ( -/turf/open/floor/plating/platingdmg3, -/area/lv759/indoors/weyyu_office/hallway) -"bk" = ( -/obj/structure/bed/sofa/hybrisa/misc/bench{ - pixel_x = 7; - dir = 1; - layer = 3 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_x = -2; - color = "#a6aeab" - }, -/obj/structure/window/reinforced{ - color = "#a6aeab" - }, -/obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_street) -"bx" = ( -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/central_streets) -"bH" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/vip) -"bI" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, -/area/lv759/indoors/weyyu_office/floor) -"bQ" = ( -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 - }, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"bR" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/pwine, -/obj/structure/sign/poster/wylogo{ - pixel_y = 32; - layer = 2.9 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"bW" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"bZ" = ( -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_west_street) -"ce" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/central_streets) -"cf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/stairs{ - color = "#b7b8b2" - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_street) -"cg" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"ch" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/floor) -"cj" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"co" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ - pixel_y = 28 - }, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"cx" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"cH" = ( -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/pressroom) -"cN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"cS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"cX" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/obj/item/weapon/gun/smg/p90, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"cY" = ( -/obj/item/device/toner{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"de" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"dj" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/item/paper{ - layer = 2 - }, -/obj/effect/decal/hybrisa/trash, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"dm" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/breakroom) -"do" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"dp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"dt" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"dy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetalcorner/east, -/area/lv759/indoors/weyyu_office/pressroom) -"dA" = ( -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"dE" = ( -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/h_chocolate{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"dI" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"dQ" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/vehicle_spawner/clf_van/fixed, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"dR" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/obj/effect/landmark/objective_landmark/far, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/storage/box/stompers, -/obj/effect/landmark/objective_landmark/far, -/obj/effect/landmark/objective_landmark/far, -/obj/item/storage/box/kit/pursuit, -/obj/item/spacecash/c1000{ - worth = 10000; - name = "10000 dollars" - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"dW" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"dZ" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/effect/landmark/survivor_spawner/clf/hybrisa, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"ea" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"ed" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -4; - buckling_x = -4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"ei" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"el" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/clf, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"em" = ( -/obj/structure/prop/hybrisa/furniture/tables/tableblack/blacktablecomputer{ - pixel_x = 2 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"en" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10; - pixel_x = 12 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"eo" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/outdoors/colony_streets/central_streets) -"eq" = ( -/obj/structure/roof/hybrisa/lattice_prop/lattice_4{ - pixel_y = 16; - layer = 6 - }, -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office) -"er" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"ev" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ - pixel_x = -2; - pixel_y = 20 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_15" - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/shard, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_street) -"ex" = ( -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"ey" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"eB" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/breakroom) -"eC" = ( -/obj/structure/machinery/disposal{ - pixel_x = -4 - }, -/obj/item/trash/hybrisa/cuppa_joes_static/lid{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/northwest, -/area/lv759/indoors/weyyu_office) -"eD" = ( -/obj/structure/machinery/light/spot{ - dir = 8; - pixel_x = -8 - }, -/obj/effect/landmark/corpsespawner/hybrisa/civilian_office, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office/pressroom) -"eE" = ( -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/structure/machinery/hybrisa/coffee_machine{ - pixel_x = -4; - layer = 3.3; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 12 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"eF" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -4; - buckling_x = -4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"eK" = ( -/obj/item/clipboard{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/paper{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/tool/pen/blue{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/obj/structure/barricade/handrail/strata, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 22; - pixel_x = 12 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"eO" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_5"; - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"eP" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/southeast, -/area/lv759/indoors/weyyu_office) -"eR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 9 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/north, -/area/lv759/indoors/weyyu_office/hallway) -"eU" = ( -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"eV" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"fa" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, -/area/lv759/indoors/weyyu_office/floor) -"fb" = ( -/obj/item/clipboard{ - pixel_y = 6; - pixel_x = -3 - }, -/obj/item/paper{ - pixel_y = 7; - pixel_x = -3 - }, -/obj/item/tool/pen/multicolor/fountain{ - pixel_y = 9; - pixel_x = -2 - }, -/obj/structure/prop/hybrisa/furniture/tables/tableblack/blacktablecomputer{ - dir = 1; - layer = 2.9; - pixel_x = -2 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"ff" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"fg" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"fk" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/pressroom) -"fF" = ( -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/item/card/id/guest{ - pixel_y = 12; - pixel_x = -4 - }, -/obj/item/tool/pen/blue{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"fG" = ( -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"fN" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/trash, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"fX" = ( -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"gq" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/colorable_rug{ - color = "#3d3d3d"; - layer = 2.01; - dir = 1; - name = "rubber mat"; - pixel_y = -40; - pixel_x = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"gs" = ( -/obj/effect/decal/hybrisa/deco_edging/corner{ - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/northwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"gt" = ( -/obj/item/folder/black{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/barricade/handrail/strata, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"gA" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"gC" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/turf/open/floor/hybrisa/metal/bluemetal1/southwest, -/area/lv759/indoors/weyyu_office) -"gI" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"gJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"gM" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = -6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, -/area/lv759/indoors/weyyu_office/floor) -"gO" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"gX" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/west, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"hg" = ( -/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard1{ - dir = 10; - pixel_y = 34; - lazy_nodes = 0; - layer = 3 - }, -/obj/item/spacecash/ewallet{ - pixel_y = 8 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/central_streets) -"hk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 14; - pixel_x = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 10 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"hp" = ( -/obj/item/storage/briefcase{ - pixel_y = 12 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/hallway) -"hq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"hr" = ( -/obj/structure/prop/hybrisa/vehicles/Meridian/WeylandYutani{ - dir = 8; - pixel_y = 3 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"hy" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 - }, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - icon_state = "wy_water_crushed" - }, -/obj/effect/hybrisa/misc/fake/pipes/pipe3{ - dir = 8 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/platform/metal/hybrisa/metalplatform1/west, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ - pixel_y = 28 - }, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"hQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"hS" = ( -/obj/structure/window_frame/hybrisa/colony/office, -/obj/item/shard, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/floor) -"hU" = ( -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"hX" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_y = 20; - pixel_x = -4 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"ih" = ( -/obj/structure/machinery/colony_floodlight/traffic/alt{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 4 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"ii" = ( -/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ - dir = 1; - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"ij" = ( -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"iA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"iB" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -4; - buckling_x = -4 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"iF" = ( -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"iK" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"iN" = ( -/obj/structure/machinery/power/apc/no_power/south, -/obj/structure/pipes/standard/manifold/hidden/dark, -/obj/effect/landmark/corpsespawner/clf, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"iO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetalcorner/north, -/area/lv759/indoors/weyyu_office/pressroom) -"iQ" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_street) -"iW" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/supervisor) -"ja" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"jh" = ( -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"jn" = ( -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/obj/structure/sign/poster/wylogo{ - pixel_y = 32; - layer = 2.9 - }, -/turf/open/hybrisa/street/cement3, -/area/lv759/outdoors/colony_streets/central_streets) -"jq" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"jr" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"jB" = ( -/obj/item/paper/crumpled, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, -/area/lv759/indoors/weyyu_office/floor) -"jR" = ( -/obj/item/paper/crumpled{ - pixel_x = 20 - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = 8; - pixel_y = 2; - layer = 4.01 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/card/id/guest{ - pixel_y = 10; - pixel_x = 2 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetalcorner, -/area/lv759/indoors/weyyu_office) -"kd" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"kh" = ( -/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ - dir = 1; - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -4 - }, -/obj/structure/sign/safety/conference_room{ - pixel_y = 8; - pixel_x = 32 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"ki" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 4; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"kl" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 8 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"km" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - pixel_y = 2 - }, -/obj/item/storage/fancy/cigar/tarbacks{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"ko" = ( -/obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/barricade/metal/wired, -/turf/open/floor/hybrisa/metal/bluemetal1/northwest, -/area/lv759/indoors/weyyu_office/pressroom) -"kC" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 8 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"kE" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 22; - pixel_x = -23; - layer = 4 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 6; - pixel_y = 18; - layer = 3.21 - }, -/obj/effect/landmark/objective_landmark/close{ - layer = 5 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"kK" = ( -/obj/item/tool/warning_cone{ - layer = 4; - pixel_x = -20 - }, -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"kL" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"kP" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 11; - pixel_y = 16; - layer = 4 - }, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -7; - pixel_y = 16; - layer = 4 - }, -/obj/effect/decal/hybrisa/trash, -/obj/item/trash/cigbutt, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office) -"kR" = ( -/obj/effect/decal/hybrisa/WY/WYworn{ - pixel_y = 16 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"kU" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4; - color = "#a6aeab" - }, -/obj/structure/window/reinforced{ - color = "#a6aeab" - }, -/obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_street) -"kW" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"lk" = ( -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"lr" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"ls" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 8; - buckling_x = 8 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"lt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_street) -"lw" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"lB" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3" - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, -/area/lv759/indoors/weyyu_office/floor) -"lE" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_8"; - pixel_y = 12 - }, -/obj/effect/decal/hybrisa/dirt_2, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"lJ" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/corporate{ - layer = 2.9; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/central_streets) -"lL" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/vip) -"lN" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"lO" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"lT" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/item/shard, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/item/stack/rods{ - pixel_y = 14 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"lV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 11; - pixel_x = -5 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 7; - pixel_y = 30 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"lZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"ma" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/faxmachine/corporate{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"mb" = ( -/obj/structure/machinery/light/spot{ - dir = 4; - pixel_x = 8; - pixel_y = 20 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"mf" = ( -/obj/structure/roof/hybrisa/lattice_prop/lattice_5{ - pixel_y = 16; - layer = 6 - }, -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/pressroom) -"mg" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 22; - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"mk" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"mo" = ( -/obj/structure/bed/chair/comfy/hybrisa/black, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/northeast, -/area/lv759/indoors/weyyu_office/vip) -"mr" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4; - layer = 4.12 - }, -/obj/structure/sign/poster/wylogo{ - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/turf/open/floor/prison/darkyellow2/west, -/area/lv759/indoors/weyyu_office/pressroom) -"mt" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/roof/hybrisa/lattice_prop/lattice_6{ - pixel_y = 16; - layer = 6 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"my" = ( -/obj/item/paper/crumpled{ - pixel_x = 9 - }, -/obj/effect/decal/hybrisa/trash, -/turf/open/floor/hybrisa/metal/bluemetal1/northeast, -/area/lv759/indoors/weyyu_office) -"mI" = ( -/obj/item/device/megaphone{ - pixel_y = 10 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"mO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/hallway) -"mS" = ( -/obj/structure/stairs{ - color = "#b7b8b2" - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"nd" = ( -/turf/open/floor/hybrisa/metal/bluemetal1/northeast, -/area/lv759/indoors/weyyu_office) -"ng" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"nl" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"nx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetalcorner/west, -/area/lv759/indoors/weyyu_office/pressroom) -"nG" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 1 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_street) -"nH" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/prop/hybrisa/misc/trash/green, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_5"; - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_street) -"nM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"nP" = ( -/obj/structure/prop/hybrisa/vehicles/Meridian/Orange{ - dir = 8; - pixel_y = 2 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"nQ" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"nW" = ( -/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard4{ - pixel_y = 18; - pixel_x = -8; - layer = 9 - }, -/obj/structure/roof/hybrisa/lattice_prop/lattice_6{ - pixel_y = 16; - layer = 6 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"nY" = ( -/obj/structure/disposalpipe/segment, -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"oj" = ( -/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"ol" = ( -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/folder/white, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"on" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"oq" = ( -/obj/structure/roof/hybrisa/lattice_prop/lattice_4{ - pixel_y = 16; - layer = 6 - }, -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/breakroom) -"ot" = ( -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"oC" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/south, -/area/lv759/indoors/weyyu_office/vip) -"oN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"oP" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 11; - pixel_x = -5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"oU" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"oV" = ( -/obj/structure/machinery/photocopier/wyphotocopier{ - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"oX" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3" - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"pf" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/item/paper/crumpled, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_4" - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"pk" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, -/area/lv759/indoors/weyyu_office/supervisor) -"pm" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/vip) -"pu" = ( -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"pw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"pA" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_4"; - pixel_y = 14 - }, -/obj/structure/machinery/photocopier{ - pixel_x = -4; - pixel_y = 1 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/west, -/area/lv759/indoors/weyyu_office) -"pH" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"pJ" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_2"; - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"pK" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"pL" = ( -/turf/template_noop, -/area/template_noop) -"pO" = ( -/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble11{ - pixel_x = -16; - pixel_y = 18 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"pV" = ( -/obj/structure/prop/invuln/fire, -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/pressroom) -"pX" = ( -/obj/structure/pipes/standard/manifold/hidden/dark, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"pY" = ( -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/trash/cigbutt, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 12 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"qp" = ( -/obj/structure/prop/hybrisa/furniture/tables/tableblack{ - dir = 1 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/tool/pen/multicolor/fountain{ - pixel_y = 7; - pixel_x = 3 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -11; - pixel_y = 18 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"qq" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 17; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = 4 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"qr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 11; - pixel_x = -5 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"qv" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office) -"qw" = ( -/obj/structure/bed/chair/comfy/hybrisa/black{ - dir = 1; - layer = 3.1; - pixel_y = 12; - buckling_y = 12 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/northwest, -/area/lv759/indoors/weyyu_office/vip) -"qA" = ( -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/colony_streets/north_street) -"qB" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/obj/item/device/m56d_gun/mounted, -/obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"qC" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"qG" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ - pixel_y = 41; - pixel_x = 9 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8; - pixel_y = 21; - layer = 3.20; - density = 0 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"qN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 14; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"qV" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 9 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"re" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/weapon/gun/rifle/mar40/lmg{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"rq" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"rr" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/northwest, -/area/lv759/outdoors/colony_streets/central_streets) -"ru" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_street) -"rI" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"rM" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1/east, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_13" - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_17"; - pixel_y = 12 - }, -/obj/item/trash/hotdog, -/obj/item/hybrisa/misc/trash_bag_full_prop{ - pixel_x = -6; - pixel_y = 20 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_street) -"rO" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/floor) -"rP" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office) -"rR" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"rT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/briefcase{ - pixel_y = 18; - layer = 2.9; - pixel_x = -4 - }, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 12 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"sd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - pixel_x = 7; - pixel_y = 10; - buckling_x = 7; - buckling_y = 10 - }, -/obj/effect/decal/hybrisa/trash, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"sf" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"sj" = ( -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/item/reagent_container/food/drinks/cans/classcola{ - icon_state = "cola_crushed" - }, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/platform/metal/hybrisa/metalplatform1/east, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/item/hybrisa/misc/trash_bag_full_prop{ - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ - pixel_y = 28 - }, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"sD" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"sE" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"sG" = ( -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"sM" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_x = -1 - }, -/obj/structure/machinery/light/spot{ - dir = 8; - pixel_x = -8 - }, -/obj/effect/landmark/corpsespawner/hybrisa_goon/lead, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office/pressroom) -"sX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble10{ - pixel_x = -16; - pixel_y = 18 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_street) -"sY" = ( -/obj/structure/bed/chair/comfy/hybrisa/black{ - dir = 1; - layer = 3.1; - pixel_y = 12; - buckling_y = 12 - }, -/obj/item/storage/briefcase{ - layer = 3; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/northwest, -/area/lv759/indoors/weyyu_office/vip) -"tc" = ( -/turf/open/floor/hybrisa/metal/grated, -/area/lv759/outdoors/colony_streets/central_streets) -"tm" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"tr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_25"; - pixel_x = 16; - pixel_y = 19 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"tv" = ( -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"tx" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"tF" = ( -/obj/item/tool/pen{ - pixel_x = 12; - pixel_y = 8 - }, -/obj/item/weapon/gun/smg/fp9000, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/west, -/area/lv759/indoors/weyyu_office/vip) -"tK" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/cement1, -/area/lv759/outdoors/colony_streets/north_street) -"tM" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/north, -/area/lv759/indoors/weyyu_office/hallway) -"tP" = ( -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) -"tS" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"tY" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/pressroom) -"uc" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/item/paper, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_2"; - pixel_y = 12 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"uo" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"up" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"ut" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/east, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"uA" = ( -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"uE" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/landmark/survivor_spawner/clf/hybrisa, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"uG" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"uN" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -14; - pixel_y = 22 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/east, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"uQ" = ( -/obj/structure/machinery/photocopier/wyphotocopier{ - pixel_y = 6; - pixel_x = -1 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, -/area/lv759/indoors/weyyu_office/floor) -"uU" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"va" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 4; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"vb" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/sign/safety/east{ - pixel_x = -17; - pixel_y = 32 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"vf" = ( -/obj/structure/largecrate/random/barrel/black, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"vh" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"vk" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/clf_medic/hybrisa, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"vC" = ( -/obj/structure/prop/hybrisa/misc/firehydrant{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_west_street) -"vD" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"vG" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/lv759/indoors/weyyu_office/pressroom) -"vH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 11; - pixel_x = -4 - }, -/obj/item/tool/mop{ - pixel_y = 3 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32; - layer = 2.8 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/metal/bluemetalcorner, -/area/lv759/indoors/weyyu_office/pressroom) -"vJ" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/pressroom) -"vL" = ( -/obj/structure/window/framed/hybrisa/colony/reinforced, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/supervisor) -"vM" = ( -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/hallway) -"vN" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"vP" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/stairs{ - color = "#b7b8b2"; - dir = 1 - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_street) -"vS" = ( -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/central_streets) -"vX" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/obj/structure/largecrate/supply/ammo/shotgun, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/incendiary{ - pixel_y = -12; - pixel_x = -8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"wb" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"we" = ( -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/pizzabox/pizza_galaxy/vegetable{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"wg" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 4; - pixel_y = 2; - pixel_x = 2 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"wn" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_15"; - pixel_x = -8; - pixel_y = 12 - }, -/obj/structure/prop/hybrisa/misc/trash/green{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"wq" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 7; - pixel_y = 30 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"ws" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -6; - pixel_y = 18; - layer = 2.9 - }, -/obj/structure/closet/walllocker{ - pixel_y = 30; - opened = 1 - }, -/obj/structure/bed/chair/comfy/hybrisa/red, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"wy" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/breakroom) -"wz" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, -/area/lv759/indoors/weyyu_office/floor) -"wE" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"wM" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southeast, -/area/lv759/indoors/weyyu_office/floor) -"wO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, -/area/lv759/indoors/weyyu_office/floor) -"wW" = ( -/obj/effect/decal/hybrisa/trash{ - dir = 4; - icon_state = "trash_11" - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"xe" = ( -/obj/effect/decal/hybrisa/deco_edging{ - dir = 8; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"xl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_street) -"xm" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_y = 13; - pixel_x = -7 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/fancy/cigar/matchbook/wy_gold{ - pixel_x = 13; - pixel_y = 3 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/obj/structure/surface/table/reinforced/black, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"xn" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 8; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"xp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"xR" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4; - layer = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellow2/west, -/area/lv759/indoors/weyyu_office/pressroom) -"xS" = ( -/turf/open/floor/hybrisa/metal/bluemetal1/northwest, -/area/lv759/indoors/weyyu_office) -"xT" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/floor) -"yh" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"yi" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"yp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"yt" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"yz" = ( -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/effect/decal/hybrisa/trash, -/obj/effect/decal/hybrisa/trash{ - dir = 8; - icon_state = "trash_11" - }, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"yD" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, -/area/lv759/indoors/weyyu_office/floor) -"yF" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/southeast, -/area/lv759/indoors/weyyu_office) -"yJ" = ( -/obj/item/paper, -/obj/item/paper/crumpled, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"yP" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"yR" = ( -/obj/structure/prop/hybrisa/misc/cabinet{ - pixel_x = -6; - pixel_y = 15 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_4" - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"yW" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 4 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"zb" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/turf/open/floor/hybrisa/metal/grated, -/area/lv759/outdoors/colony_streets/central_streets) -"zc" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -6; - pixel_y = 18 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"zj" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/west, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"zk" = ( -/obj/structure/machinery/light/blue{ - dir = 1 - }, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"zo" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"zp" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/hallway) -"zt" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/faxmachine/corporate{ - pixel_y = 4 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"zA" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/breakroom) -"zB" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"zC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office/hallway) -"zG" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 1 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"zP" = ( -/turf/open/floor/hybrisa/carpet/rug_colorable/black/south, -/area/lv759/indoors/weyyu_office) -"zQ" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"zR" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"zS" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"zT" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/east, -/obj/structure/roof/hybrisa/lattice_prop/lattice_6{ - pixel_y = 16; - layer = 6 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"zX" = ( -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"zZ" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office) -"Ac" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/platform/metal/hybrisa/metalplatform1/east, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/cigbutt, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/shard, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_street) -"Ae" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - pixel_x = 7; - pixel_y = 10; - buckling_x = 7; - buckling_y = 10 - }, -/obj/item/paper/crumpled, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, -/area/lv759/indoors/weyyu_office/floor) -"Am" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"Aq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_street) -"Aw" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"Ax" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/sign/poster/wylogo{ - pixel_y = 32; - layer = 2.9 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"AK" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3" - }, -/obj/structure/machinery/colony_floodlight/traffic{ - dir = 4; - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"AL" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ - light_color = "#00f4ff"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_x = 4; - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/structure/platform/metal/hybrisa/metalplatform3/west, -/obj/structure/sign/banners/clf_flag{ - pixel_y = 32 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"AR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southeast, -/area/lv759/indoors/weyyu_office/floor) -"AV" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 2 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/metal/bluemetal1/northwest, -/area/lv759/indoors/weyyu_office) -"AW" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"Bb" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 11; - pixel_x = -5 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -7; - pixel_y = 2 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"Bg" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"Bh" = ( -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/eat, -/obj/effect/decal/hybrisa/dirt, -/obj/item/shard, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"Bi" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/supervisor) -"Bo" = ( -/obj/effect/decal/hybrisa/deco_edging{ - dir = 1; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"Bs" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office/pressroom) -"By" = ( -/obj/structure/bed/chair/comfy/hybrisa/black{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/southeast, -/area/lv759/indoors/weyyu_office/vip) -"BL" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -4; - buckling_x = -4 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"BP" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"BS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"BT" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 8 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"Cb" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"Cc" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/hybrisa/metal/grated, -/area/lv759/outdoors/colony_streets/north_street) -"Cf" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - welded = 1 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/pressroom) -"Co" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 1 - }, -/obj/structure/largecrate/empty/case/double, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"Ct" = ( -/obj/effect/decal/hybrisa/deco_edging/corner{ - dir = 1; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/northeast, -/area/lv759/outdoors/colony_streets/north_west_street) -"Cw" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -7; - pixel_y = 2; - layer = 2.9 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/milk{ - layer = 2.9 - }, -/obj/structure/machinery/hybrisa/coffee_machine{ - pixel_x = -4; - pixel_y = -14 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"Cy" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"CA" = ( -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -4; - buckling_x = -4 - }, -/obj/effect/landmark/survivor_spawner/clf/hybrisa, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"CM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/obj/effect/hybrisa/misc/fake/wire/blue{ - dir = 4; - pixel_y = 6 - }, -/obj/effect/hybrisa/misc/fake/wire/red{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"CN" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -14; - buckling_x = -14 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 4; - buckling_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Df" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clipboard{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue{ - pixel_x = -14; - pixel_y = 6 - }, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"Dh" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 8; - buckling_x = 8 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Dl" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/purewhite, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"Dr" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/faxmachine/corporate{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/paper{ - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Dy" = ( -/obj/item/ammo_casing, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/north, -/area/lv759/indoors/weyyu_office/vip) -"DD" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"DF" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"DG" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_25"; - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"DM" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"DX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - pixel_x = 7; - pixel_y = 10; - buckling_x = 7; - buckling_y = 10 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, -/area/lv759/indoors/weyyu_office/floor) -"Ec" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/machinery/power/apc/no_power/south, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Ed" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"Ee" = ( -/obj/effect/landmark/corpsespawner/hybrisa/civilian_office, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office/pressroom) -"Ev" = ( -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/tool/pen, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 12 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"Ew" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/closet/crate/green, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"Ey" = ( -/obj/effect/decal/hybrisa/deco_edging{ - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"EF" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/noticeboard{ - pixel_y = 33; - icon_state = "notices_4"; - desc = null; - name = "sticky notes" - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"EL" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"EM" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8; - layer = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellow2/east, -/area/lv759/indoors/weyyu_office/pressroom) -"EN" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/item/shard, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/hallway) -"Fj" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/c_tube, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_14"; - pixel_y = 12 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/trash/green, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_street) -"Fn" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"Fu" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"Fw" = ( -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"FA" = ( -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"FC" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_y = 9; - pixel_x = -22 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"FD" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_x = -1 - }, -/obj/structure/machinery/light/spot{ - dir = 8; - pixel_x = -8 - }, -/obj/effect/landmark/corpsespawner/hybrisa/civilian_office, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office/pressroom) -"FG" = ( -/obj/structure/window_frame/hybrisa/colony/office, -/obj/item/shard, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/floor) -"FH" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"FM" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/floor) -"Gv" = ( -/obj/structure/machinery/photocopier{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"Gw" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"Gx" = ( -/obj/effect/landmark/corpsespawner/hybrisa_goon, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office/pressroom) -"Gz" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/clf, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"GC" = ( -/obj/effect/decal/hybrisa/deco_edging/corner{ - dir = 4; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/southeast, -/area/lv759/outdoors/colony_streets/north_west_street) -"GE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"GI" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"GO" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20; - layer = 3.20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20; - layer = 3.20 - }, -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, -/area/lv759/indoors/weyyu_office/floor) -"GP" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 4 - }, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"GQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/personal/autoname, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/vip) -"Hb" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -14; - buckling_x = -14 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Ht" = ( -/obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/barricade/metal/wired, -/turf/open/floor/hybrisa/metal/bluemetal1/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"Hx" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"Hy" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/trash/cigbutt, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/hallway) -"HA" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"HC" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/floor) -"HJ" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -6; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 10; - pixel_y = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"HN" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 4; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"HO" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"HQ" = ( -/obj/effect/decal/hybrisa/trash{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"HW" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"Ia" = ( -/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright{ - layer = 4 - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"Ib" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/device/flashlight/pen, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/hybrisa/metal/bluemetalcorner/east, -/area/lv759/indoors/weyyu_office/hallway) -"Ie" = ( -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = 5 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"If" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/east, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"In" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"Is" = ( -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 5; - pixel_y = 21 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Ix" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/machinery/light/spot{ - dir = 4; - pixel_x = 8; - pixel_y = 20 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"Iz" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"IF" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"IH" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/window/reinforced, -/obj/structure/machinery/prop/almayer/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - dir = 1; - icon_state = "alert:2"; - name = "inventory computer" - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, -/area/lv759/indoors/weyyu_office/floor) -"IJ" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/faxmachine/corporate{ - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, -/area/lv759/indoors/weyyu_office/floor) -"IN" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 8; - buckling_x = 8 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -14; - buckling_x = -14 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"IS" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 - }, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Je" = ( -/obj/structure/surface/rack, -/obj/item/device/toner, -/obj/item/document_objective/folder{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/folder/black{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = -32; - layer = 3.2 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Jn" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"Jr" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"JJ" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"JM" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/floor) -"JO" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office/pressroom) -"JS" = ( -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/tool/stamp/weyyu{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/tool/pen/multicolor/fountain{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"JT" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"JX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 2; - pixel_x = 4 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Ka" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"Ki" = ( -/obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/supervisor) -"Ko" = ( -/obj/item/storage/briefcase, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"Kp" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"Kq" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"Kv" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/pressroom) -"Ky" = ( -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/hallway) -"KC" = ( -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"KD" = ( -/obj/item/stack/sheet/cardboard/small_stack, -/obj/item/paper{ - layer = 2 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"KO" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/tool/pen, -/obj/structure/prop/hybrisa/misc/machinery/screens/frame{ - pixel_y = 32 - }, -/obj/structure/prop/hybrisa/misc/blood/blood3, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"KR" = ( -/obj/structure/machinery/faxmachine{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"KY" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Lb" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/kitchen/tray{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 16; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 7; - pixel_y = 21 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 17; - pixel_y = 20 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_y = 5 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = -32; - layer = 3.2 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Le" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"Lq" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper/crumpled{ - pixel_x = 9 - }, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 8; - pixel_y = 14; - layer = 4 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"Ly" = ( -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) -"LE" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -6; - pixel_y = 18; - layer = 3.21 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3" - }, -/obj/effect/decal/hybrisa/trash, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, -/obj/effect/landmark/corpsespawner/clf, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"LO" = ( -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"LT" = ( -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 20; - pixel_y = 18 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_half_br"; - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = -3; - pixel_y = 19 - }, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_y = 3 - }, -/obj/item/spacecash/ewallet{ - pixel_x = 11; - pixel_y = -2 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"Ma" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 9 - }, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"Mb" = ( -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/machinery/light/small, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"Mc" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 4 - }, -/obj/item/shard, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, -/area/lv759/indoors/weyyu_office/floor) -"Md" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"Mf" = ( -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"Mn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/southeast, -/area/lv759/indoors/weyyu_office) -"Mq" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -14; - buckling_x = -14 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 4; - buckling_x = 4 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Mt" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office) -"Mu" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"Mv" = ( -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"Mw" = ( -/obj/structure/disposalpipe/tagger{ - dir = 4 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 1 - }, -/obj/effect/hybrisa/misc/fake/wire/blue{ - pixel_x = -4 - }, -/obj/effect/hybrisa/misc/fake/wire/red{ - pixel_x = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"Mx" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"Mz" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"MS" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/hallway) -"MT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 9; - pixel_x = 5 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"MY" = ( -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"MZ" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Nb" = ( -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/vip) -"Nc" = ( -/obj/item/tool/mop{ - pixel_y = 23 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office) -"Ne" = ( -/obj/structure/machinery/photocopier/wyphotocopier, -/obj/item/weapon/gun/smg/p90, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Nn" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) -"Np" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) -"Nr" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/cigbutt, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"Ny" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/device/flashlight/flare/on, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"NJ" = ( -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -12; - pixel_y = 4 - }, -/obj/effect/decal/hybrisa/WY/WY1{ - pixel_x = -18; - pixel_y = 8 - }, -/obj/effect/landmark/survivor_spawner/clf_lead/hybrisa, -/obj/structure/prop/hybrisa/misc/blood/blood1{ - layer = 3.1; - pixel_y = 38 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"NK" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"NO" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 1 - }, -/obj/item/tool/warning_cone{ - layer = 2; - pixel_x = -20 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) -"NV" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"NZ" = ( -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, -/area/lv759/indoors/weyyu_office/floor) -"Oe" = ( -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -7 - }, -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"Om" = ( -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -14; - buckling_x = -14 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 4; - buckling_x = 4 - }, -/obj/effect/landmark/survivor_spawner/clf/hybrisa, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Oo" = ( -/obj/structure/machinery/atm{ - icon = 'icons/obj/structures/props/atm.dmi'; - pixel_x = 6; - pixel_y = 4 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_4"; - pixel_y = 14 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"Ot" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/extinguisher_cabinet/alt{ - pixel_y = 30; - pixel_x = -12 - }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office) -"Oy" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"Oz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_west_street) -"OA" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/effect/hybrisa/misc/fake/pipes/pipe3{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"OB" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"OL" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, -/area/lv759/indoors/weyyu_office/supervisor) -"OM" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/platform/metal/hybrisa/metalplatform1/east, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"ON" = ( -/obj/structure/bed/chair{ - dir = 8; - layer = 2; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"OU" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"OW" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -22 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Pi" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_y = 3 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"Pk" = ( -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"Pl" = ( -/turf/open/floor/hybrisa/carpet/rug_colorable/black/east, -/area/lv759/indoors/weyyu_office/vip) -"Px" = ( -/turf/open/hybrisa/street/sidewalk/northeast, -/area/lv759/outdoors/colony_streets/north_west_street) -"PA" = ( -/obj/effect/decal/hybrisa/deco_edging{ - dir = 4; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) -"PJ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -8; - pixel_y = 1 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - icon_state = "grime1" - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"PK" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/north, -/obj/structure/platform/metal/hybrisa/metalplatform6, -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"PR" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/generic{ - color = "#5d524b"; - alpha = 155 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_street) -"PU" = ( -/obj/item/folder/black{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/tool/pen{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"PW" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"PZ" = ( -/obj/effect/decal/hybrisa/road/lines2{ - pixel_y = 2 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -9; - pixel_y = 11 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -22 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Qh" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32; - pixel_x = 8 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/central_streets) -"Qi" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"Qo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/hybrisa/metal/bluemetal1/north, -/area/lv759/indoors/weyyu_office/hallway) -"Qw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/hybrisa/misc/fake/wire/red{ - dir = 4 - }, -/obj/effect/hybrisa/misc/fake/wire/blue{ - dir = 4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/colony_streets/north_street) -"Qy" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"QH" = ( -/obj/structure/bed/stool{ - buckling_y = 14; - pixel_y = 13; - pixel_x = 6 - }, -/obj/structure/machinery/power/apc/no_power/east, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/north, -/area/lv759/indoors/weyyu_office) -"QI" = ( -/obj/item/storage/lockbox/loyalty{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/structure/bookcase{ - icon_state = "book-5"; - pixel_x = -4; - pixel_y = 20; - density = 0 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"QK" = ( -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"QQ" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 4; - buckling_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"QR" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 1 - }, -/obj/structure/platform/metal/hybrisa/metalplatform6/west, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_street) -"QS" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications/simple{ - dir = 8; - pixel_y = -2 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"QT" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/shard, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"QV" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_7"; - pixel_y = 12 - }, -/obj/structure/machinery/light, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"QX" = ( -/obj/structure/bed/chair/comfy/hybrisa/black, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/northeast, -/area/lv759/indoors/weyyu_office/vip) -"Ra" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/east, -/area/lv759/indoors/weyyu_office) -"Rb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"Re" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/ammo_magazine/rifle/mar40, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Rk" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"Rq" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"Rr" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_y = -8; - pixel_x = 8 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Rx" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Rz" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"RE" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - pixel_y = 32; - layer = 3.2 - }, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"RK" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/indoors/weyyu_office/floor) -"RL" = ( -/obj/structure/roof/hybrisa/lattice_prop/lattice_6{ - pixel_y = 16; - layer = 6 - }, -/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard5{ - dir = 1; - pixel_y = 18; - layer = 9 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"RP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"RS" = ( -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/tool/pen/blue{ - pixel_x = -9; - pixel_y = -1 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/east, -/area/lv759/indoors/weyyu_office) -"Se" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office) -"Sh" = ( -/obj/item/paper/crumpled, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Si" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"Sl" = ( -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" - }, -/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, -/area/lv759/indoors/weyyu_office/breakroom) -"Sm" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier/wyphotocopier{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/supervisor) -"SH" = ( -/obj/effect/decal/hybrisa/trash, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 9 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, -/area/lv759/indoors/weyyu_office/floor) -"SP" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_y = -32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"ST" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"SV" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/effect/decal/hybrisa/deco_edging{ - dir = 8; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) -"SW" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"SZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, -/area/lv759/indoors/weyyu_office/floor) -"Tc" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"Tg" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/bed/chair/office/light{ - layer = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Th" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/metal/wired, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Tn" = ( -/turf/open/hybrisa/street/sidewalk/northwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"To" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/storage/fancy/cigar/matchbook/exec_select{ - pixel_x = 11; - pixel_y = 5 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"Ts" = ( -/obj/structure/bed/chair/comfy/hybrisa/black, -/obj/item/trash/cigbutt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 7; - pixel_y = 30 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/northeast, -/area/lv759/indoors/weyyu_office/vip) -"Tt" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) -"TI" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"TJ" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"TK" = ( -/obj/structure/prop/ice_colony/tiger_rug, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, -/area/lv759/indoors/weyyu_office/supervisor) -"TL" = ( -/obj/structure/prop/hybrisa/misc/concretestatue{ - layer = 5; - pixel_y = 16 - }, -/turf/open/hybrisa/street/sidewalk/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"TO" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/item/weapon/gun/smg/p90, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"TQ" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/hybrisa/metal/bluemetal1/southeast, -/area/lv759/indoors/weyyu_office/hallway) -"TR" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/platform/metal/hybrisa/metalplatform1/east, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/item/trash/eat{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"TU" = ( -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/effect/hybrisa/misc/fake/pipes/pipe3{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"TV" = ( -/turf/open/hybrisa/street/sidewalk/southeast, -/area/lv759/outdoors/colony_streets/north_west_street) -"TW" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"Uf" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/hallway) -"Ug" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 12 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Ui" = ( -/obj/effect/landmark/survivor_spawner/clf/hybrisa, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Uk" = ( -/obj/structure/machinery/light/blue{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/central_streets) -"Ul" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"Ut" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"Uz" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, -/turf/open/floor/plating, -/area/lv759/indoors/weyyu_office/supervisor) -"UA" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_4" - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"UC" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/breakroom) -"UD" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"UE" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe3{ - dir = 8 - }, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"UF" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/platform/metal/hybrisa/metalplatform6/north, -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"UG" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/platform/metal/hybrisa/metalplatform1/west, -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/effect/hybrisa/misc/fake/pipes/pipe1, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - icon_state = "wy_water_crushed" - }, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"UU" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Vd" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"Vj" = ( -/obj/structure/prop/hybrisa/vehicles/Armored_Truck/WY_White, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"Vo" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3" - }, -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Vp" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"Vv" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Vy" = ( -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, -/area/lv759/indoors/weyyu_office/supervisor) -"VA" = ( -/obj/structure/window/framed/hybrisa/colony/office, -/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ - dir = 4 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office) -"VF" = ( -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"VP" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/north_west_street) -"VS" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office/pressroom) -"VV" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office) -"Wb" = ( -/obj/effect/decal/hybrisa/road/lines4{ - pixel_x = 1 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"Wd" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_street) -"Wf" = ( -/obj/effect/decal/hybrisa/dirt, -/turf/open/hybrisa/street/sidewalkfull, -/area/lv759/outdoors/colony_streets/central_streets) -"Wk" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/east, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office/pressroom) -"Wl" = ( -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -1 - }, -/obj/structure/closet/crate/secure/gear, -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16/ap, -/obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/pressroom) -"Wm" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/hybrisa/metal/grated/east, -/area/lv759/outdoors/colony_streets/central_streets) -"Wn" = ( -/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, -/obj/effect/decal/cleanable/blood, -/turf/open/hybrisa/street/cement2, -/area/lv759/outdoors/colony_streets/north_west_street) -"Wq" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"Ws" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ - icon_state = "bluemultimonitorbig_on"; - light_color = "#00f4ff"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_x = 1; - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Wv" = ( -/obj/effect/decal/hybrisa/trash{ - pixel_y = 12 - }, -/obj/effect/decal/hybrisa/deco_edging{ - dir = 4; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) -"Wy" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"WD" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 12 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/prop/hybrisa/misc/machinery/screens/frame{ - pixel_y = 32 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"WJ" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = -12; - buckling_x = -12 - }, -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5; - pixel_x = 8; - buckling_x = 8 - }, -/obj/effect/decal/hybrisa/road/lines3{ - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/weyyu_office/pressroom) -"WO" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/turf/open/floor/corsat/officetiles, -/area/lv759/indoors/weyyu_office/floor) -"WR" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/obj/item/trash/hybrisa/cuppa_joes_static/lid{ - pixel_y = 2; - pixel_x = 16 - }, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 22; - pixel_x = 12 - }, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 22; - pixel_x = 12 - }, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 22; - pixel_x = 12 - }, -/obj/effect/decal/hybrisa/trash{ - pixel_y = 22; - pixel_x = 12 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"WV" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"WW" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/effect/landmark/survivor_spawner/clf_engi/hybrisa, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"WX" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Xn" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/obj/item/paper_bin{ - pixel_x = 10; - pixel_y = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, -/area/lv759/indoors/weyyu_office/floor) -"Xp" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/clf/hybrisa, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Xq" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/effect/decal/hybrisa/deco_edging{ - dir = 1; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"Xv" = ( -/obj/structure/pipes/standard/manifold/hidden/dark, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"Xx" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/platform/metal/hybrisa/metalplatform1/west, -/obj/effect/hybrisa/misc/fake/pipes/pipe1{ - dir = 4 - }, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/colony_streets/central_streets) -"Xy" = ( -/obj/effect/decal/hybrisa/deco_edging/corner{ - dir = 8; - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"XJ" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"XL" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"XO" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/platingdmg3, -/area/lv759/indoors/weyyu_office/hallway) -"XP" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_x = -8; - pixel_y = 12 - }, -/obj/effect/decal/hybrisa/deco_edging{ - color = "#bbbaae" - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) -"XX" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = 2 - }, -/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, -/area/lv759/indoors/weyyu_office/floor) -"XY" = ( -/turf/closed/wall/hybrisa/colony/office, -/area/lv759/indoors/weyyu_office) -"XZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/weyyu_office) -"Yb" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 6 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, -/area/lv759/indoors/weyyu_office/floor) -"Yj" = ( -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/paper/crumpled, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 12; - pixel_y = 8 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 - }, -/turf/open/floor/hybrisa/wood/blackwood, -/area/lv759/indoors/weyyu_office/vip) -"Yo" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"Ys" = ( -/obj/structure/bed/chair/comfy/hybrisa/black{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/southwest, -/area/lv759/indoors/weyyu_office/vip) -"Yt" = ( -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/item/folder/black{ - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/vip) -"Yv" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ - light_color = "#00f4ff"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_x = 1; - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/structure/platform/metal/hybrisa/metalplatform3/east, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"YA" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 - }, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_5"; - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"YE" = ( -/obj/structure/sign/safety/bathunisex{ - layer = 2; - pixel_y = 32 - }, -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office/breakroom) -"YG" = ( -/obj/structure/bed/chair, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/breakroom) -"YY" = ( -/obj/item/ammo_casing, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/hybrisa/carpet/blue_grey, -/area/lv759/indoors/weyyu_office/supervisor) -"Zh" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8; - layer = 4.12 - }, -/obj/structure/sign/poster/wylogo{ - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/turf/open/floor/prison/darkyellow2/east, -/area/lv759/indoors/weyyu_office/pressroom) -"Zj" = ( -/obj/item/paper/crumpled, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/hybrisa/carpet/rug_colorable/black/southwest, -/area/lv759/indoors/weyyu_office) -"Zl" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"Zp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"Zs" = ( -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_y = 12 - }, -/obj/item/trash/hybrisa/cuppa_joes/empty_cup, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/weyyu_office) -"Zt" = ( -/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, -/obj/effect/decal/hybrisa/road/lines1{ - pixel_x = -1 - }, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"Zu" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/turf/open/floor/hybrisa/metal/bluemetal1/west, -/area/lv759/indoors/weyyu_office/pressroom) -"Zy" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ - icon_state = "bluemultimonitorbig_on"; - light_color = "#00f4ff"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_x = 1; - pixel_y = 32 - }, -/obj/structure/platform/metal/hybrisa/metalplatform3/north, -/obj/effect/landmark/corpsespawner/wy/manager, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/hybrisa/carpet/carpetblack, -/area/lv759/indoors/weyyu_office/pressroom) -"ZA" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/colony_streets/central_streets) -"ZK" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 1 - }, -/obj/item/trash/hybrisa/cuppa_joes/lid, -/turf/open/floor/hybrisa/wood/redwood, -/area/lv759/indoors/weyyu_office/floor) -"ZQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, -/area/lv759/indoors/weyyu_office/floor) -"ZX" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) - -(1,1,1) = {" -ih -vC -pu -pu -pu -pu -pu -pu -pu -pJ -bZ -bZ -yi -zT -zT -ZX -yi -ut -ut -ZX -yi -ut -zT -ZX -yi -ut -ut -VP -"} -(2,1,1) = {" -vf -Zl -nY -Si -ii -ij -tv -Si -ii -wn -lE -tv -TW -mf -mf -fk -fk -VS -VS -fk -fk -VS -mf -fk -fk -VS -VS -jn -"} -(3,1,1) = {" -Vj -Dl -ot -ot -gs -Wv -PA -Xy -ot -ot -tS -HQ -cx -VS -vH -Bs -Ee -eD -eD -Gx -Gx -sM -FD -Bs -Bs -iO -VS -Qh -"} -(4,1,1) = {" -ij -oj -NO -Ly -Ey -Tn -TL -Bo -Ly -Tt -ij -tv -Mw -Kv -JO -dQ -nl -oU -LO -nl -UD -UD -Pk -UD -kl -Ht -vJ -bx -"} -(5,1,1) = {" -yW -Ia -eV -eO -XP -Px -TV -Xq -Ie -yi -Ka -Ny -fg -vG -Wk -uN -If -ja -Gz -rq -zB -zB -zB -oX -rR -zS -Cf -Wf -"} -(6,1,1) = {" -ij -Ul -kK -aH -Ct -SV -xe -GC -Wn -aa -zX -sG -UF -pV -VS -Zh -EM -Ew -re -ls -ax -Dh -IN -WJ -TJ -UU -cH -ZA -"} -(7,1,1) = {" -ij -Wy -Co -Si -ii -CM -Oz -Si -kh -Le -Fu -lr -PK -VS -AL -Zt -bb -mS -Xp -CA -eF -iB -nQ -BL -MZ -VS -VS -zk -"} -(8,1,1) = {" -ij -dW -ch -ch -ch -xT -xT -ch -ch -Uf -EN -XO -Uf -VS -Ws -MY -mI -qB -vk -Om -CN -CN -Wb -Hb -Mz -vJ -UG -gJ -"} -(9,1,1) = {" -BT -ch -ch -Tg -IH -Lq -uQ -Dr -ch -zC -bh -Ky -Qo -VS -Zy -NJ -gt -vX -Xp -Ui -Ui -KC -OW -EL -Mz -vJ -lO -Wm -"} -(10,1,1) = {" -ij -RK -gM -yR -Df -KD -cY -SP -JM -TQ -an -zp -tM -VS -ab -aT -eK -Wl -WW -uE -FC -lw -zB -BP -Mz -vJ -TR -ei -"} -(11,1,1) = {" -uo -RK -XJ -IS -lB -Mc -aC -kC -FM -MS -Hy -vM -eR -VS -Yv -Rx -Vo -mS -Xp -dZ -mg -Dh -IN -WJ -MZ -VS -VS -Uk -"} -(12,1,1) = {" -ij -RK -zt -Vv -aq -fX -ap -kd -JM -hp -mO -mO -Ib -VS -VS -mr -xR -IF -JJ -PZ -eF -ed -nQ -BL -TJ -UU -Cf -Nn -"} -(13,1,1) = {" -ij -RK -IJ -qC -Ae -wM -NZ -Ec -ch -JM -FG -rO -JM -VS -aR -gX -zj -cg -Rr -az -CN -CN -QQ -Mq -DF -Th -cH -Np -"} -(14,1,1) = {" -Fw -ch -ch -kW -oN -QS -tx -ao -KY -fX -dA -yh -TI -tY -vb -mk -OU -ng -vN -uc -mk -Vd -Vd -TO -Gw -ko -vJ -Vp -"} -(15,1,1) = {" -uo -OB -ch -qG -pw -lN -ki -Vv -DX -wM -AR -jB -DG -VS -nx -hq -gO -sf -Zu -Ix -mb -sf -ad -xp -HO -dy -VS -Iz -"} -(16,1,1) = {" -ij -ch -ch -pf -WV -dp -Ed -JT -Zp -XX -Cb -zQ -oV -pm -pm -pm -lL -lL -pm -Bi -Bi -iW -iW -Bi -Bi -VS -VS -Ax -"} -(17,1,1) = {" -ij -RK -Xn -Xv -sd -dj -Oe -el -pw -iA -up -dI -Ug -pm -Cy -nM -wb -Yj -ma -Bi -HJ -xm -tm -RP -Bi -hy -Xx -zo -"} -(18,1,1) = {" -ij -RK -Yb -YA -DD -xn -GE -Re -ZQ -dp -uU -dI -XL -pm -zc -oC -By -Pl -Ne -Bi -ws -LT -YY -KR -Uz -HW -Hx -dt -"} -(19,1,1) = {" -ij -RK -Gv -QT -Pi -HN -wg -ZK -SZ -yD -fa -SH -dA -bH -kE -Ts -em -qw -ff -Bi -QI -JS -Rb -PU -Uz -uG -OA -Tc -"} -(20,1,1) = {" -FA -RK -GO -tr -wz -wO -bI -yJ -dA -dA -Rz -dA -QV -pm -hX -QX -To -qw -Is -vL -RE -Vy -TK -Sm -Bi -co -sD -dt -"} -(21,1,1) = {" -at -ch -ch -hk -SW -SW -cX -pX -ON -MT -rI -dA -JX -pm -WD -QX -qp -qw -Kq -Ki -PW -OL -pk -Ma -Uz -bQ -Bg -vh -"} -(22,1,1) = {" -hr -iQ -dm -dm -wy -wy -wy -UC -dm -JM -WO -HC -hS -pm -KO -QX -Yt -qw -wq -vL -af -Am -lk -lk -Uz -UE -TU -dt -"} -(23,1,1) = {" -FA -dm -dm -Rq -PJ -Cw -eE -jq -dm -XZ -uA -jh -my -bH -LE -QX -fb -qw -WX -Bi -bR -qN -km -dR -Bi -sj -OM -Tc -"} -(24,1,1) = {" -hU -ba -Sl -aw -Bb -qr -lV -oP -dm -Ot -zG -ac -wE -GQ -iK -mo -iK -sY -iN -Bi -Bi -Bi -Bi -Bi -Bi -XY -XY -ce -"} -(25,1,1) = {" -nP -ba -Ev -QK -Jr -ST -kL -de -dm -zZ -AW -jh -jh -Nb -bW -Dy -Ys -tF -Je -rP -jR -rT -BS -cS -Ra -rP -tc -tc -"} -(26,1,1) = {" -FA -ba -zR -YG -dE -NV -Wq -Mx -dm -Nc -Se -Oy -xS -bH -va -Sh -yP -yp -Lb -rP -kP -Zs -In -eU -gq -hQ -ZA -kR -"} -(27,1,1) = {" -at -ba -Mf -Ut -we -pY -Rk -de -dm -Mt -Qi -gI -Mt -XY -XY -qv -VA -XY -XY -XY -zZ -ae -eU -cj -In -iF -Qy -Vp -"} -(28,1,1) = {" -FA -dm -dm -dm -dm -dm -dm -EF -wy -Mn -Jn -am -nd -ey -ak -fG -cN -DM -ah -fG -eP -VF -AV -fF -qq -rP -zb -tc -"} -(29,1,1) = {" -AK -nH -dm -do -lZ -NK -yt -HA -eB -Yo -GP -Yo -al -Md -WR -aj -FH -ai -pK -Yo -ag -GI -zP -yF -RS -XY -eo -lJ -"} -(30,1,1) = {" -fN -bk -dm -dm -dm -en -dm -YE -wy -ol -ea -gC -Nr -vD -eC -Ko -ea -VV -ea -Kp -jr -qV -QH -Zj -pA -XY -Oo -rr -"} -(31,1,1) = {" -lT -kU -dm -gA -lZ -on -dm -Mb -dm -XY -XY -XY -Mv -pH -XY -XY -XY -XY -XY -XY -XY -XY -XY -XY -XY -XY -XY -hg -"} -(32,1,1) = {" -Aw -ru -dm -oq -dm -dm -dm -zA -dm -Fj -rM -XY -iF -Mu -XY -Ac -tK -Qw -sX -eq -eq -ev -lt -pO -XY -XY -XY -bx -"} -(33,1,1) = {" -PR -nG -QR -RL -ex -Wd -Bh -yz -sE -UA -vP -Cc -Aq -xl -qA -cf -Fn -wW -ex -mt -nW -ex -er -vS -pL -pL -vS -tP -"} diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfspaceport.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfspaceport.dmm new file mode 100644 index 000000000000..b045081ef0bb --- /dev/null +++ b/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfspaceport.dmm @@ -0,0 +1,4420 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + faction_group = list("CLF") + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"ai" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "36_alt" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"am" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"at" = ( +/obj/structure/closet/coffin/woodencrate{ + pixel_y = 8 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"aI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/yellow3/west, +/area/lv759/indoors/spaceport/cargo) +"bf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"bm" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "49" + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/clf_dropship) +"bD" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"bL" = ( +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"bN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"bR" = ( +/obj/structure/machinery/door_control{ + id = "clf_cargo_1"; + name = "Cargo Lockdown"; + pixel_x = -10; + pixel_y = -20 + }, +/obj/structure/closet/crate/green, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/roller/bedroll, +/obj/item/roller/bedroll, +/obj/item/roller/bedroll, +/obj/item/roller/bedroll, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"cc" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"cd" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "36" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"ci" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + amount = 15; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + pixel_y = 2 + }, +/obj/item/shard, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"co" = ( +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"cr" = ( +/obj/structure/sign/banners/clf_flag{ + pixel_x = 13; + pixel_y = 31; + layer = 2.9 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/structure/machinery/light/blue{ + dir = 1; + pixel_x = -15; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"cD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/bed/stool, +/obj/item/trash/cigbutt, +/turf/open/floor/strata/yellow3, +/area/lv759/indoors/spaceport/cargo) +"cO" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"cR" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "97" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"cS" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "98" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"cZ" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"dm" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"dr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo_maintenance) +"ds" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/banners/clf_flag{ + pixel_x = -1; + pixel_y = 34 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"dx" = ( +/obj/structure/machinery/light/small/blue{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"dz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) +"dA" = ( +/obj/structure/closet/crate/ammo, +/obj/effect/decal/hybrisa/dirt, +/obj/item/clothing/accessory/storage/webbing/black, +/obj/item/clothing/accessory/storage/webbing/black, +/obj/item/clothing/accessory/storage/webbing/black, +/obj/item/clothing/accessory/storage/webbing/black, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"dE" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "brokendropshipconsole2" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"dQ" = ( +/obj/item/tool/wet_sign{ + layer = 4; + pixel_x = -9; + pixel_y = 17 + }, +/obj/item/tool/mop{ + pixel_y = 23 + }, +/obj/structure/sign/poster/safety{ + pixel_y = 32; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"dZ" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + amount = 15; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/shard, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"ea" = ( +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"ei" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"ek" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"em" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "110" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"er" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "37_alt" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"ex" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "45" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"ez" = ( +/obj/structure/machinery/big_computers/computerblack/computer2{ + pixel_y = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"eB" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/obj/structure/barricade/metal/wired, +/obj/item/shard, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"eJ" = ( +/obj/structure/machinery/light/spot/blue, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "101" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"eP" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"fa" = ( +/obj/structure/sign/safety/bulkhead_door, +/obj/structure/sign/safety/airlock{ + pixel_x = 11 + }, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/cargo) +"ff" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/barricade/sandbags{ + dir = 4; + pixel_y = 2 + }, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"fg" = ( +/obj/structure/sign/banners/clf_flag{ + pixel_x = -1; + pixel_y = 34 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/cargo) +"fp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"fN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"fP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"fT" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"fU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/yellow3/northeast, +/area/lv759/indoors/spaceport/cargo) +"gb" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"ge" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"gg" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"gj" = ( +/obj/structure/machinery/door/airlock/prison_hatch{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"gk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/rods, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stack/cable_coil/cut{ + icon_state = "coil1"; + color = "#550d0d" + }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/platingdmg3, +/area/lv759/indoors/spaceport/cargo) +"gn" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"go" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = -17 + }, +/turf/closed/wall/hybrisa/spaceport/unmeltable, +/area/lv759/oob) +"gp" = ( +/obj/structure/sign/safety/opens_up, +/obj/structure/sign/poster/clf{ + pixel_y = 1 + }, +/obj/structure/sign/poster/clf{ + pixel_x = 11; + pixel_y = 3 + }, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"gI" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/blue3, +/area/lv759/indoors/spaceport/docking_bay_2) +"gK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"gU" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/item/stool{ + layer = 2; + pixel_x = -4; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"gY" = ( +/obj/structure/machinery/door_control{ + id = "clf_cargo_1"; + name = "Cargo Lockdown"; + pixel_x = -10; + pixel_y = 26 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/largecrate/supply/ammo/m56d, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"hb" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"hg" = ( +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/obj/effect/decal/hybrisa/dirt, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/spaceport/clf_dropship) +"hl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small/blue{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = -9; + layer = 2.9 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"hm" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"hG" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "7" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"hP" = ( +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"hQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"ic" = ( +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/spaceport/clf_dropship) +"ie" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3"; + pixel_x = -2 + }, +/obj/structure/surface/rack{ + pixel_y = 17; + density = 0; + layer = 2.4 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -7; + pixel_y = 2; + layer = 3.1 + }, +/obj/item/storage/belt/medical/full{ + pixel_y = 17 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = 23 + }, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"ii" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"il" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/spaceport/docking_bay_2) +"in" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"iQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/item/stack/rods{ + pixel_y = 14 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"iX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/encryptionkey/clf{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/storage/box/clf{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/paper_bin{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"jh" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"jq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/strata/yellow3, +/area/lv759/indoors/spaceport/cargo) +"jx" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "38" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"jB" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"jK" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"jP" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"jY" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32; + layer = 2.9 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"kb" = ( +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"kc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"kd" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/turf/open/floor/strata/yellow3/east, +/area/lv759/indoors/spaceport/cargo) +"kq" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/cargo_maintenance) +"kZ" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"lo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"lw" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/machinery/light/blue{ + pixel_x = 15 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"lx" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "4" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"lA" = ( +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) +"lN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small/blue, +/obj/item/device/binoculars{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/lv759/indoors/spaceport/clf_dropship) +"lP" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/blue4/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"md" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"mg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/WY/WY1{ + pixel_y = 16 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/oil/streak{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"mi" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/yellow3/north, +/area/lv759/indoors/spaceport/cargo) +"ml" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"mp" = ( +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"mD" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "8" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"mJ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"mL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"mM" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "34" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"mQ" = ( +/obj/structure/machinery/door/airlock/prison_hatch, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite'"; + color = "#646464"; + id = "clf_lockdown"; + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"ne" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/structure/machinery/light/blue{ + dir = 1; + pixel_x = -15; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"nn" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"ns" = ( +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_1" + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"nH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"nV" = ( +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"nX" = ( +/obj/structure/machinery/light/blue, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 2.7; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"nY" = ( +/obj/structure/machinery/light/spot/blue, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"ol" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"ov" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"ox" = ( +/obj/structure/machinery/light/dropship/green{ + dir = 4 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "33" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"oF" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"oQ" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"oT" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"pk" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"po" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"pw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"px" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + amount = 15; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"pD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/banners/clf_flag{ + pixel_x = -1; + pixel_y = 34 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"pH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/platform_decoration/metal/almayer{ + layer = 2.9 + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/strata/yellow3/north, +/area/lv759/indoors/spaceport/cargo) +"pJ" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"pN" = ( +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"pP" = ( +/obj/item/trash/cigbutt, +/obj/structure/barricade/sandbags{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"pX" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "rightengine_3" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"qd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"qk" = ( +/turf/template_noop, +/area/template_noop) +"ql" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "26" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"qv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_2" + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"qC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"qG" = ( +/obj/structure/sign/safety/opens_up, +/obj/structure/sign/poster/clf, +/obj/structure/sign/poster/clf{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"qJ" = ( +/obj/structure/machinery/light/dropship/red{ + dir = 8 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "75" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"qR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"qT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"qW" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"rd" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/blue4/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"rt" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/sandbags{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"ru" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "78" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"rv" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/machinery/light/blue{ + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"rC" = ( +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/cargo_maintenance) +"rD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"se" = ( +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_1" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"sm" = ( +/obj/item/tank/anesthetic{ + pixel_x = 8 + }, +/obj/item/clothing/mask/breath/medical{ + pixel_x = -3 + }, +/obj/structure/machinery/optable{ + dir = 1; + density = 0 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 22; + pixel_y = 28; + layer = 2.9 + }, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/rack{ + pixel_y = 17; + density = 0; + layer = 2.4 + }, +/obj/item/storage/surgical_tray{ + pixel_x = 1; + pixel_y = 27 + }, +/obj/item/roller{ + pixel_x = 1; + pixel_y = 18; + layer = 2.41 + }, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"sn" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"st" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"sB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -3; + pixel_y = 17 + }, +/obj/item/storage/box/m56d_hmg, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"sT" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "9_alt" + }, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "45" + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"sW" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"tt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"uf" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/strata/yellow3/southeast, +/area/lv759/indoors/spaceport/cargo) +"uh" = ( +/obj/effect/attach_point/electronics/dropship1{ + dir = 1; + attach_id = 5 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "106" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"um" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"uo" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) +"uu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 2.7; + pixel_y = 2 + }, +/obj/structure/machinery/light/blue, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"uP" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "35" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"uT" = ( +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"uV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"vc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 4; + pixel_x = 5 + }, +/turf/open/floor/strata/yellow3, +/area/lv759/indoors/spaceport/cargo) +"vd" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"vu" = ( +/obj/item/stack/rods, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/yellow3/west, +/area/lv759/indoors/spaceport/cargo) +"vv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1 + }, +/turf/closed/wall/hybrisa/spaceport/unmeltable, +/area/lv759/oob) +"vz" = ( +/obj/structure/machinery/light/spot/blue, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"vN" = ( +/obj/structure/machinery/light/dropship/red{ + dir = 8 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "28" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"vP" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) +"vR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/obj/structure/largecrate/random/barrel/brown{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"vW" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 20 + }, +/obj/structure/surface/rack, +/obj/item/clothing/head/militia/bucket{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/tool/weldpack{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"vY" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"wb" = ( +/obj/effect/landmark/survivor_spawner/clf_engi, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"wc" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"wd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"wg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/yellow3, +/area/lv759/indoors/spaceport/cargo) +"wq" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + pixel_y = 2 + }, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"wv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/landmark/survivor_spawner/clf_lead/hybrisa, +/turf/open/floor/strata/yellow3, +/area/lv759/indoors/spaceport/cargo) +"ww" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "110"; + dir = 4 + }, +/area/lv759/indoors/spaceport/clf_dropship) +"wx" = ( +/obj/structure/sign/poster/clf{ + pixel_x = 10; + pixel_y = 29; + layer = 2.8 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 32; + layer = 2.9 + }, +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 4; + pixel_y = 8; + buckling_y = 16 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/obj/item/clothing/head/militia/bucket{ + pixel_x = -6; + pixel_y = 17 + }, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"xb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"xm" = ( +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"xt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + amount = 15; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"xC" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"xG" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/spawner/random/attachment, +/obj/item/storage/toolbox/electrical{ + pixel_y = 14 + }, +/obj/item/tool/extinguisher/mini{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"xJ" = ( +/obj/structure/largecrate/supply/supplies/flares, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"xL" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = 5 + }, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -2 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -2; + pixel_x = -4 + }, +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "clf_cargo_2"; + name = "Cargo Lockdown"; + pixel_x = -10; + pixel_y = -20 + }, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"xO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/banners/clf_flag{ + pixel_x = -1; + pixel_y = 34 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"yb" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/turf/open/floor/strata/blue3, +/area/lv759/indoors/spaceport/docking_bay_2) +"ye" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"yf" = ( +/obj/item/weapon/gun/smg/fp9000, +/obj/item/weapon/gun/smg/fp9000, +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"yp" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "15_alt" + }, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "44" + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"yD" = ( +/obj/structure/stairs{ + color = "#a6aeab" + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"yG" = ( +/obj/structure/machinery/light/dropship/green{ + dir = 4 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "83" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"yH" = ( +/obj/structure/prop/hybrisa/supermart/freezer/supermartfreezer4, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/kitchen) +"yN" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"yQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small/blue, +/obj/item/prop/almayer/comp_open{ + pixel_y = 5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/lv759/indoors/spaceport/clf_dropship) +"ze" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"zh" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "20" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"zi" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "94" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"zx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/metal/wired, +/obj/item/shard, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"zI" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"zJ" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1; + pixel_y = 8; + buckling_y = 8; + pixel_x = 5; + buckling_x = 5 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/structure/machinery/door_control{ + id = "clf_lockdown"; + name = "Dropship Lockdown"; + pixel_x = -15; + pixel_y = 22 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/lv759/indoors/spaceport/clf_dropship) +"zU" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"Ab" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"Aq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ar" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "37" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Aw" = ( +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = -14; + pixel_y = 20 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "brokendropshipconsole1" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"AA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/plate, +/area/lv759/indoors/spaceport/kitchen) +"AM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/clf_dropship) +"AP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"AR" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"AT" = ( +/obj/structure/window/framed/hybrisa/spaceport/reinforced, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"AW" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "3" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"AX" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + dir = 8; + faction_group = list("CLF") + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Bg" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "107" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Bu" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "92" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Bw" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"BF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + amount = 15; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + pixel_y = 2 + }, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"BS" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "44" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"BZ" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"Cx" = ( +/turf/closed/wall/hybrisa/spaceport/unmeltable, +/area/lv759/oob) +"CB" = ( +/obj/structure/machinery/light/spot/blue, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "101" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"CI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + pixel_y = 2 + }, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"CM" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/blue3/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"CO" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/cargo_maintenance) +"CY" = ( +/obj/structure/cable{ + icon_state = "2-6"; + color = "#550d0d"; + level = 2 + }, +/obj/structure/cable{ + icon_state = "1-9"; + color = "#550d0d"; + level = 2 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"Da" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"Dc" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"Dk" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/turf/open/floor/strata/blue3/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"Dz" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"DB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"DN" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Eg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"Ep" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "10_interior_1" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Eq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door_control{ + id = "clf_cargo_2"; + name = "Cargo Lockdown"; + pixel_x = 22; + pixel_y = 33 + }, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"Er" = ( +/obj/structure/shuttle/part/dropship_clf/transparent, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/clf_dropship) +"Ev" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/blue4/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ew" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"EL" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "39" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"ES" = ( +/obj/structure/sign/nosmoking_1, +/obj/structure/sign/poster/clf{ + pixel_x = 10; + pixel_y = 1 + }, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"Fj" = ( +/obj/structure/cable{ + icon_state = "1-4"; + level = 2; + color = "#550d0d" + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"Fl" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/yellow3/west, +/area/lv759/indoors/spaceport/cargo) +"Fs" = ( +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/yellow3/west, +/area/lv759/indoors/spaceport/cargo) +"FG" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"FJ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"FO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"FR" = ( +/obj/structure/sign/banners/clf_flag{ + pixel_x = -14; + pixel_y = 31; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/spaceport/clf_dropship) +"FU" = ( +/obj/structure/sign/safety/bulkhead_door, +/obj/structure/sign/safety/airlock{ + pixel_x = 11 + }, +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"Gf" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"Gn" = ( +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"Gp" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"Gy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"GR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"GX" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/obj/structure/barricade/plasteel/wired, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"GZ" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "16" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Hh" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ho" = ( +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"Hz" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"HB" = ( +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"HG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/strata/yellow3/west, +/area/lv759/indoors/spaceport/cargo) +"HR" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ic" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "wy_leftengine" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Ie" = ( +/obj/structure/cable{ + icon_state = "8-10"; + color = "#550d0d"; + level = 2 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"Ih" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "Weakened Emergency Lockdown"; + needs_power = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"Io" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"It" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ix" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"Iz" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/light/small/blue{ + dir = 8 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/cargo) +"IG" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"IH" = ( +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"IJ" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"IP" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"IQ" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"IS" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"Jp" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/spaceport/clf_dropship) +"Jq" = ( +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/docking_bay_2) +"JB" = ( +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"JJ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"JN" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "102" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"JO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/strata/yellow3/southwest, +/area/lv759/indoors/spaceport/cargo) +"JU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/yellow3/east, +/area/lv759/indoors/spaceport/cargo) +"Ke" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "100" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"Kf" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"Kh" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/clf_dropship) +"Kk" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "wy_rightengine" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Kt" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "96" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Ku" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + welded = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"Kx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small/blue{ + dir = 8 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/obj/structure/largecrate/random/barrel/medical{ + pixel_y = -8 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"KB" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"KE" = ( +/obj/structure/closet/crate/ammo, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 2 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -5 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/spaceport/clf_dropship) +"KI" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/blue3/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"La" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "99" + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/clf_dropship) +"Ld" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"Le" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "29" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Lh" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"LC" = ( +/obj/structure/machinery/light/small/blue{ + dir = 4 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/cargo) +"LK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/prison/ramptop/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"LR" = ( +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"LU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/power/port_gen, +/obj/structure/cable{ + icon_state = "11-6"; + color = "#550d0d"; + level = 2 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/spaceport/cargo) +"Ma" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 2.7; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/spaceport/cargo) +"Mi" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "6" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/clf_dropship) +"Mj" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "24" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Mr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"Mv" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"MB" = ( +/obj/structure/cable{ + icon_state = "4-9"; + color = "#550d0d"; + level = 2 + }, +/obj/structure/barricade/sandbags{ + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"MN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"Na" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/sandbags{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"Nt" = ( +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/strata/blue3/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ny" = ( +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"NJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/platform_decoration/metal/almayer/north{ + layer = 2.9 + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/strata/yellow3/north, +/area/lv759/indoors/spaceport/cargo) +"Ob" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/cargo) +"Og" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ol" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/sandbags{ + dir = 8; + pixel_y = -3 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"Oo" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "brokendropshipconsole3" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Oq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/wirecutters, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"Ot" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/item/tool/weldingtool/empty{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"OD" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/blue4, +/area/lv759/indoors/spaceport/docking_bay_2) +"OM" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"OP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"OU" = ( +/obj/item/tool/warning_cone{ + pixel_x = 15; + pixel_y = 13 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"Pe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -16 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"Pg" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/clf_dropship) +"Pj" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"Pq" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"Ps" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "21" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Pz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"PL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"Qe" = ( +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/communications_office) +"Qf" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "2" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/clf_dropship) +"Qg" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "103" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Qt" = ( +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 4; + pixel_y = 8; + buckling_y = 16 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 6; + pixel_y = 31; + layer = 2.9 + }, +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/item/tool/extinguisher/mini, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"QA" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "27" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"QD" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/blue3, +/area/lv759/indoors/spaceport/docking_bay_2) +"QM" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -15; + pixel_y = 8 + }, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"QV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"Rf" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/power/apc/power/east, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Rp" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "32" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Rt" = ( +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/platform/metal/strata/west, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/spaceport/docking_bay_2) +"Rv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + amount = 15; + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + pixel_y = 2 + }, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"RD" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"RF" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1; + pixel_y = 8; + buckling_y = 8; + pixel_x = -5; + buckling_x = -5 + }, +/obj/item/trash/cigbutt, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/lv759/indoors/spaceport/clf_dropship) +"RM" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/spiralplate, +/area/lv759/indoors/spaceport/clf_dropship) +"RS" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "25" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"RU" = ( +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"RW" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/item/shard, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"RX" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "17" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Sb" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "10_interior" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Sd" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "22" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Sg" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Sh" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "31" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"SD" = ( +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/kitchen) +"SH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 15 + }, +/obj/item/tool/wet_sign{ + layer = 4; + pixel_x = -9; + pixel_y = 17 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"SJ" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"SK" = ( +/obj/structure/pipes/vents/pump_hybrisa, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"SN" = ( +/obj/structure/prop/structure_lattice{ + desc = "An old company comms tower used to transmit communications between subspace bodies. Looks like this one has seen better days."; + dir = 4; + icon = 'icons/obj/structures/machinery/comm_tower2.dmi'; + icon_state = "construct_9_1"; + layer = 5; + level = 5; + name = "destroyed comms tower" + }, +/obj/structure/cable{ + icon_state = "2-8"; + level = 2; + color = "#550d0d" + }, +/obj/structure/cable{ + icon_state = "5-9"; + color = "#550d0d"; + level = 2 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo) +"Tm" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Tq" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"Tv" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/turf/open/floor/strata/yellow3/east, +/area/lv759/indoors/spaceport/cargo) +"TA" = ( +/obj/structure/bed/hybrisa/bunkbed3, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"TO" = ( +/turf/open/floor/prison/ramptop/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"TP" = ( +/obj/structure/platform/metal/strata/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/spaceport/docking_bay_2) +"Uu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"UB" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"UE" = ( +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_2" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"UR" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/lv759/indoors/spaceport/clf_dropship) +"UX" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/yellow3/north, +/area/lv759/indoors/spaceport/cargo) +"Vl" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/spaceport/cargo) +"Vz" = ( +/obj/structure/platform/metal/strata/west, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/strata/blue3, +/area/lv759/indoors/spaceport/docking_bay_2) +"VA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"VG" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"VX" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "23" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Wf" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired, +/obj/item/shard, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"Wn" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"Wu" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "10" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Wx" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/spaceport/cargo) +"WE" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "30" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"WJ" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/spaceport/clf_dropship) +"WM" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"WN" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3"; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/survivor_spawner/clf_medic/hybrisa, +/turf/open/floor/prison/southwest, +/area/lv759/indoors/spaceport/clf_dropship) +"WW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/stack/rods, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"Xh" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/structure/machinery/power/port_gen, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Xl" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/blue3, +/area/lv759/indoors/spaceport/docking_bay_2) +"Xw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + faction_group = list("CLF") + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"XC" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "5" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/clf_dropship) +"XQ" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/cabinet/hybrisa/metal, +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/obj/item/tool/shovel, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar/red, +/obj/item/tool/mop, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"XR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cable{ + icon_state = "2-6"; + color = "#550d0d"; + level = 2 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/patch/clf_patch{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/book/codebook/clf{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/spaceport/cargo) +"Yc" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "46" + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/clf_dropship) +"Yf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/barricade/metal/wired, +/turf/open/floor/strata/yellow3/northwest, +/area/lv759/indoors/spaceport/cargo) +"Yh" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "leftengine_3" + }, +/area/lv759/indoors/spaceport/clf_dropship) +"Yn" = ( +/obj/structure/platform_decoration/metal/strata/north, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 20 + }, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"Yo" = ( +/turf/closed/wall/hybrisa/spaceport/reinforced, +/area/lv759/indoors/spaceport/cargo) +"Yv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/turf/open/floor/strata/yellow3/east, +/area/lv759/indoors/spaceport/cargo) +"Yz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"YN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/platingdmg3, +/area/lv759/indoors/spaceport/cargo_maintenance) +"YP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + welded = 1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/cargo_maintenance) +"YX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"Zi" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"Zm" = ( +/obj/effect/landmark/survivor_spawner/clf/hybrisa, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"Zt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "95" + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/clf_dropship) +"Zw" = ( +/obj/structure/barricade/sandbags{ + pixel_y = 14 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/cargo) +"Zz" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) +"ZL" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) +"ZO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 16 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/spaceport/docking_bay_2) + +(1,1,1) = {" +go +Jq +Jq +LK +TO +Cx +Cx +Rt +il +TP +Rt +il +Jq +Jq +Jq +Jq +Gy +dZ +mL +Zd +xt +hQ +qR +"} +(2,1,1) = {" +Cx +ES +ii +Pq +Lh +po +nV +RD +wc +wc +Bw +FJ +IH +kZ +Hh +OM +Lh +ZL +IG +RW +VG +Mv +ci +"} +(3,1,1) = {" +Cx +gp +HR +jB +jK +Zm +RU +RU +RU +ol +RU +Zm +ol +ol +qC +RU +JJ +RU +RU +RU +RU +Wf +lo +"} +(4,1,1) = {" +Cx +FU +OU +AX +Dk +DN +hP +BZ +BZ +hP +hP +hP +hP +hP +Dk +BZ +BZ +hP +hP +pN +hP +um +Jq +"} +(5,1,1) = {" +vv +Kx +kc +QD +pJ +ov +CM +Ab +Ab +Xl +ov +lP +Ev +ov +CM +Pe +Pe +Xl +ov +ea +Nt +um +bN +"} +(6,1,1) = {" +vv +ds +WM +ze +lA +Ke +qJ +mQ +mQ +Ic +Yh +Pg +BS +mM +vN +Sd +zh +Ny +am +md +fP +vz +Qe +"} +(7,1,1) = {" +vv +qd +UB +pw +uo +CB +ru +FR +ic +Ep +ai +em +sT +uP +Le +VX +Ps +co +Ny +Er +fP +vz +Qe +"} +(8,1,1) = {" +vv +qd +Pz +Zt +Bu +uh +ru +IQ +gb +ru +sm +Tq +Ep +cd +WE +Mj +ai +Yc +Uu +Qf +Yz +zx +Rv +"} +(9,1,1) = {" +vv +xb +Pz +Kt +Aw +yQ +ru +ne +rv +Qg +ie +WN +Qg +at +sB +yf +xJ +Wu +hG +AW +PL +Og +CI +"} +(10,1,1) = {" +vv +xO +Pz +cR +dE +RF +gj +pk +in +gj +UR +oF +se +AM +WJ +Pj +ml +UE +rD +mp +mg +Aq +ek +"} +(11,1,1) = {" +vv +qd +UB +cR +dE +zJ +gj +sn +Gp +gj +wd +ye +ns +AM +wb +MN +VA +qv +Eq +JB +fN +bf +Eg +"} +(12,1,1) = {" +vv +xb +Pz +cS +Oo +lN +ru +RM +lw +ru +wx +bR +Qg +gY +KE +dA +xL +Wu +mD +lx +fP +tt +BF +"} +(13,1,1) = {" +vv +xb +mJ +La +zi +Bg +ru +cr +ge +ru +Qt +TA +Sb +Ar +Sh +RS +er +bm +gn +XC +fP +eB +wq +"} +(14,1,1) = {" +vv +pD +Pz +YX +dz +eJ +ru +Jp +hg +Sb +er +ww +yp +EL +Rp +ql +GZ +Ny +Ho +Mi +kb +nY +Qe +"} +(15,1,1) = {" +vv +qd +UB +ze +vP +JN +yG +mQ +mQ +Kk +pX +Kh +ex +jx +ox +QA +RX +Ho +Zz +It +FO +vz +Qe +"} +(16,1,1) = {" +vv +hl +hb +yb +Yn +st +KI +ZO +ZO +gI +st +rd +OD +st +KI +ZO +ZO +Vz +st +yN +Dp +um +Qe +"} +(17,1,1) = {" +Cx +FU +vR +oT +xm +xm +xm +BZ +BZ +xm +xm +xm +xm +xm +xm +BZ +BZ +Io +cZ +Xw +xm +um +SD +"} +(18,1,1) = {" +Cx +qG +QM +Ew +Zm +RU +jK +RU +RU +ol +ol +RU +RU +RU +RU +Dz +Zm +iQ +ol +Ly +RU +GX +AA +"} +(19,1,1) = {" +Cx +Jq +Tm +Zi +jh +Sg +jh +qT +Hz +jh +dm +vW +jP +Xh +hm +Rf +qW +gg +xC +nn +SJ +cc +yH +"} +(20,1,1) = {" +Cx +Yo +AT +AT +AT +Yo +AT +Wn +cO +AT +Yo +rC +rC +rC +rC +Jq +Jq +Da +Ld +mL +nH +px +SD +"} +(21,1,1) = {" +Cx +fa +ez +gU +sW +FG +Gf +Wn +Wx +yD +dx +fp +SH +KB +fp +qk +qk +qk +qk +qk +qk +qk +qk +"} +(22,1,1) = {" +vv +Iz +Vl +uf +kd +Tv +Yv +JU +Yv +fU +Ma +rC +xG +ei +rC +qk +qk +qk +qk +qk +qk +qk +qk +"} +(23,1,1) = {" +vv +Ob +eP +wg +IJ +AP +Gn +Dc +bL +mi +Ma +rC +XQ +OP +rC +qk +qk +qk +qk +qk +qk +qk +qk +"} +(24,1,1) = {" +vv +fg +IP +wg +LU +ff +zU +rt +LR +UX +nX +rC +dQ +Ot +rC +qk +qk +qk +qk +qk +qk +qk +qk +"} +(25,1,1) = {" +vv +Ob +GR +cD +XR +CY +Fj +Na +IJ +UX +Ma +rC +rC +Ku +rC +qk +qk +qk +qk +qk +qk +qk +qk +"} +(26,1,1) = {" +vv +Zw +AR +wv +iX +MB +SN +Na +aa +UX +Ma +rC +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(27,1,1) = {" +vv +fg +vY +jq +Mr +Ie +fT +Na +Kf +UX +uu +rC +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(28,1,1) = {" +vv +Ob +gK +wg +IS +pP +LR +Ol +LR +NJ +uT +dr +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(29,1,1) = {" +vv +Zw +eP +vc +DB +HB +bL +Dc +Gn +pH +uT +dr +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(30,1,1) = {" +vv +LC +uT +JO +HG +vu +Fs +Fl +aI +Yf +bD +rC +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(31,1,1) = {" +Cx +fa +vd +Ix +SK +oQ +gk +Oq +zI +yD +bD +YP +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(32,1,1) = {" +Cx +rC +rC +CO +uV +CO +CO +CO +CO +CO +CO +rC +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(33,1,1) = {" +qk +qk +qk +rC +jY +QV +rC +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(34,1,1) = {" +qk +qk +qk +rC +WW +YN +rC +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} +(35,1,1) = {" +qk +qk +qk +rC +Ih +rC +kq +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +"} diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfspaceport_queen.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfspaceport_queen.dmm new file mode 100644 index 000000000000..038e2d396cbc --- /dev/null +++ b/maps/map_files/LV759_Hybrisa_Prospera/standalone/clfspaceport_queen.dmm @@ -0,0 +1,31 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/almayer/tcomms, +/area/space) +"i" = ( +/turf/open/floor/almayer/w_y0/north, +/area/space) +"E" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/orange_cover, +/area/space) +"I" = ( +/turf/open/floor/almayer/w_y2/north, +/area/space) +"O" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/almayer/w_y1/north, +/area/space) + +(1,1,1) = {" +i +a +"} +(2,1,1) = {" +O +E +"} +(3,1,1) = {" +I +a +"} diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_upp_lz1.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_upp_lz1.dmm index e1d601f949c4..c5d43990fc57 100644 --- a/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_upp_lz1.dmm +++ b/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_upp_lz1.dmm @@ -1,4 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/sign/flag/upp{ + pixel_y = 28; + layer = 2.7 + }, +/turf/template_noop, +/area/template_noop) "ab" = ( /obj/item/paper{ pixel_x = 2; @@ -29,16 +36,102 @@ }, /turf/open/floor/plating, /area/lv759/indoors/spaceport/cuppajoes) +"ad" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/spaceport/docking_bay_1) +"ae" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 49; + pixel_x = -8 + }, +/turf/open/floor/strata/orange_icorner, +/area/lv759/indoors/spaceport/docking_bay_1) +"af" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 31; + pixel_x = 1 + }, +/obj/structure/sign/banners/upp_flag{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/strata/orange_edge/north, +/area/lv759/indoors/spaceport/docking_bay_1) +"ag" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/spaceport/docking_bay_1) +"ah" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/strata/orange_edge/north, +/area/lv759/indoors/spaceport/docking_bay_1) "ai" = ( /obj/vehicle/train/cargo/engine{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) +"aj" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = -1; + pixel_x = 7 + }, +/turf/open/floor/strata/orange_cover, +/area/lv759/indoors/spaceport/docking_bay_1) +"ak" = ( +/obj/structure/largecrate/empty, +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -15 + }, +/turf/open/floor/hybrisa/misc/spaceport2, +/area/lv759/indoors/spaceport/docking_bay_1) +"al" = ( +/obj/structure/largecrate/empty/secure, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/hybrisa/misc/spaceport1, +/area/lv759/indoors/spaceport/docking_bay_1) "am" = ( /obj/structure/platform/metal/strata/west, /turf/open/floor/strata/orange_edge/west, /area/lv759/indoors/spaceport/docking_bay_1) +"an" = ( +/obj/structure/window/framed/hybrisa/spaceport, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) +"ao" = ( +/obj/structure/window/framed/hybrisa/spaceport, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/communications_office) "ap" = ( /obj/item/stack/sheet/metal, /obj/structure/machinery/power/apc/no_power/north, @@ -66,6 +159,68 @@ }, /turf/open/floor/hybrisa/tile/cuppajoesfloor, /area/lv759/indoors/spaceport/cuppajoes) +"as" = ( +/obj/structure/machinery/light/spot/blue, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"at" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"au" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"av" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"aw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/WY/WY1{ + pixel_y = 16 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) +"ax" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/indoors/spaceport/docking_bay_2) "ay" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced/colony{ autoname = 1; @@ -81,6 +236,20 @@ }, /turf/open/floor/corsat, /area/lv759/indoors/spaceport/janitor) +"aA" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"aB" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"aC" = ( +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) "aD" = ( /obj/structure/platform/metal/strata/west, /obj/structure/barricade/handrail/strata{ @@ -92,17 +261,14 @@ "aE" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/cuppajoes) -"aF" = ( -/obj/structure/platform/metal/strata/west, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "aG" = ( /turf/open/hybrisa/dropship/dropship4, /area/lv759/indoors/spaceport/horizon_runner) +"aH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) "aI" = ( /obj/structure/surface/table/almayer, /obj/item/fuel_cell{ @@ -133,6 +299,28 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) +"aK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/vehicle/powerloader{ + dir = 8; + layer = 5; + level = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"aL" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) +"aM" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"aN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) "aO" = ( /obj/structure/machinery/newscaster{ pixel_y = 30 @@ -146,6 +334,11 @@ }, /turf/open/floor/hybrisa/tile/cuppajoesfloor, /area/lv759/indoors/spaceport/cuppajoes) +"aQ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/spaceport/docking_bay_2) "aR" = ( /obj/structure/platform/metal/strata/west, /obj/structure/pipes/standard/simple/hidden/dark, @@ -176,6 +369,10 @@ /obj/structure/prop/hybrisa/supermart/freezer/supermartfreezer5, /turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/kitchen) +"aW" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/lv759/indoors/spaceport/docking_bay_2) "aX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -188,6 +385,17 @@ }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_2) +"aY" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/blue3/east, +/area/lv759/indoors/spaceport/docking_bay_2) +"aZ" = ( +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) +"ba" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv759/indoors/spaceport/docking_bay_2) "bb" = ( /obj/item/trash/hotdog, /obj/structure/closet/crate/trashcart, @@ -204,6 +412,28 @@ /obj/structure/platform/metal/hybrisa/metalplatform6/east, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/indoors/spaceport/docking_bay_1) +"bd" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata/blue3/west, +/area/lv759/indoors/spaceport/docking_bay_2) +"be" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/lv759/indoors/spaceport/docking_bay_2) +"bf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv759/indoors/spaceport/docking_bay_2) "bg" = ( /obj/item/reagent_container/food/snacks/cookie{ pixel_y = 10; @@ -250,7 +480,7 @@ /turf/open/floor/strata/orange_edge/north, /area/lv759/indoors/spaceport/docking_bay_1) "bq" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "47" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -305,13 +535,6 @@ }, /turf/open/floor/almayer/cargo, /area/lv759/indoors/spaceport/baggagehandling) -"bL" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/spaceport/docking_bay_2) "bO" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -471,13 +694,6 @@ }, /turf/open/floor/corsat, /area/lv759/indoors/spaceport/janitor) -"cL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control/upp{ - name = "Remote dropship navigation computer" - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/event/metal/dynamic) "cN" = ( /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 1 @@ -488,6 +704,7 @@ /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 1 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/docking_bay_2) "cQ" = ( @@ -496,12 +713,6 @@ /area/lv759/indoors/spaceport/kitchen) "cT" = ( /obj/effect/landmark/objective_landmark/medium, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - pixel_y = 32; - alpha = 220; - layer = 2.9 - }, /obj/structure/filingcabinet/chestdrawer{ pixel_x = 8; pixel_y = 21; @@ -616,12 +827,11 @@ /turf/open/floor/almayer/test_floor5, /area/lv759/indoors/spaceport/horizon_runner) "dv" = ( -/obj/structure/platform_decoration/metal/strata/west, /obj/item/tool/warning_cone{ pixel_x = -21; pixel_y = 3 }, -/turf/open/floor/strata/blue3, +/turf/open/floor/strata/blue3/north, /area/lv759/indoors/spaceport/docking_bay_2) "dy" = ( /turf/closed/wall/hybrisa/spaceport/reinforced, @@ -693,7 +903,7 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/spaceport/heavyequip) "dR" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "leftengine_3" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -725,9 +935,6 @@ /turf/open/floor/hybrisa/misc/spaceport2, /area/lv759/indoors/spaceport/docking_bay_1) "dW" = ( -/obj/structure/machinery/light/blue{ - dir = 4 - }, /obj/structure/sign/safety/one{ pixel_x = -17; pixel_y = 32 @@ -735,6 +942,9 @@ /obj/structure/barricade/metal/wired{ dir = 1 }, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/docking_bay_1) "dX" = ( @@ -791,7 +1001,7 @@ /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "ev" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "rightengine_3" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -828,6 +1038,11 @@ "eJ" = ( /obj/structure/window/framed/hybrisa/spaceport, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/spaceport/communications_office) "eK" = ( @@ -853,12 +1068,6 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = -32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1, /area/lv759/indoors/spaceport/communications_office) "eW" = ( @@ -875,16 +1084,10 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/docking_bay_1) "eZ" = ( -/obj/structure/platform_decoration/metal/strata, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 9 }, -/turf/open/floor/strata/blue3/north, +/turf/open/floor/strata/blue3, /area/lv759/indoors/spaceport/docking_bay_2) "fa" = ( /obj/structure/barricade/handrail/strata{ @@ -902,7 +1105,7 @@ /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "fh" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing3"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -971,14 +1174,6 @@ }, /turf/open/floor/almayer, /area/lv759/indoors/spaceport/baggagehandling) -"fA" = ( -/obj/structure/platform/metal/strata/east, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "fC" = ( /obj/structure/platform/metal/strata/west, /obj/item/stack/cable_coil/cut{ @@ -1055,16 +1250,6 @@ /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) -"ga" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -9; - pixel_y = 10 - }, -/obj/structure/machinery/light/blue{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "gd" = ( /obj/structure/machinery/telecomms/relay/preset/tower/all, /turf/open/floor/hybrisa/metal/bluemetalfull, @@ -1076,11 +1261,9 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "gg" = ( -/obj/structure/sign/flag/upp{ - dir = 1; - pixel_y = 26; - layer = 2.7; - pixel_x = 17 +/obj/structure/sign/banners/upp_flag{ + pixel_x = 16; + pixel_y = 32 }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) @@ -1128,11 +1311,11 @@ /turf/closed/wall/hybrisa/spaceport/reinforced, /area/lv759/indoors/spaceport/janitor) "gs" = ( +/obj/structure/platform/metal/stair_cut/strata_right, /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 + dir = 4 }, -/obj/structure/platform/metal/stair_cut/strata_right, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) "gy" = ( @@ -1147,17 +1330,15 @@ /turf/open/floor/strata/orange_edge/north, /area/lv759/indoors/spaceport/docking_bay_1) "gB" = ( -/obj/structure/platform/metal/strata, /obj/item/tool/warning_cone{ pixel_x = -9; pixel_y = 20 }, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/blue3/north, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "gD" = ( /obj/structure/bed/chair/office/light{ @@ -1182,7 +1363,7 @@ /turf/open/floor/strata/blue3/north, /area/lv759/indoors/spaceport/docking_bay_2) "gK" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "92" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -1319,12 +1500,6 @@ "hl" = ( /turf/open/floor/strata/red3/north, /area/lv759/indoors/spaceport/security) -"hm" = ( -/obj/structure/machinery/light/blue{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "hn" = ( /obj/structure/platform/metal/strata/east, /obj/effect/decal/warning_stripes{ @@ -1344,12 +1519,6 @@ /obj/structure/machinery/big_computers/messaging_server/brown{ dir = 4 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1/northwest, /area/lv759/indoors/spaceport/communications_office) "hu" = ( @@ -1367,7 +1536,7 @@ /turf/open/floor/strata/red3/west, /area/lv759/indoors/spaceport/security_office) "hy" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "64" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -1682,7 +1851,7 @@ /turf/open/floor/plating, /area/lv759/indoors/spaceport/heavyequip) "iU" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "36" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -1793,10 +1962,6 @@ /turf/open/floor/plating, /area/lv759/indoors/spaceport/security) "jq" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright"; - color = "#d3d3d3" - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, @@ -1873,18 +2038,15 @@ pixel_x = -13; pixel_y = 11 }, -/obj/structure/machinery/light/spot/blue{ +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ dir = 8; - pixel_x = -8 + pixel_x = 1; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) "jU" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft"; - color = "#d3d3d3" - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, @@ -2052,7 +2214,7 @@ /turf/open/floor/almayer/plating_striped/west, /area/lv759/indoors/spaceport/baggagehandling) "kI" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "99" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -2120,14 +2282,6 @@ }, /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/docking_bay_1) -"kY" = ( -/obj/structure/platform/metal/strata/east, -/obj/structure/largecrate/empty/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/ramptop, -/area/lv759/indoors/spaceport/docking_bay_2) "kZ" = ( /obj/structure/machinery/light/blue, /obj/structure/machinery/big_computers/messaging_server/black{ @@ -2291,7 +2445,7 @@ /turf/closed/wall/hybrisa/spaceport/unmeltable, /area/lv759/oob) "mp" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "83" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -2313,7 +2467,8 @@ /area/lv759/indoors/spaceport/docking_bay_1) "mu" = ( /obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 + pixel_x = -18; + pixel_y = 6 }, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/blue3/west, @@ -2326,13 +2481,11 @@ /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/spaceport/cargo) "mx" = ( -/obj/structure/platform/metal/strata, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/blue3/north, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "mD" = ( /obj/item/shard, @@ -2365,11 +2518,9 @@ /turf/open/floor/strata/blue3/east, /area/lv759/indoors/spaceport/docking_bay_2) "mL" = ( -/obj/structure/platform/metal/strata/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/prison/ramptop, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "mQ" = ( /obj/structure/sink, @@ -2474,7 +2625,6 @@ /turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_1) "nH" = ( -/obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 8 }, @@ -2516,8 +2666,11 @@ /turf/open/floor/prison/cell_stripe/west, /area/lv759/indoors/spaceport/docking_bay_2) "nV" = ( -/obj/structure/platform/metal/strata/north, -/turf/open/floor/strata/blue3, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_2) "nW" = ( /obj/structure/platform/metal/strata, @@ -2565,7 +2718,7 @@ /turf/open/floor/strata/orange_edge/north, /area/lv759/indoors/spaceport/docking_bay_1) "of" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "37" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -2707,6 +2860,7 @@ /turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/baggagehandling) "pf" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/prop/hybrisa/airport/refuelinghose2{ layer = 1; pixel_x = -12; @@ -2742,16 +2896,6 @@ }, /turf/open/floor/almayer/cargo, /area/lv759/indoors/spaceport/baggagehandling) -"pv" = ( -/obj/structure/platform/metal/strata, -/obj/structure/platform/metal/strata/west, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "pw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2814,6 +2958,7 @@ /obj/structure/prop/hybrisa/airport/dropshipnosecone{ dir = 4 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) "pU" = ( @@ -3033,16 +3178,6 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/strata/red3, /area/lv759/indoors/spaceport/security_office) -"rg" = ( -/obj/structure/platform/metal/strata, -/obj/structure/platform/metal/strata/east, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, -/turf/open/floor/strata/blue3/north, -/area/lv759/indoors/spaceport/docking_bay_2) "rh" = ( /obj/structure/bed/chair/vehicle/white{ pixel_x = 8 @@ -3091,7 +3226,7 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/docking_bay_2) "rq" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "62" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -3194,11 +3329,13 @@ /turf/closed/wall/hybrisa/spaceport, /area/lv759/indoors/spaceport/cuppajoes) "sc" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/prop/hybrisa/airport/refuelinghose{ layer = 1; pixel_x = -12; pixel_y = -12 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/spaceport/docking_bay_2) "sd" = ( @@ -3216,7 +3353,7 @@ /turf/open/floor/corsat/officetiles, /area/lv759/indoors/spaceport/horizon_runner) "sh" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "leftengine_1" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -3423,17 +3560,12 @@ /turf/open/floor/almayer/tcomms, /area/lv759/indoors/spaceport/docking_bay_1) "tu" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - locked = 1 - }, +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) "tv" = ( -/obj/structure/sign/flag/upp{ - dir = 1; - pixel_y = 26; - layer = 2.7; - pixel_x = 17 +/obj/structure/prop/hybrisa/misc/machinery/screens/frame{ + pixel_y = 32 }, /turf/open/floor/strata/orange_icorner/north, /area/lv759/indoors/spaceport/docking_bay_1) @@ -3444,7 +3576,7 @@ /turf/open/floor/strata/orange_edge/west, /area/lv759/indoors/spaceport/docking_bay_1) "ty" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "rightengine_1" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -3452,7 +3584,7 @@ /turf/open/floor/hybrisa/misc/wysmallright, /area/lv759/indoors/spaceport/docking_bay_1) "tA" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "75" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -3485,11 +3617,13 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/cuppajoes) "tM" = ( -/obj/structure/platform/metal/strata/west, /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_2) "tY" = ( @@ -3517,6 +3651,7 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "uc" = ( +/obj/effect/decal/hybrisa/dirt, /obj/item/fuel_cell, /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/spaceport/docking_bay_2) @@ -3547,6 +3682,10 @@ pixel_x = -6; pixel_y = -5 }, +/obj/item/ammo_box/magazine/misc/mre/emergency{ + pixel_x = 9; + pixel_y = -3 + }, /turf/open/floor/almayer/test_floor5, /area/lv759/indoors/spaceport/horizon_runner) "uk" = ( @@ -3571,7 +3710,7 @@ /turf/open/floor/plating, /area/lv759/indoors/spaceport/communications_office) "up" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "brokendropshipconsole3"; opacity = 0 }, @@ -3648,10 +3787,13 @@ pixel_x = -6; pixel_y = 7 }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "uJ" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "69" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -3750,6 +3892,9 @@ pixel_x = -6; pixel_y = 4 }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "vj" = ( @@ -4073,7 +4218,7 @@ /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/spaceport/docking_bay_2) "wR" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "94" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -4153,15 +4298,14 @@ /turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/heavyequip) "xo" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /obj/structure/largecrate/empty/case/double, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "xq" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "wy2" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -4198,7 +4342,7 @@ /turf/open/floor/almayer/orange/east, /area/lv759/indoors/spaceport/heavyequip) "xF" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "48" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -4375,10 +4519,10 @@ /turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/spaceport/docking_bay_1) "yP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/decal/cleanable/dirt{ + layer = 4 }, -/turf/open/floor/prison/ramptop, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "yS" = ( /obj/structure/window/framed/hybrisa/spaceport/reinforced, @@ -4486,6 +4630,7 @@ /area/lv759/indoors/spaceport/baggagehandling) "zL" = ( /obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/blue3/east, /area/lv759/indoors/spaceport/docking_bay_2) "zN" = ( @@ -4792,7 +4937,7 @@ /turf/open/floor/corsat, /area/lv759/indoors/spaceport/engineering) "Bj" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "73" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -4861,12 +5006,6 @@ /turf/open/floor/strata/red3/north, /area/lv759/indoors/spaceport/security) "BF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, /obj/structure/barricade/metal/wired{ dir = 4 }, @@ -4928,7 +5067,7 @@ /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/docking_bay_1) "BY" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing6"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -5055,9 +5194,8 @@ pixel_y = 10; pixel_x = 5 }, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 +/obj/structure/machinery/light/blue{ + dir = 4 }, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) @@ -5167,13 +5305,6 @@ }, /turf/open/floor/hybrisa/tile/cuppajoesfloor, /area/lv759/indoors/spaceport/cuppajoes) -"Dp" = ( -/obj/structure/largecrate/empty/secure, -/obj/structure/machinery/light/blue{ - dir = 8 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "Dr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5185,14 +5316,6 @@ }, /turf/open/floor/hybrisa/metal/bluemetal1/north, /area/lv759/indoors/spaceport/flight_control_room) -"Ds" = ( -/obj/structure/platform/metal/strata/west, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, -/turf/open/floor/strata/blue3/west, -/area/lv759/indoors/spaceport/docking_bay_2) "Dt" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -5480,7 +5603,7 @@ /turf/closed/wall/hybrisa/spaceport/reinforced, /area/lv759/indoors/spaceport/cuppajoes) "Fa" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing8"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -5550,7 +5673,7 @@ /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "Fm" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "wy_rightengine" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -5720,6 +5843,9 @@ "Ge" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8 + }, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) "Gk" = ( @@ -5769,7 +5895,9 @@ /area/lv759/indoors/spaceport/docking_bay_1) "Gr" = ( /obj/structure/bed/chair/dropship/pilot{ - dir = 1 + dir = 1; + pixel_y = 8; + buckling_y = 8 }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, /area/lv759/indoors/spaceport/horizon_runner) @@ -5781,7 +5909,8 @@ /area/lv759/indoors/spaceport/cargo) "Gu" = ( /obj/structure/machinery/light/blue{ - dir = 8 + dir = 8; + pixel_y = -15 }, /turf/open/floor/hybrisa/misc/spaceport1, /area/lv759/indoors/spaceport/docking_bay_1) @@ -5887,7 +6016,7 @@ /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/flight_control_room) "GQ" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "78" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -5898,14 +6027,6 @@ }, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) -"GV" = ( -/obj/structure/platform/metal/strata/north, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = 3 - }, -/turf/open/floor/strata/blue3, -/area/lv759/indoors/spaceport/docking_bay_2) "GY" = ( /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/spaceport/docking_bay_1) @@ -6093,8 +6214,7 @@ /turf/open/floor/strata/orange_edge/east, /area/lv759/indoors/spaceport/docking_bay_1) "HZ" = ( -/obj/structure/platform_decoration/metal/strata/east, -/turf/open/floor/strata/blue3, +/turf/open/floor/strata/blue3/north, /area/lv759/indoors/spaceport/docking_bay_2) "Ia" = ( /obj/structure/platform/metal/strata/west, @@ -6110,16 +6230,10 @@ /turf/open/floor/corsat, /area/lv759/indoors/spaceport/engineering) "Ic" = ( -/obj/structure/platform_decoration/metal/strata/north, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - pixel_x = 1 - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 5 }, -/turf/open/floor/strata/blue3/north, +/turf/open/floor/strata/blue3, /area/lv759/indoors/spaceport/docking_bay_2) "Id" = ( /obj/item/stack/sheet/metal, @@ -6357,14 +6471,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/orange_edge/east, /area/lv759/indoors/spaceport/docking_bay_1) -"JF" = ( -/obj/structure/platform/metal/strata/east, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, -/turf/open/floor/strata/blue3/east, -/area/lv759/indoors/spaceport/docking_bay_2) "JI" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 @@ -6381,13 +6487,15 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/machinery/computer/communications/simple, /obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_off{ dir = 4; pixel_y = 32 }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control/upp{ + name = "Remote dropship navigation computer" + }, /turf/open/floor/hybrisa/metal/bluemetalfull, -/area/lv759/indoors/spaceport/flight_control_room) +/area/event/metal/dynamic) "JK" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 @@ -6412,11 +6520,10 @@ /turf/open/floor/almayer/plating_striped/east, /area/lv759/indoors/spaceport/baggagehandling) "JS" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/blue3/east, /area/lv759/indoors/spaceport/docking_bay_2) "JT" = ( @@ -6536,7 +6643,7 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "Ks" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "zwing0" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -6644,12 +6751,12 @@ /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/docking_bay_2) "Lh" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "wy_leftengine" }, /area/lv759/indoors/spaceport/horizon_runner) "Lj" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing2"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -6660,10 +6767,7 @@ /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "Ls" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/spaceport/docking_bay_2) "Lx" = ( @@ -6679,12 +6783,6 @@ /turf/open/floor/hybrisa/metal/bluemetalfull, /area/lv759/indoors/spaceport/communications_office) "LA" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1/north, /area/lv759/indoors/spaceport/communications_office) "LB" = ( @@ -6728,7 +6826,7 @@ /turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/heavyequip) "LU" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "67" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -6745,7 +6843,7 @@ "Md" = ( /obj/structure/platform/metal/strata/east, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/blue3, /area/lv759/indoors/spaceport/docking_bay_2) "Mp" = ( /obj/structure/machinery/conveyor{ @@ -6758,6 +6856,9 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "Mr" = ( @@ -6891,12 +6992,6 @@ pixel_y = 17 }, /obj/structure/pipes/standard/simple/hidden/dark, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 3.2; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/hybrisa/metal/bluemetal1/north, /area/lv759/indoors/spaceport/communications_office) "MP" = ( @@ -6993,9 +7088,8 @@ pixel_y = 6; pixel_x = 5 }, -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 +/obj/structure/machinery/light/blue{ + dir = 4 }, /turf/open/floor/strata/orange_cover, /area/lv759/indoors/spaceport/docking_bay_1) @@ -7087,6 +7181,7 @@ /turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/baggagehandling) "Oa" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 8 }, @@ -7156,9 +7251,6 @@ }, /turf/open/floor/strata/orange_edge/north, /area/lv759/indoors/spaceport/hallway_east) -"Oq" = ( -/turf/closed/wall/hybrisa/spaceport, -/area/lv759/indoors/spaceport/docking_bay_2) "Os" = ( /obj/item/reagent_container/food/drinks/milk{ pixel_x = -9; @@ -7285,6 +7377,7 @@ /area/lv759/indoors/spaceport/docking_bay_1) "Pi" = ( /obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) "Pm" = ( @@ -7344,7 +7437,7 @@ /turf/open/floor/strata/orange_edge/east, /area/lv759/indoors/spaceport/docking_bay_1) "PD" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing7"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -7543,7 +7636,8 @@ /area/lv759/indoors/spaceport/janitor) "Rf" = ( /obj/structure/machinery/light/blue{ - dir = 4 + dir = 4; + pixel_y = -15 }, /turf/open/floor/hybrisa/misc/spaceport2, /area/lv759/indoors/spaceport/docking_bay_1) @@ -7689,11 +7783,11 @@ /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/colony_streets/north_west_street) "RS" = ( +/obj/structure/platform/metal/stair_cut/strata_left, /obj/structure/stairs{ color = "#a6aeab"; - dir = 4 + dir = 8 }, -/obj/structure/platform/metal/stair_cut/strata_left, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) "RT" = ( @@ -7918,6 +8012,9 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/spaceport/docking_bay_1) "Tr" = ( @@ -7997,7 +8094,7 @@ /turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_1) "TM" = ( -/turf/closed/shuttle/dropship2/WY/StarGlider{ +/turf/closed/shuttle/dropship4/WY/StarGlider{ icon_state = "zwing4"; opacity = 0; desc = "The WY-LWI Horizon Runner HR-150, a collaborative creation of Lunnar-Welsun Industries and Weyland-Yutani. This small dropship is designed for short-range commercial transport."; @@ -8059,10 +8156,6 @@ /obj/item/device/flashlight/lamp/tripod{ on = 0 }, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) @@ -8125,13 +8218,13 @@ /turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "Uz" = ( -/obj/structure/platform/metal/strata/west, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, /obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, /obj/item/fuel_cell, -/turf/open/floor/prison/ramptop, +/turf/open/floor/prison/cell_stripe/north, /area/lv759/indoors/spaceport/docking_bay_2) "UA" = ( /obj/item/paper, @@ -8204,15 +8297,6 @@ }, /turf/open/floor/almayer/cargo_arrow, /area/lv759/indoors/spaceport/heavyequip) -"Vf" = ( -/obj/structure/platform/metal/strata/north, -/obj/vehicle/powerloader{ - dir = 8; - layer = 5; - level = 4 - }, -/turf/open/floor/strata/blue3, -/area/lv759/indoors/spaceport/docking_bay_2) "Vg" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/far, @@ -8279,6 +8363,10 @@ /obj/structure/sign/safety/storage{ pixel_y = 32 }, +/obj/structure/sign/flag/upp{ + pixel_y = 28; + layer = 4 + }, /turf/open/floor/strata/orange_edge, /area/lv759/indoors/spaceport/docking_bay_1) "VK" = ( @@ -8384,7 +8472,7 @@ /turf/open/floor/strata/multi_tiles, /area/lv759/indoors/spaceport/security) "WB" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "95" }, /area/lv759/indoors/spaceport/horizon_runner) @@ -8406,7 +8494,7 @@ /turf/open/floor/strata/orange_icorner, /area/lv759/indoors/spaceport/docking_bay_1) "WN" = ( -/turf/closed/shuttle/dropship2/WY/HorizonRunner{ +/turf/closed/shuttle/dropship4/WY/HorizonRunner{ icon_state = "brokendropshipconsole1"; opacity = 0 }, @@ -8600,6 +8688,9 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, /turf/open/floor/prison/ramptop, /area/lv759/indoors/spaceport/docking_bay_2) "Yl" = ( @@ -8628,10 +8719,6 @@ }, /turf/open/floor/almayer/plating/northeast, /area/lv759/indoors/spaceport/docking_bay_2) -"Yy" = ( -/obj/structure/platform/metal/strata/west, -/turf/open/floor/strata/blue1, -/area/lv759/indoors/spaceport/docking_bay_2) "Yz" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 @@ -8796,13 +8883,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/spaceport/docking_bay_2) -"ZA" = ( -/obj/structure/largecrate/empty, -/obj/structure/machinery/light/blue{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/spaceport/docking_bay_1) "ZB" = ( /obj/structure/surface/rack{ layer = 4 @@ -8841,14 +8921,13 @@ /turf/open/floor/strata/floor3, /area/lv759/indoors/spaceport/security_office) "ZF" = ( -/obj/structure/machinery/light/spot/blue{ - dir = 4; - pixel_x = 8 - }, /obj/structure/bed/chair/comfy/hybrisa/brown{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 4 + }, /turf/open/floor/strata/blue3/east, /area/lv759/indoors/spaceport/docking_bay_2) "ZI" = ( @@ -8860,20 +8939,15 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/almayer/cargo, /area/lv759/indoors/spaceport/baggagehandling) -"ZJ" = ( -/obj/structure/platform/metal/strata/east, -/turf/open/floor/strata/blue1, -/area/lv759/indoors/spaceport/docking_bay_2) "ZL" = ( /obj/item/tool/warning_cone{ pixel_x = 5; pixel_y = 13 }, -/obj/structure/machinery/light/spot/blue{ - dir = 8; - pixel_x = -8 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/blue{ + dir = 8 + }, /turf/open/floor/strata/blue3/west, /area/lv759/indoors/spaceport/docking_bay_2) "ZQ" = ( @@ -8896,6 +8970,7 @@ /obj/structure/prop/hybrisa/airport/dropshipnosecone{ dir = 1 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/indoors/spaceport/docking_bay_2) @@ -9185,7 +9260,7 @@ vY vY vY XV -vY +vL zF tu pK @@ -9244,7 +9319,7 @@ zP zP zP XW -vY +vL tz jd sd @@ -9295,9 +9370,9 @@ Yd Yd Yd Yd -Yd -jd -WJ +ak +Wg +ae Go Go Go @@ -9309,7 +9384,7 @@ ra ra ra wt -YW +aa YW "} (8,1,1) = {" @@ -9354,9 +9429,9 @@ xY vm Ph im -ZA -Wg -aT +sC +sC +af Fc fa fa @@ -9474,7 +9549,7 @@ Ph ME sC sC -gE +ag HC Uk Uk @@ -10358,7 +10433,7 @@ Yd Yd Yd Rf -jd +aj gE HC Uk @@ -10401,8 +10476,8 @@ jd xY vm Ph -hm -cL +ME +ME aT GY GY @@ -10519,7 +10594,7 @@ jd xY vm Ph -ga +zp ME aT GY @@ -10534,9 +10609,9 @@ xY vm Ph ME -Dp -jd -aT +sC +sC +ah ur pI pI @@ -10593,7 +10668,7 @@ ex ex ex ex -ex +al jd iw Vh @@ -10607,7 +10682,7 @@ ra ra ra wt -YW +aa YW "} (30,1,1) = {" @@ -10675,20 +10750,20 @@ Oy uW EM Ov -bL +Ov Ov Ov Ov uc Ov Zr -Zr -Zr +aQ +aQ sc Ov +Ls Ov Ov -bL Ov Ov Iu @@ -10734,7 +10809,7 @@ En bV jq qT -Oq +qT pH pH qT @@ -10747,7 +10822,7 @@ zL qT fM vQ -Oq +qT qT qT Iu @@ -10777,7 +10852,7 @@ kL Ke Jx GE -XV +iI rd sC sC @@ -10792,8 +10867,8 @@ dF gQ pD eZ -oy -fA +aY +gI Zj dt Dy @@ -10805,9 +10880,9 @@ dt Md cy oj -ZJ -JF oy +oy +aA dv Iu Qq @@ -10851,22 +10926,22 @@ dF Kk nJ mx +aZ fZ -dP gs -Zz +cU dP dP dP fZ gs -Zz -dP +cU dP dP dP dP fZ +aB nV KC iG @@ -10893,7 +10968,7 @@ vi Aa Mp ca -ta +ad ce Pe By @@ -10907,10 +10982,10 @@ YW "} (35,1,1) = {" TP -Kk +bf nJ -rg -dP +Sx +ba dP ry ry @@ -10925,9 +11000,9 @@ iU Lh dR sh -dP -nV -KC +aC +av +as iG hR De @@ -10968,8 +11043,8 @@ YW TP Kk nJ -Sx -dP +mx +ba dP Dh tA @@ -10984,10 +11059,10 @@ jy bq Lh sh -dP +aH nV -Iu -un +at +ao hp oS EL @@ -11025,7 +11100,7 @@ YW "} (37,1,1) = {" TP -Kk +bf nJ Sl WB @@ -11046,7 +11121,7 @@ Zu Uz tM XJ -un +an cT wI UA @@ -11085,7 +11160,7 @@ YW (38,1,1) = {" TP Kk -nJ +be pT MG WN @@ -11103,8 +11178,8 @@ QA dd Pi yP -py -fm +aw +au yG cE XL @@ -11112,7 +11187,7 @@ XL Tv XL eQ -un +an Pz pX cN @@ -11171,7 +11246,7 @@ Ms Cr tc eQ -un +an Pz pX WZ @@ -11202,8 +11277,8 @@ YW "} (40,1,1) = {" TP -Kk -nJ +bf +be ZW kI wR @@ -11221,9 +11296,9 @@ hC xq qa mL -kY +py Of -un +ao LA Lx nb @@ -11261,10 +11336,10 @@ YW "} (41,1,1) = {" TP -Kk +bf nJ Sx -dP +ba dP wo mp @@ -11279,8 +11354,8 @@ du xF Fm ty -dP -Vf +aK +py cP eJ MN @@ -11320,11 +11395,11 @@ YW "} (42,1,1) = {" TP -Kk +bf nJ -pv -dP -dP +Sx +ba +aW ry ry Vy @@ -11338,9 +11413,9 @@ of Fm ev ty -dP -GV -KC +aL +nV +as iG qJ Tv @@ -11382,23 +11457,23 @@ TP Kk nJ gB +aZ fZ -dP RS -cU +Zz dP dP dP fZ RS -cU -dP +Zz dP dP dP dP fZ -nV +aB +ax KC iG Fh @@ -11441,8 +11516,8 @@ TP Uw he Ic -bu -aF +bd +wf vg Hv RX @@ -11451,12 +11526,12 @@ bu wf vg Hv -Yy +RX bu bu -Yy -Ds bu +bu +aM HZ FJ iG @@ -11501,7 +11576,7 @@ En SM jU rU -Oq +rU pH pH rU @@ -11514,7 +11589,7 @@ rU rU rU rU -Oq +rU rU rU Iu @@ -11560,12 +11635,12 @@ Oy SV EM Ov -Ls -Ov Ov Ov Ov Ov +Ls +Ls Ov Ov Ov @@ -11631,7 +11706,7 @@ JS Kt Kt Kt -wP +aN Rs pA Gk diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_uscm_lz1.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_uscm_lz1.dmm index 209feeeabffe..626e524b3cd3 100644 --- a/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_uscm_lz1.dmm +++ b/maps/map_files/LV759_Hybrisa_Prospera/standalone/landingzone_hybrisa_uscm_lz1.dmm @@ -8,23 +8,34 @@ /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "ac" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/mining_outpost/south_entrance) "ad" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/mining_outpost/south_entrance) "ae" = ( /obj/structure/barricade/metal/wired{ - brute_multiplier = 0.05; - burn_multiplier = 0.1; - dir = 8; - explosive_multiplier = 0.1; - pixel_x = -5 + dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/hybrisa/metal/grated/east, /area/lv759/outdoors/mining_outpost/south_entrance) "af" = ( /obj/effect/decal/hybrisa/dirt, @@ -42,6 +53,7 @@ /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "ah" = ( +/obj/effect/decal/hybrisa/dirt, /obj/item/trash/cigbutt, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) @@ -49,6 +61,7 @@ /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/mining_outpost/south_entrance) "aj" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -195,19 +208,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"aH" = ( -/obj/item/stack/sheet/wood{ - layer = 2 - }, -/obj/effect/decal/hybrisa/road/lines3, -/obj/structure/barricade/handrail/hybrisa/road/metal/metaldark{ - pixel_y = -5 - }, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "aI" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/decal/hybrisa/road/lines1, @@ -245,12 +245,6 @@ icon_state = "pottedplant_17"; pixel_y = 13 }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 2.9; - pixel_y = 32; - alpha = 220 - }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "aN" = ( @@ -427,10 +421,6 @@ /obj/effect/decal/hybrisa/road/lines2, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"bl" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/corsat/spiralplate, -/area/lv759/outdoors/landing_zone_2) "bm" = ( /obj/effect/decal/hybrisa/road/lines3, /obj/effect/decal/hybrisa/road/lines4, @@ -440,13 +430,6 @@ /obj/structure/barricade/handrail/hybrisa/handrail, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) -"bn" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/structure/prop/hybrisa/vehicles/Small_Truck/Mining{ - dir = 1 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "bo" = ( /obj/effect/decal/hybrisa/road/lines3, /obj/effect/decal/hybrisa/road/road_edge{ @@ -472,6 +455,9 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "br" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/road/lines2, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_y = 16 @@ -623,20 +609,6 @@ "bJ" = ( /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/landing_zone_2) -"bK" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - layer = 3 - }, -/obj/structure/largecrate/random/mini{ - pixel_y = 8; - layer = 2.9; - pixel_x = -9 - }, -/obj/item/stack/sheet/cardboard{ - layer = 1 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "bL" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, /turf/open/floor/plating, @@ -664,12 +636,6 @@ }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"bO" = ( -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/southeast, -/area/lv759/outdoors/landing_zone_2) "bP" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" @@ -786,6 +752,13 @@ pixel_y = -5; layer = 3.2 }, +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = -4 + }, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "cc" = ( @@ -804,9 +777,6 @@ /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) "cf" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, /obj/effect/decal/hybrisa/tiretrack{ dir = 8; pixel_y = 12 @@ -830,6 +800,9 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "ci" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/landing_zone_2) "cj" = ( @@ -837,6 +810,9 @@ icon_state = "stop_decal2" }, /obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "ck" = ( @@ -844,6 +820,9 @@ /obj/effect/decal/hybrisa/tiretrack{ pixel_x = 7 }, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "cl" = ( @@ -852,6 +831,9 @@ icon_state = "road_edge_decal4" }, /obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "cm" = ( @@ -869,8 +851,42 @@ /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal10" }, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) +"co" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cq" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) +"cr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) +"cs" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2"; + pixel_x = -19; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "ct" = ( /obj/item/tool/warning_cone{ pixel_x = -13; @@ -878,20 +894,163 @@ }, /turf/open/hybrisa/street/sidewalk/northwest, /area/lv759/outdoors/landing_zone_2) -"cw" = ( -/obj/item/trash/barcardine, +"cu" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/stripe_red, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_x = -9; + pixel_y = 32 + }, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) +"cx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cA" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/prison/ramptop, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cB" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cG" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/almayer/plate, -/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) -"cF" = ( -/obj/structure/cargo_container/wy/right, +/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) +"cH" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cI" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cJ" = ( +/obj/structure/largecrate/empty{ + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = -3; + pixel_y = 14 + }, +/obj/item/device/megaphone{ + pixel_x = 1; + pixel_y = 7 + }, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) +"cK" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "cL" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cM" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/mining_outpost/south_entrance) +"cN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_south) +"cO" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -7 + }, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cP" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cR" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe3, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/landing_zone_2) "cS" = ( /obj/structure/prop/invuln/overhead_pipe{ color = "#a6aeab"; @@ -901,35 +1060,193 @@ }, /turf/closed/wall/hybrisa/colony/reinforced, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) -"db" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating, -/area/lv759/outdoors/landing_zone_2) -"de" = ( +"cT" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cU" = ( +/obj/effect/decal/hybrisa/dirt, /turf/closed/wall/hybrisa/colony, -/area/lv759/indoors/electical_systems/substation2) -"df" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cV" = ( +/turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/landing_zone_2) -"dp" = ( -/obj/item/trash/cigbutt{ - pixel_y = 8 +"cW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv759/outdoors/landing_zone_2) +"cX" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 }, -/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) -"dv" = ( -/obj/structure/window/framed/hybrisa/colony/reinforced, -/obj/structure/machinery/door/poddoor/hybrisa/shutters, -/turf/open/floor/plating, -/area/lv759/indoors/mining_outpost/processing) -"dw" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 +"cY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/cable{ +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"cZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_y = -16 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/landing_zone_2) +"da" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood{ + pixel_y = -8 + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"db" = ( +/obj/docking_port/stationary/marine_dropship/lz2, +/turf/open/floor/plating, +/area/lv759/outdoors/landing_zone_2) +"dc" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe3, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/landing_zone_2) +"dd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/landing_zone_2) +"de" = ( +/turf/closed/wall/hybrisa/colony, +/area/lv759/indoors/electical_systems/substation2) +"df" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/lv759/outdoors/landing_zone_2) +"dg" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/landing_zone_2) +"dh" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/lv759/outdoors/landing_zone_2) +"di" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/lv759/outdoors/landing_zone_2) +"dj" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/lv759/outdoors/landing_zone_2) +"dk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/landing_zone_2) +"dl" = ( +/obj/effect/decal/cleanable/blood{ + pixel_x = -1; + pixel_y = -12 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/prison/ramptop, +/area/lv759/outdoors/landing_zone_2) +"dn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/landing_zone_2) +"do" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dp" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dr" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/landing_zone_2) +"ds" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/landing_zone_2) +"dt" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/landing_zone_2) +"du" = ( +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dv" = ( +/obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/shutters, +/turf/open/floor/plating, +/area/lv759/indoors/mining_outpost/processing) +"dw" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/cable{ icon_state = "1-4"; color = "#550d0d" }, @@ -945,19 +1262,90 @@ /obj/item/trash/cigbutt, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) +"dx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/landing_zone_2) +"dy" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/landing_zone_2) "dz" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid, /obj/item/tool/extinguisher, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) -"dC" = ( -/obj/structure/barricade/metal/wired{ - brute_multiplier = 0.05; - burn_multiplier = 0.1; +"dA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + layer = 4; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/landing_zone_2) +"dB" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/plasteel/wired{ dir = 8; - explosive_multiplier = 0.1; - pixel_x = -5 + closed = 0 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/landing_zone_2) +"dF" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -12 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/landing_zone_2) +"dG" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/landing_zone_2) +"dH" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/landing_zone_2) +"dI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/lv759/outdoors/landing_zone_2) +"dJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + layer = 4; + pixel_y = 12 }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) @@ -983,6 +1371,20 @@ }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) +"dM" = ( +/obj/item/storage/briefcase{ + pixel_y = -2 + }, +/obj/item/card/id/visa, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) +"dN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_y = -16 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/landing_zone_2) "dO" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -990,51 +1392,168 @@ /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) +"dP" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/landing_zone_2) "dQ" = ( /obj/structure/barricade/metal/wired{ - brute_multiplier = 0.05; - burn_multiplier = 0.1; - dir = 8; - explosive_multiplier = 0.1; - pixel_x = -5 + dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/landing_zone_2) +"dR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/hybrisa/tile/cementflat, +/area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) +"dS" = ( +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/landing_zone_2) +"dT" = ( +/obj/structure/sign/poster/propaganda{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/device/binoculars{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = -7 + }, +/turf/open/floor/almayer/plate, +/area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) +"dU" = ( +/obj/structure/sign/banners/colonial_marines_flag{ + pixel_x = -15 + }, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) +"dV" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/landing_zone_2) +"dW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/landing_zone_2) +"dX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2) "dY" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/west, /obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) +"dZ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/landing_zone_2) +"ea" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/landing_zone_2) +"eb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/lv759/outdoors/landing_zone_2) "ec" = ( /turf/closed/wall/hybrisa/colony, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) +"ed" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/prop1{ + pixel_x = -15; + pixel_y = 18 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/landing_zone_2) +"ee" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/landing_zone_2) "ef" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, /turf/open/hybrisa/street/sidewalk/northeast, /area/lv759/outdoors/landing_zone_2) -"ei" = ( -/obj/structure/largecrate/random/barrel{ - desc = "A red storage barrel."; - icon_state = "barrel_red"; - name = "red barrel"; - pixel_x = 9; - pixel_y = 16 +"eg" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/handrail/hybrisa/road/metal/metaldark{ + pixel_y = -5; + layer = 3.2 + }, +/obj/item/stack/sheet/wood{ + layer = 2 }, /obj/item/tool/warning_cone{ - pixel_x = -11; - pixel_y = -4 + pixel_x = -9; + pixel_y = 20 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/decal/hybrisa/road/lines3, -/obj/structure/largecrate/random/mini{ - pixel_y = 9; - layer = 2.9; - pixel_x = -8 +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/landing_zone_2) +"eh" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5 }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/landing_zone_2) +"ej" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "ek" = ( @@ -1043,18 +1562,75 @@ pixel_x = 6; pixel_y = -16 }, -/obj/structure/ore_box{ - layer = 2 - }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) +"el" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/landing_zone_2) +"em" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/landing_zone_2) +"en" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "hybrisaLZ2_2"; + name = "Emergency Lockdown"; + needs_power = 0; + vehicle_resistant = 1 + }, +/turf/open/floor/corsat, +/area/lv759/outdoors/landing_zone_2) +"eo" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) +"ep" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) +"eq" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) "er" = ( /obj/item/tool/warning_cone{ pixel_y = 17 }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2) +"es" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#434343"; + name = "plastic flaps" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison, +/area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) "eF" = ( +/obj/effect/decal/hybrisa/dirt, /obj/item/tool/warning_cone{ pixel_x = 4; pixel_y = 18 @@ -1071,15 +1647,9 @@ }, /turf/open/floor/hybrisa/metal/grated, /area/lv759/outdoors/colony_streets/south_east_street) -"fj" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/platform/metal/hybrisa/metalplatform1/north, -/obj/structure/platform/metal/hybrisa/metalplatform1/west, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/landing_zone_2) "fs" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) "fG" = ( @@ -1106,10 +1676,6 @@ }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) -"gz" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "gH" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 @@ -1123,8 +1689,8 @@ /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "gY" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 1 +/obj/item/device/flashlight/lamp/tripod{ + on = 0 }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/landing_zone_2) @@ -1138,6 +1704,10 @@ icon_state = "p_stair_full"; color = "#b8b8b0" }, +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17 + }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "hj" = ( @@ -1166,6 +1736,7 @@ icon_state = "W"; layer = 3.3 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/outdoors/mining_outpost/south_entrance) "hv" = ( @@ -1176,12 +1747,20 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "hB" = ( /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ dir = 1 }, +/obj/item/prop/colony/canister{ + pixel_x = 5; + pixel_y = -2 + }, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "hE" = ( @@ -1195,15 +1774,6 @@ /obj/item/trash/cigbutt{ pixel_x = 7 }, -/obj/structure/largecrate/supply{ - pixel_y = 15 - }, -/obj/item/stack/sheet/cardboard{ - layer = 1 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - layer = 3 - }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "hH" = ( @@ -1214,37 +1784,35 @@ /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/plating/platingdmg2, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) -"hL" = ( -/obj/item/stack/sandbags/large_stack, -/obj/item/stack/sandbags/large_stack, -/obj/item/stack/sandbags/large_stack, -/obj/item/stack/sheet/cardboard{ - layer = 1 - }, -/obj/effect/decal/hybrisa/road/lines3, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "hO" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 3 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -3 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/landing_zone_2) "hZ" = ( -/obj/structure/closet/crate/trashcart{ - opened = 1 - }, -/obj/item/hybrisa/misc/trash_bag_full_prop{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/trash/buritto, /obj/item/trash/cigbutt{ pixel_x = -9; pixel_y = -6 }, -/obj/item/trash/hybrisa/cuppa_joes/lid, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "ib" = ( @@ -1256,9 +1824,21 @@ /area/lv759/outdoors/mining_outpost/south_entrance) "iC" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, /obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/platform/metal/hybrisa/metalplatform1/east, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) "iD" = ( @@ -1269,6 +1849,7 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "iI" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/west, /obj/structure/platform/metal/hybrisa/metalplatform1, @@ -1288,9 +1869,11 @@ /turf/open/floor/corsat, /area/lv759/outdoors/colony_streets/south_east_street) "jv" = ( +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) "jE" = ( +/obj/effect/decal/hybrisa/dirt, /obj/item/fuel_cell, /turf/open/floor/prison, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) @@ -1310,6 +1893,7 @@ pixel_x = -13; pixel_y = 11 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2) "kd" = ( @@ -1327,47 +1911,31 @@ "kt" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, /obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) "ku" = ( -/obj/structure/ore_box{ - layer = 4 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "kx" = ( /obj/effect/decal/hybrisa/road/lines2, -/obj/structure/largecrate/random/barrel{ - layer = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = -15; - pixel_y = -9 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal9" }, /obj/effect/decal/hybrisa/road/lines1, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "kB" = ( /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_south) -"kD" = ( -/obj/structure/largecrate/random/barrel/red{ - pixel_x = -4 - }, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "kF" = ( /obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ dir = 4; @@ -1417,6 +1985,8 @@ /obj/structure/prop/hybrisa/misc/fake/lattice/full, /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/landing_zone_2) "lj" = ( @@ -1426,8 +1996,9 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 10 }, -/obj/structure/barricade/metal/wired{ - dir = 1 +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 }, /turf/open/floor/hybrisa/metal/grated/east, /area/lv759/outdoors/landing_zone_2) @@ -1445,33 +2016,19 @@ /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/hybrisa/street/cement3, +/turf/open/hybrisa/street/sidewalk/southwest, /area/lv759/outdoors/landing_zone_2) "lt" = ( /obj/effect/sentry_landmark/lz_2/top_right, /turf/open/hybrisa/street/sidewalk/northeast, /area/lv759/outdoors/landing_zone_2) "lx" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/prop/hybrisa/vehicles/Armored_Truck/Blue{ dir = 4 }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"lC" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full"; - color = "#b8b8b0" - }, -/obj/structure/barricade/metal/wired{ - brute_multiplier = 0.05; - burn_multiplier = 0.1; - dir = 8; - explosive_multiplier = 0.1; - pixel_x = -5 - }, -/turf/open/hybrisa/street/cement3, -/area/lv759/outdoors/landing_zone_2) "lI" = ( /obj/effect/decal/hybrisa/dirt, /obj/structure/largecrate/random/barrel/red{ @@ -1487,6 +2044,7 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "lS" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop, /area/lv759/outdoors/landing_zone_2) "lT" = ( @@ -1507,8 +2065,8 @@ /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/mining_outpost/south_entrance) "lY" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/platform/metal/hybrisa/metalplatform6/west, -/obj/structure/barricade/metal/wired, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/mining_outpost/south_entrance) "lZ" = ( @@ -1564,6 +2122,10 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "mo" = ( @@ -1580,6 +2142,7 @@ /turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2) "mN" = ( +/obj/effect/decal/hybrisa/dirt, /obj/effect/sentry_landmark/lz_2/bottom_left, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) @@ -1603,15 +2166,11 @@ pixel_y = -3; layer = 2.9 }, +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "nq" = ( /obj/item/stack/sheet/wood/medium_stack, -/obj/item/stack/sheet/wood/medium_stack, -/obj/item/stack/sheet/cardboard/small_stack, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -1648,6 +2207,7 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "nH" = ( /obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ dir = 4 }, @@ -1658,7 +2218,8 @@ dir = 9 }, /obj/structure/barricade/plasteel/wired{ - dir = 8 + dir = 8; + closed = 0 }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) @@ -1691,28 +2252,30 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "or" = ( -/obj/item/device/binoculars{ - pixel_y = 12; - pixel_x = 3 - }, /obj/structure/machinery/big_computers/messaging_server/brown{ dir = 1 }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "ou" = ( -/obj/structure/barricade/handrail/hybrisa/handrail{ - dir = 8; - layer = 4 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) "oA" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 3 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -3 + }, /obj/structure/platform/metal/hybrisa/metalplatform1/east, /obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/landing_zone_2) "oE" = ( @@ -1740,6 +2303,7 @@ color = "#434343"; name = "plastic flaps" }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) "oZ" = ( @@ -1748,10 +2312,6 @@ }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_south) -"po" = ( -/obj/structure/barricade/plasteel/wired, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/outdoors/mining_outpost/south_entrance) "pq" = ( /turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -1781,26 +2341,52 @@ pixel_x = -19; pixel_y = 32 }, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/landing_zone_2) "pU" = ( -/obj/structure/cargo_container/kelland/left, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "qb" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4; + layer = 2.5 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) "qn" = ( -/obj/item/stack/sheet/metal/large_stack, /obj/item/stack/rods{ pixel_y = -2 }, -/obj/item/stack/sheet/metal/large_stack, +/obj/effect/decal/hybrisa/road/lines3, /obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/large_stack{ + pixel_y = 6 + }, +/obj/item/stack/sheet/metal/large_stack, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "qt" = ( @@ -1810,6 +2396,8 @@ /obj/structure/machinery/landinglight/ds1{ dir = 1 }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) "qJ" = ( @@ -1818,12 +2406,29 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "qK" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4; + layer = 2.5 + }, /obj/structure/machinery/light/double/blue{ dir = 4 }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) "qM" = ( @@ -1832,6 +2437,8 @@ pixel_y = 6 }, /obj/effect/decal/strata_decals/grime/grime3, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt_2, /obj/item/trash/cigbutt{ pixel_x = -9; pixel_y = -6 @@ -1843,7 +2450,9 @@ pixel_x = -11; pixel_y = 6 }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/blue, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/mining_outpost/south_entrance) "qY" = ( @@ -1866,6 +2475,7 @@ /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -6 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) "rp" = ( @@ -1902,6 +2512,7 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) "sq" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/largecrate/random/barrel{ desc = "A red storage barrel."; icon_state = "barrel_red"; @@ -1922,16 +2533,6 @@ }, /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/landing_zone_2) -"ss" = ( -/obj/structure/largecrate/random/barrel{ - desc = "A yellow storage barrel."; - icon_state = "barrel_yellow"; - name = "yellow barrel"; - pixel_x = 6; - pixel_y = -16 - }, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "sw" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -1968,19 +2569,6 @@ }, /turf/closed/wall/hybrisa/colony/reinforced, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) -"sR" = ( -/obj/item/device/flashlight/lamp/tripod{ - on = 0 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv759/outdoors/landing_zone_2) -"sT" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/landing_zone_2) "sW" = ( /turf/closed/wall/hybrisa/colony/reinforced, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) @@ -2006,6 +2594,7 @@ icon_state = "W"; layer = 3.3 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/outdoors/mining_outpost/south_entrance) "tq" = ( @@ -2016,9 +2605,10 @@ /turf/open/floor/prison/cell_stripe/north, /area/lv759/outdoors/mining_outpost/south_entrance) "tz" = ( -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) @@ -2036,13 +2626,11 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"tI" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/landing_zone_2) "tJ" = ( -/obj/structure/largecrate/random/barrel/brown, /obj/effect/decal/cleanable/blood/oil/streak, +/obj/item/stack/sheet/cardboard{ + layer = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "tS" = ( @@ -2054,8 +2642,9 @@ /turf/open/floor/prison/ramptop/east, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) "tT" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 7; + pixel_y = -2 }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) @@ -2087,19 +2676,20 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "tY" = ( +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "ue" = ( /turf/closed/wall/hybrisa/colony/reinforced, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) "ug" = ( +/obj/effect/decal/hybrisa/dirt, /obj/effect/sentry_landmark/lz_2/bottom_right, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) "ui" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -9; - pixel_y = 10 +/obj/structure/barricade/metal/wired{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) @@ -2114,14 +2704,6 @@ /obj/structure/sign/safety/airtraffictower, /turf/closed/wall/hybrisa/colony/reinforced, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) -"uw" = ( -/obj/effect/decal/hybrisa/road/lines2, -/obj/effect/decal/hybrisa/road/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/cargo_container/hybrisa/containersextended/greenleft, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "uK" = ( /obj/item/tool/warning_cone{ pixel_y = 17 @@ -2131,6 +2713,10 @@ layer = 1 }, /obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/obj/effect/decal/hybrisa/road/lines3, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "uL" = ( @@ -2168,6 +2754,7 @@ pixel_x = 8; pixel_y = 20 }, +/obj/effect/decal/hybrisa/trash, /obj/effect/landmark/objective_landmark/close, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer/plate, @@ -2191,13 +2778,6 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) -"vn" = ( -/obj/structure/largecrate/random/barrel/purewhite{ - layer = 2.8; - pixel_y = 5 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "vp" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -2206,6 +2786,9 @@ /obj/effect/decal/hybrisa/road/road_stop{ icon_state = "stop_decal2" }, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "vx" = ( @@ -2215,6 +2798,8 @@ layer = 2; color = "#d3d3d3" }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/plasteel/wired, /turf/open/floor/prison/ramptop, /area/lv759/outdoors/mining_outpost/south_entrance) "vA" = ( @@ -2223,25 +2808,27 @@ pixel_x = -10; pixel_y = 14 }, -/obj/item/card/id/visa, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "vF" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4; + layer = 2.5 + }, /obj/structure/machinery/light/double/blue{ dir = 8 }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/landing_zone_2) -"vI" = ( -/obj/structure/cargo_container/hybrisa/containersextended/kelland_right{ - layer = 4.13 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/mining_outpost/south_entrance) "vK" = ( /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 @@ -2249,6 +2836,7 @@ /obj/effect/decal/strata_decals/grime/grime3{ pixel_y = 12 }, +/obj/effect/decal/hybrisa/dirt_2, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "vL" = ( @@ -2289,12 +2877,6 @@ /obj/structure/platform/metal/hybrisa/metalplatform6/north, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/mining_outpost/south_entrance) -"wF" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 4 - }, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "wO" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 6 @@ -2324,6 +2906,15 @@ /obj/structure/dropship_equipment/fuel/fuel_enhancer{ explo_proof = 1 }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, /obj/structure/blocker/invisible_wall, /turf/open/shuttle/escapepod/floor1, /area/lv759/oob) @@ -2331,7 +2922,8 @@ /obj/structure/largecrate/random/barrel/yellow{ layer = 2 }, -/turf/open/hybrisa/street/sidewalk/east, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) "xh" = ( /obj/structure/bed/chair{ @@ -2341,15 +2933,12 @@ /turf/open/floor/hybrisa/carpet/carpetbeige, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "xk" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full"; - color = "#b8b8b0" - }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/barricade/plasteel/wired{ - dir = 8 + dir = 8; + closed = 0 }, -/turf/open/hybrisa/street/cement3, +/turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "xn" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2401,10 +2990,6 @@ }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) -"xA" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "xI" = ( /turf/open/hybrisa/street/sidewalk/southwest, /area/lv759/outdoors/landing_zone_2) @@ -2414,10 +2999,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) -"yj" = ( -/obj/structure/largecrate/random/mini/small_case, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "yp" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/hybrisa/street/asphalt, @@ -2463,18 +3044,6 @@ }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) -"yK" = ( -/obj/structure/largecrate/empty{ - layer = 2.9; - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) -"yP" = ( -/obj/structure/cargo_container/hybrisa/containersextended/redwywingsright, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "yQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -2483,7 +3052,7 @@ /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, /area/lv759/outdoors/landing_zone_2) "yS" = ( -/obj/structure/machinery/vending/cigarette{ +/obj/structure/machinery/vending/cigarette/wy{ density = 0; pixel_x = -2; pixel_y = 16 @@ -2498,32 +3067,19 @@ }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) -"yW" = ( -/obj/effect/decal/hybrisa/road/road_stop{ - icon_state = "stop_decal4" - }, -/obj/structure/prop/hybrisa/vehicles/Long_Truck/Kelland_Mining{ - dir = 1 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "zb" = ( /obj/structure/largecrate/empty{ pixel_y = 3 }, -/turf/open/hybrisa/street/cement1, -/area/lv759/outdoors/landing_zone_2) -"ze" = ( -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/east, +/turf/open/hybrisa/street/cement1, /area/lv759/outdoors/landing_zone_2) "zg" = ( /obj/item/tool/warning_cone{ pixel_x = -13; pixel_y = 11 }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/decal/cleanable/dirt/greenglow{ color = "#140400"; name = "dirt"; @@ -2538,28 +3094,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/barricade/metal/wired{ - dir = 1 - }, /turf/open/floor/hybrisa/metal/grated/east, /area/lv759/outdoors/landing_zone_2) "zp" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/east, /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/outdoors/mining_outpost/south_entrance) -"zu" = ( -/obj/structure/prop/hybrisa/vehicles/Box_Vans/Kelland_Mining{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalk/southeast, -/area/lv759/outdoors/landing_zone_2) "zy" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 2.9; - pixel_y = 32; - alpha = 220 - }, /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8; pixel_y = 18; @@ -2568,37 +3109,15 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) -"zD" = ( -/obj/effect/decal/hybrisa/road/lines4, -/obj/effect/decal/hybrisa/road/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/obj/effect/decal/hybrisa/road/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/obj/structure/prop/hybrisa/vehicles/Small_Truck/White_Cargo{ - dir = 1; - pixel_x = -3; - layer = 4 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) -"zF" = ( -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/mining_outpost/south_entrance) "zG" = ( /obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/machinery/light/blue, /turf/open/auto_turf/hybrisa_auto_turf/layer0, /area/lv759/outdoors/mining_outpost/south_entrance) "zI" = ( -/obj/structure/cargo_container/hybrisa/containersextended/greenleft{ - layer = 4.2 +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18 }, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -2611,6 +3130,11 @@ pixel_x = -9; pixel_y = 11 }, +/obj/effect/decal/cleanable/blood{ + pixel_x = -13; + pixel_y = 14 + }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/carpet/carpetbeige, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) @@ -2621,16 +3145,19 @@ /turf/open/hybrisa/street/sidewalk/northeast, /area/lv759/outdoors/landing_zone_2) "zX" = ( -/obj/structure/cargo_container/hd/mid/alt{ - layer = 5 +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "zY" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/curtain/colorable_transparent{ color = "#434343"; name = "plastic flaps" }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) "Af" = ( @@ -2642,6 +3169,10 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_south) "Ak" = ( /obj/item/paper/crumpled, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -9; + pixel_y = 4 + }, /obj/structure/pipes/standard/simple/hidden/dark, /obj/item/trash/cigbutt{ pixel_x = -10; @@ -2680,25 +3211,11 @@ /obj/item/card/id/visa, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) -"AN" = ( -/obj/effect/decal/hybrisa/road/lines3, -/obj/structure/prop/hybrisa/vehicles/Long_Truck/WY_Blue{ - pixel_y = 6 - }, -/obj/structure/barricade/handrail/hybrisa/road/metal/metaldark{ - pixel_y = -5; - layer = 3.2 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "AU" = ( /obj/effect/decal/hybrisa/road/lines2, /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" }, -/obj/structure/cargo_container/hybrisa/containersextended/greenwywingsleft{ - layer = 2.9 - }, /obj/structure/machinery/light/double/blue{ dir = 1 }, @@ -2718,7 +3235,6 @@ needs_power = 0; vehicle_resistant = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) "Bg" = ( @@ -2728,18 +3244,24 @@ }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) -"Bl" = ( -/obj/effect/decal/hybrisa/road/lines3, -/obj/effect/decal/hybrisa/dirt, -/obj/structure/largecrate/random/barrel/black, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "Bn" = ( -/obj/structure/prop/hybrisa/vehicles/Small_Truck/Mining, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/stool{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/tool/wirecutters, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "By" = ( /obj/item/stool, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, /obj/structure/cable{ icon_state = "1-2"; level = 2; @@ -2764,6 +3286,13 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "BN" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4 + }, /obj/structure/prop/invuln/overhead_pipe{ color = "#a6aeab" }, @@ -2782,10 +3311,6 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "Cn" = ( -/obj/item/prop/colony/canister{ - pixel_x = 4; - pixel_y = 16 - }, /obj/item/trash/cigbutt{ pixel_x = -10; pixel_y = 7 @@ -2820,6 +3345,14 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "CK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, /obj/structure/cable{ icon_state = "1-2"; color = "#550d0d" @@ -2863,26 +3396,40 @@ /area/lv759/outdoors/colony_streets/south_east_street) "Da" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_y = 1; + layer = 2.5 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/landing_zone_2) "Dd" = ( /obj/item/tool/warning_cone{ pixel_y = 19 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2) "Dg" = ( -/obj/structure/cargo_container/watatsumi/left{ - layer = 2.9 +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Dh" = ( -/obj/structure/sign/poster/corporate{ - layer = 2.9; - pixel_y = 32 +/obj/structure/largecrate/random/barrel/black, +/obj/structure/sign/poster/propaganda{ + pixel_y = 35 + }, +/obj/structure/sign/poster/propaganda{ + pixel_x = 8; + pixel_y = 38 }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) @@ -2890,10 +3437,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) -"Do" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/mining_outpost/south_entrance) "Ds" = ( /obj/item/paper/crumpled/bloody{ pixel_x = -9; @@ -2905,60 +3448,47 @@ "Dw" = ( /obj/effect/decal/hybrisa/road/lines3, /obj/effect/decal/hybrisa/road/lines1, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"DM" = ( -/turf/closed/wall/hybrisa/colony/reinforced, -/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "DS" = ( /obj/item/trash/cigbutt{ pixel_x = 7 }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "DY" = ( -/obj/structure/barricade/handrail/hybrisa/handrail{ - dir = 8; - layer = 4 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, /turf/open/hybrisa/street/sidewalk/northwest, /area/lv759/outdoors/landing_zone_2) "Ed" = ( /obj/effect/sentry_landmark/lz_2/bottom_right, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"Eh" = ( -/obj/structure/largecrate/random/barrel{ - layer = 5.1; - pixel_x = 13; - pixel_y = 16 - }, -/obj/effect/decal/hybrisa/road/lines3, -/obj/item/tool/warning_cone{ - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/hybrisa/road/metal/metaldark{ - pixel_y = -5 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "Eo" = ( -/obj/structure/cargo_container/hd/right/alt{ - layer = 4.12 +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "Ep" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4; + layer = 2.5 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) "Eq" = ( @@ -2972,23 +3502,16 @@ /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) "Ez" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full"; - color = "#b8b8b0" - }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/barricade/metal/wired{ - brute_multiplier = 0.05; - burn_multiplier = 0.1; - dir = 8; - explosive_multiplier = 0.1; - pixel_x = -5 + dir = 8 }, -/turf/open/hybrisa/street/cement3, +/turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "EH" = ( -/obj/structure/ore_box{ - layer = 2 +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 }, /turf/open/hybrisa/street/sidewalk/northwest, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -3019,9 +3542,6 @@ icon_state = "E"; pixel_x = 2 }, -/obj/structure/barricade/plasteel/wired{ - dir = 8 - }, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/landing_zone_2) "Fm" = ( @@ -3031,7 +3551,8 @@ /obj/structure/machinery/door_control/brbutton/alt{ id = "hybrisaLZ2_2"; name = "north - door-control"; - explo_proof = 1 + explo_proof = 1; + needs_power = 0 }, /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -3048,6 +3569,7 @@ /turf/open/floor/prison/red/north, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) "FF" = ( +/obj/effect/decal/hybrisa/bloodtrail, /obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ dir = 1 }, @@ -3081,15 +3603,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) -"Gc" = ( -/obj/structure/largecrate/random/barrel{ - layer = 4.12; - pixel_x = -6; - pixel_y = -18 - }, -/obj/structure/cargo_container/hybrisa/containersextended/kelland_right, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "Gj" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" @@ -3105,9 +3618,17 @@ /turf/open/hybrisa/street/sidewalkcenter/south, /area/lv759/outdoors/landing_zone_2) "Go" = ( -/obj/structure/cargo_container/watatsumi/mid{ - layer = 2.9 +/obj/structure/largecrate/random/barrel{ + desc = "A red storage barrel."; + icon_state = "barrel_red"; + name = "red barrel"; + pixel_x = 9; + pixel_y = 16 + }, +/obj/item/stack/sheet/cardboard{ + layer = 1 }, +/obj/item/stack/sandbags/large_stack, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Gv" = ( @@ -3117,18 +3638,17 @@ /obj/item/stack/sheet/wood/small_stack{ layer = 1 }, -/obj/structure/largecrate/random/barrel/yellow{ - layer = 2 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 4 - }, /obj/effect/decal/hybrisa/road/lines1, /obj/effect/decal/hybrisa/road/road_edge, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Gz" = ( /obj/structure/window/framed/hybrisa/colony/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 2.9; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "GE" = ( @@ -3151,9 +3671,11 @@ /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal2" }, -/obj/structure/cargo_container/watatsumi/right{ - layer = 2.9 +/obj/structure/largecrate/random/barrel/purewhite{ + layer = 2.8; + pixel_y = 5 }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "GX" = ( @@ -3180,12 +3702,12 @@ /area/lv759/outdoors/landing_zone_2) "Ho" = ( /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, /turf/open/floor/corsat/marked, /area/lv759/outdoors/landing_zone_2) -"Ht" = ( -/obj/structure/cargo_container/hybrisa/containersextended/kelland_left, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/mining_outpost/south_entrance) "Hx" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -3229,26 +3751,18 @@ }, /turf/open/floor/prison/red/west, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) -"HY" = ( -/obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/platform/metal/hybrisa/metalplatform1/west, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/turf/open/hybrisa/street/underground_unweedable, -/area/lv759/outdoors/landing_zone_2) "If" = ( /obj/effect/decal/hybrisa/road/lines2, /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" }, -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 18 - }, /obj/item/stack/sheet/wood, /obj/item/stack/sheet/wood{ pixel_y = -8 }, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Ih" = ( @@ -3292,6 +3806,10 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "IH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, /obj/item/fuel_cell, /obj/effect/decal/cleanable/liquid_fuel, /turf/open/hybrisa/street/asphalt, @@ -3307,39 +3825,30 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) "IS" = ( -/obj/structure/bed/stool, /turf/open/hybrisa/street/sidewalk/northwest, /area/lv759/outdoors/mining_outpost/south_entrance) "IU" = ( /obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ dir = 4 }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light/blue{ dir = 4 }, /turf/open/shuttle/escapepod/floor1, /area/lv759/oob) -"IX" = ( -/obj/effect/decal/hybrisa/road/lines3, -/obj/effect/decal/hybrisa/dirt, -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) -"IY" = ( -/obj/structure/prop/hybrisa/misc/firehydrant{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/landing_zone_2) "Ja" = ( -/obj/structure/barricade/handrail/hybrisa/handrail{ - dir = 8; - layer = 4 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "Jm" = ( @@ -3351,9 +3860,11 @@ /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/mining_outpost/south_entrance) "Ju" = ( -/obj/structure/ore_box{ - layer = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "Jv" = ( @@ -3367,6 +3878,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/colony_streets/south_east_street) "JG" = ( +/obj/effect/decal/hybrisa/dirt, /obj/effect/decal/cleanable/dirt/greenglow{ color = "#140400"; name = "dirt"; @@ -3380,11 +3892,8 @@ /area/lv759/outdoors/mining_outpost/south_entrance) "Ki" = ( /turf/open/floor/hybrisa/carpet/carpetbeige, -/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) -"Kl" = ( -/obj/structure/sign/poster/propaganda{ - pixel_y = 32 - }, +/area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) +"Kl" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, @@ -3398,7 +3907,9 @@ /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" }, -/obj/structure/cargo_container/hybrisa/containersextended/greenwywingsright, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Kz" = ( @@ -3410,6 +3921,8 @@ "KC" = ( /obj/structure/largecrate/random/barrel/brown, /obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "KE" = ( @@ -3419,6 +3932,11 @@ /obj/effect/decal/strata_decals/grime/grime3{ pixel_x = -10 }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "KI" = ( @@ -3426,12 +3944,15 @@ /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) "KN" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 1 +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "Lg" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 9 }, @@ -3453,18 +3974,15 @@ layer = 2.7; pixel_y = 8 }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "Lr" = ( /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/landing_zone_2) -"LB" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/landing_zone_2) "LJ" = ( /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -3479,10 +3997,19 @@ /obj/structure/prop/hybrisa/misc/floorprops/grate, /obj/structure/platform/metal/hybrisa/metalplatform1/north, /obj/structure/platform/metal/hybrisa/metalplatform1/west, -/turf/open/floor/almayer_hull, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/landing_zone_2) "Mb" = ( -/obj/structure/barricade/metal/wired, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/mining_outpost/south_entrance) "Mf" = ( @@ -3499,16 +4026,11 @@ /obj/item/tool/warning_cone{ pixel_y = 17 }, +/obj/effect/decal/hybrisa/road/lines3, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) -"Mk" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "Mr" = ( -/obj/structure/machinery/colony_floodlight/street{ - pixel_y = 12 - }, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "Mt" = ( @@ -3525,9 +4047,6 @@ pixel_x = 5; pixel_y = 7 }, -/obj/structure/machinery/light{ - dir = 4 - }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; layer = 2.5; @@ -3551,24 +4070,19 @@ }, /turf/open/floor/prison/red, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) -"MD" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir"; - color = "#d3d3d3" - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "MI" = ( /obj/effect/spawner/random/toolbox{ - pixel_y = 12 + pixel_y = 14 }, /obj/item/trash/cigbutt{ pixel_y = 8 }, +/obj/item/stack/sheet/wood{ + layer = 4.1; + pixel_x = 14; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "MX" = ( @@ -3588,33 +4102,10 @@ /turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/landing_zone_2) "Ny" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, /obj/structure/platform/metal/hybrisa/metalplatform6/east, -/obj/structure/barricade/metal/wired, /turf/open/auto_turf/hybrisa_auto_turf/layer2, /area/lv759/outdoors/mining_outpost/south_entrance) -"NC" = ( -/obj/item/storage/briefcase{ - pixel_y = -2 - }, -/obj/item/storage/briefcase{ - pixel_y = -2 - }, -/obj/item/storage/briefcase{ - pixel_y = -2 - }, -/obj/item/storage/briefcase{ - pixel_y = -2 - }, -/obj/item/card/id/visa, -/turf/open/floor/almayer/plate, -/area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) -"NG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison/ramptop/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "NH" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -3622,12 +4113,6 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, /area/lv759/outdoors/landing_zone_2) -"NM" = ( -/obj/structure/cargo_container/kelland/right{ - layer = 4 - }, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "NO" = ( /obj/structure/cargo_container/hybrisa/containersextended/bluewywingsleft, /turf/open/hybrisa/street/sidewalk/north, @@ -3653,19 +4138,33 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "Of" = ( /obj/structure/prop/hybrisa/misc/fake/lattice/full, -/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, /obj/structure/platform/metal/hybrisa/metalplatform1/east, /obj/structure/platform/metal/hybrisa/metalplatform1, /obj/structure/machinery/light/double/blue{ dir = 4 }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, /turf/open/hybrisa/street/underground_unweedable, /area/lv759/outdoors/colony_streets/south_east_street) "OH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, /obj/item/tool/warning_cone{ pixel_x = 5; pixel_y = 13 }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines3, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "OI" = ( @@ -3708,6 +4207,10 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "Ps" = ( @@ -3728,6 +4231,9 @@ icon_state = "E"; pixel_x = 2 }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, /turf/open/floor/prison/red/northeast, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) "Pv" = ( @@ -3735,6 +4241,10 @@ /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "Px" = ( /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_y = -16 + }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "Py" = ( @@ -3757,10 +4267,8 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "PU" = ( -/obj/structure/prop/hybrisa/vehicles/Long_Truck/Kelland_Mining{ - pixel_y = -8; - layer = 4.1 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/vehicles/Long_Truck/Kelland_Mining, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "Qw" = ( @@ -3774,9 +4282,7 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "QI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) @@ -3786,7 +4292,10 @@ icon_state = "p_stair_full"; color = "#b8b8b0" }, -/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "QR" = ( @@ -3829,7 +4338,6 @@ pixel_y = 32; pixel_x = 12 }, -/obj/structure/cargo_container/hybrisa/containersextended/greenright, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Rz" = ( @@ -3857,18 +4365,6 @@ }, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) -"Sd" = ( -/obj/effect/decal/hybrisa/dirt, -/obj/effect/decal/hybrisa/road/road_stop{ - icon_state = "stop_decal3" - }, -/obj/effect/decal/hybrisa/road/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/obj/item/tool/wirecutters, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "Sk" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/sentry_landmark/lz_2/top_left, @@ -3903,9 +4399,13 @@ pixel_y = -4 }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, /turf/open/hybrisa/street/cement3, /area/lv759/outdoors/landing_zone_2) "SL" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light, /obj/effect/decal/cleanable/generic{ color = "#5d524b"; @@ -3933,6 +4433,7 @@ /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_hallway) "Tt" = ( @@ -3962,10 +4463,12 @@ /area/lv759/outdoors/mining_outpost/south_entrance) "TA" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/landing_zone_2) "TE" = ( /obj/structure/lz_sign/hybrisa_sign/mining, +/obj/effect/decal/hybrisa/dirt, /obj/item/tool/warning_cone{ layer = 2; pixel_x = -20 @@ -3980,17 +4483,6 @@ }, /turf/open/floor/prison, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) -"TR" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2 - }, -/obj/effect/decal/cleanable/dirt/greenglow{ - color = "#140400"; - name = "dirt"; - alpha = 100 - }, -/turf/open/hybrisa/street/asphalt, -/area/lv759/outdoors/landing_zone_2) "TS" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -3999,6 +4491,9 @@ pixel_x = -10; pixel_y = 14 }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, /turf/open/floor/hybrisa/tile/cementflat, /area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "TU" = ( @@ -4016,9 +4511,10 @@ /area/lv759/outdoors/landing_zone_2/kmcc_hub_cargo_entrance_south) "Uc" = ( /obj/item/trash/cigbutt, -/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "Ue" = ( @@ -4038,7 +4534,8 @@ icon_state = "W"; layer = 3.3 }, -/obj/structure/barricade/plasteel/wired, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/ramptop/north, /area/lv759/outdoors/mining_outpost/south_entrance) "Uy" = ( @@ -4056,9 +4553,11 @@ /turf/open/floor/prison/ramptop/east, /area/lv759/indoors/landing_zone_2/kmcc_hub_security) "UF" = ( -/obj/structure/barricade/plasteel/wired{ - dir = 1 +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/hybrisa/road/lines1, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "UL" = ( @@ -4092,11 +4591,12 @@ icon_state = "2-6"; layer = 5 }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/plating, /area/lv759/indoors/landing_zone_2/kmcc_hub_maintenance) "Vx" = ( -/obj/structure/cargo_container/hybrisa/containersextended/redwywingsleft, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "VB" = ( @@ -4121,21 +4621,14 @@ /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "VX" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno{ + pixel_x = -6; + pixel_y = 4 + }, /obj/item/attachable/bayonet, /turf/open/floor/hybrisa/carpet/carpetbeige, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) -"Wd" = ( -/obj/structure/largecrate/empty, -/obj/item/device/radio{ - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/device/megaphone{ - pixel_x = 1; - pixel_y = 7 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/mining_outpost/south_entrance) "Wt" = ( /obj/effect/decal/hybrisa/dirt, /obj/effect/sentry_landmark/lz_2/top_right, @@ -4145,6 +4638,7 @@ /obj/structure/barricade/handrail/hybrisa/road/plastic/red{ dir = 4 }, +/obj/item/tool/shovel, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/mining_outpost/south_entrance) "WS" = ( @@ -4164,6 +4658,7 @@ pixel_y = 16; layer = 3.1 }, +/obj/effect/decal/hybrisa/road/lines3, /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Xa" = ( @@ -4179,6 +4674,7 @@ /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "Xm" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/blue, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/mining_outpost/south_entrance) @@ -4195,6 +4691,7 @@ pixel_x = -7; pixel_y = 13 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/mining_outpost/south_entrance) "Xr" = ( @@ -4209,12 +4706,16 @@ /turf/open/hybrisa/street/asphalt, /area/lv759/outdoors/landing_zone_2) "Xw" = ( -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - layer = 2.9; - pixel_y = 32; - alpha = 220 +/obj/effect/decal/cleanable/blood, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 10; + pixel_y = 21 }, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_south_office) "Xy" = ( @@ -4245,10 +4746,6 @@ /obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/landing_zone_2) -"XI" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_plate/southwest, -/area/lv759/outdoors/mining_outpost/south_entrance) "XJ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /obj/structure/machinery/landinglight/ds2/spoke{ @@ -4292,12 +4789,6 @@ }, /turf/open/floor/almayer/plate, /area/lv759/indoors/landing_zone_2/kmcc_hub_lounge_north) -"XT" = ( -/obj/structure/cargo_container/hybrisa/containersextended/greenright{ - layer = 4.11 - }, -/turf/open/floor/hybrisa/metal/grated/north, -/area/lv759/outdoors/mining_outpost/south_entrance) "Ye" = ( /obj/effect/decal/hybrisa/road/road_edge{ icon_state = "road_edge_decal4" @@ -4329,7 +4820,8 @@ name = "southwest - door-control"; pixel_x = -5; explo_proof = 1; - pixel_y = 6 + pixel_y = 6; + needs_power = 0 }, /obj/structure/prop/hybrisa/misc/machinery/screens/frame{ pixel_y = 32 @@ -4359,7 +4851,8 @@ pixel_x = -7; pixel_y = -1; explo_proof = 1; - name = "west - door-control" + name = "west - door-control"; + needs_power = 0 }, /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = -2; @@ -4371,6 +4864,7 @@ /obj/item/tool/warning_cone{ pixel_y = 17 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/landing_zone_2) "YL" = ( @@ -4408,21 +4902,23 @@ /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/landing_zone_2) "Zb" = ( -/obj/structure/barricade/handrail/hybrisa/handrail{ - dir = 8; - layer = 4 - }, /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/landing_zone_2) "Zc" = ( -/obj/structure/barricade/handrail/hybrisa/handrail{ - dir = 1 - }, -/turf/open/hybrisa/street/cement3, -/area/lv759/outdoors/landing_zone_2) +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/lv759/indoors/landing_zone_2/kmcc_hub_flight_control_room) "Zq" = ( /obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/ore_box{ + layer = 2 + }, /turf/open/floor/hybrisa/metal/grated/north, /area/lv759/outdoors/mining_outpost/south_entrance) "ZT" = ( @@ -4433,6 +4929,7 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv759/indoors/landing_zone_2/kmcc_hub_fuel) "ZW" = ( +/obj/effect/decal/hybrisa/dirt, /obj/effect/sentry_landmark/lz_2/bottom_right, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/landing_zone_2) @@ -4476,21 +4973,21 @@ bg XR Ik tX -Lp +ki lZ Pv OV -OV +dB BJ Av -mr +ki mr Tt Af kB zM zM -zM +cN vk Lg UT @@ -4530,14 +5027,14 @@ ab ab ab Lp -Lp +ki yS Pv qM vK Pv vA -mr +ki mr bL LN @@ -4550,7 +5047,7 @@ UT UT lT xh -Ki +cq dz UT aR @@ -4573,37 +5070,37 @@ Oc Oc tf TS -zn +dR or Rq nB -Pv +ui Pr -OV -Pv -Pv +cX +ui +ui +ui Pv -IG hg hZ -Pv +ui KE tz -Pv -cw +ui +ui Cg -IG -Pv +do +ui mm -OV -Pv -Pv +cX +ui +cP ui IG Gz Xw -Ki -Ki +cv +cs Ki QS UT @@ -4624,38 +5121,38 @@ ji ji Oc Oc -Oc +dU kF wO BW iD PF cm -cd -yJ -cd -cd -DS -cd -cd -kX -cd +dq +yJ cd cd +DS +dq +dq +kX cd cd +dq cd +dq +dq OI -cd -cd -yJ +dq +dl +da dp -cd -cd -cd -cd +cT +cQ +cO +cK FF -qJ +cG zO va Ds @@ -4690,29 +5187,29 @@ cL hv cL cL -NC -tT +cL +dM QN mV wu -OV +dB OV Pv -Pv +du Cg tT -yj cL cL +cY cL VF AH -tT +Pv Gz aM HG VX -Ki +cr nA UT OX @@ -4725,7 +5222,7 @@ mf sm KI vF -lh +ee Xr bB bB @@ -4733,35 +5230,35 @@ Vm LQ iI Oc -Oc +dT Kl rS Oc Oc -DM fW fW fW +ki +ki fW fW fW ki ki -ki SB -OV -OV +dB +dB Sw ki ki -ki fW fW fW +ki +ki fW fW fW -ki UT UT uT @@ -4778,7 +5275,7 @@ hE sW EN sW -hO +eh Da bM aC @@ -4791,31 +5288,31 @@ Oc GE lO un -fj -lh -lh +dr lh lh +dc +cU +cU +cR lh lh -lh -lh -HY +dG ki fW -Pv +dD Tf fW ki +dr lh lh +dc +cU +cU +cR lh -lh -lh -lh -lh -lh -ad +cM ad Gz zy @@ -4843,30 +5340,30 @@ Ja Px QI nK -dC +wR VP +dd +dd dQ +dd +dN +cV +dd +dd +dd dQ -dQ -dQ -dQ -dQ -dQ -dQ -dQ -dQ -lo -lC -xk +dI +Ez +dE xk Ez lo dQ +dd dQ -dQ -dQ -dQ -dQ +dd +cZ +cV dQ dQ ae @@ -4887,45 +5384,45 @@ wj zo ci mU -bO +bJ ES ES ES ES -mU -jQ -ze -jQ -jQ -jQ -jQ +eb jQ jQ jQ jQ jQ -ze jQ jQ +dP jQ jQ jQ jQ jQ jQ +tb +dg +dg +dg +dg +dg jQ -ze -jQ +dg jQ jQ +tb +dg jQ jQ -tb jQ jQ -zF -ac -ac +cH +cH +cH ac qt xs @@ -4977,10 +5474,10 @@ aK aA aA ap -ss +Vx ku -an -an +cB +cx yG wx xs @@ -5031,10 +5528,10 @@ aL Kq Kq aq -wF +ag Vx KN -an +cy yG mo xs @@ -5048,7 +5545,7 @@ TW wj zo Kv -bK +Kq bZ bQ Kq @@ -5085,10 +5582,10 @@ aL Kq aB aq -NM -yP +ag +ag Uc -an +cz yG mo Am @@ -5103,7 +5600,7 @@ wj zo If tJ -IX +az bR bF aG @@ -5142,7 +5639,7 @@ ar ek KC nq -an +cx yG wx UL @@ -5155,7 +5652,7 @@ oF TW wj zo -bV +Kv cf NR bS @@ -5166,22 +5663,22 @@ TE YY wR wR -tI -wR wR wR wR wR +Mr wR wR +Mr wR wR wR wR +Mr wR wR wR -sT wR wR wR @@ -5194,9 +5691,9 @@ Kq Uy as ag -gz +ag Ju -an +cy yG wx LJ @@ -5216,41 +5713,41 @@ bS Kq aE as -sp +ed sq -ib +dV bj YL +dx Ue +dx Ue +dx Ue Ue -Ue -Ue -Ue -Ue +dx YL NH Ue Ue Ue -Ue -YL -Ue -Ue -Ue +dH +dF +dx +dx +dx Ue YL bj -Qw +cc Ye Kq BF au ag -Mk +ag pU -an +cz yG wx Am @@ -5272,7 +5769,7 @@ aE au zU YI -ib +dW XJ wb df @@ -5302,8 +5799,8 @@ Kq aE au ag -cF -XI +Vx +cB aj qt mo @@ -5314,9 +5811,9 @@ lY (17,1,1) = {" jv jv -br +ep Cr -UF +ej ck ch ca @@ -5324,8 +5821,8 @@ bT aB aE bt -Kq -Kq +bd +dZ sp fs wb @@ -5356,8 +5853,8 @@ Kq BF au ak -ac -ac +cH +cH Xm qt Jm @@ -5368,18 +5865,18 @@ Mb (18,1,1) = {" jv jv -br +eq Cr -UF +el vp -TR -Eh +Uy +NR bT Kq aE bu bC -Kq +as mU TA wb @@ -5417,7 +5914,7 @@ wi ld ld ld -po +ld "} (19,1,1) = {" GX @@ -5426,14 +5923,14 @@ Hc Hz Hz tU -bn -aH +aB +NR bS Kq aE bv lx -Kq +ea kc lS wb @@ -5457,7 +5954,7 @@ wb wb wb wb -fG +dm er aQ aI @@ -5466,8 +5963,8 @@ av tq pr pq -vx -wi +cA +cu tm tm hr @@ -5478,10 +5975,10 @@ yd oF TW wj -zo +em cl Kq -hL +aq bP Kq Kq @@ -5511,8 +6008,8 @@ wb wb wb wb -fG -ES +dm +dh aL Kq Kq @@ -5520,29 +6017,29 @@ as tq pr pq -vx -wi +cA +cu +cp +cp +cp Al -Al -Al -NG "} (21,1,1) = {" yd oF TW wj -zo -bV +em +Kv Uy -Bl +az bP Wt yp bv yp WZ -ES +dh lS wb wb @@ -5565,38 +6062,38 @@ wb wb wb wb -fG +dm zg aS aB Kq aw -MD +tq pr pq -vx -wi +cA +cu +uk uk uk uk -po "} (22,1,1) = {" yd oF TW -wj +en zo -uw -yK -ei +Kv +Kq +aq bQ aB Kq bv nS qn -ES +dX lS wb wb @@ -5620,20 +6117,20 @@ wb wb wb fG -ES +di aL Kq aF as EH eF -ao +cI qP qt Mt Pm Pm -Mb +co "} (23,1,1) = {" yd @@ -5642,15 +6139,15 @@ Hc Hz Hz Rx -vn -AN +Kq +aD Gj Kq aE bv at uK -ES +dh lS wb wb @@ -5680,9 +6177,9 @@ aC aC ax Zq -ag -Do -an +Vx +cB +cB qt wx UL @@ -5695,7 +6192,7 @@ oF TW wj zo -bV +Kv Dg aD IC @@ -5728,7 +6225,7 @@ wb wb wb kJ -xI +dj aU Kq Kq @@ -5736,7 +6233,7 @@ as PU zI zX -an +cC yG wx LJ @@ -5749,14 +6246,14 @@ oF TW wj zo -bV +Kv Go -aD +eg Py Kq aE bx -Kq +be OH sp Lj @@ -5781,16 +6278,16 @@ wb wb wb wb -qI +dn ug aO Kq aE ay +Vx ag -XT Eo -an +cy yG mo UL @@ -5841,10 +6338,10 @@ aO Kq aE au -ag -kD -Ht +ku +ku an +cD yG mo LJ @@ -5864,7 +6361,7 @@ bS Kq aE as -IY +sp Nu ib bj @@ -5872,33 +6369,33 @@ kd gK gK gK +ds gK -gK -gK -gK -gK +ds +ds +ds kd yQ gK -gK -gK +ds +ds gK kd +ds gK gK -gK -gK +ds kd bj -Qw +dk aO Kq aE au -ag -xA -vI -an +Vx +Vx +Eo +cz yG mo LJ @@ -5924,16 +6421,16 @@ jQ jQ jQ jQ +dg jQ jQ jQ +dg +dg +dg jQ jQ -jQ -jQ -jQ -jQ -jQ +dg jQ jQ jQ @@ -5944,15 +6441,15 @@ jQ jQ jQ jQ -zu +bJ aV Ed Kq as hB -Gc +ag Lq -an +cz yG mo xs @@ -6006,7 +6503,7 @@ Dw oM Bn Xn -an +cx yG wx xs @@ -6017,7 +6514,7 @@ de zY hn TG -hn +eo Rj Bf pR @@ -6058,9 +6555,9 @@ aB Kq az pv -ag +cJ MI -an +cB qt xs xs @@ -6068,7 +6565,7 @@ xs de "} (31,1,1) = {" -zY +es CK Is ah @@ -6104,18 +6601,18 @@ Kq Kq Kq Kq -yW -xr +bb xr +aY aL Kq Uy aq IS -Wd -Cn ao -qt +Cn +cE +uL uL uL uL @@ -6190,35 +6687,35 @@ bE bz kW wR +Mr wR wR wR -wR -wR -wR -wR -wR -wR -wR +dJ +Mr +Mr Mr wR +dJ wR wR wR wR +dJ +Mr wR wR wR -wR +dA Mr wR wR -LB +wR xI aX aJ -Sd -zD +aJ +aX NO lV uL @@ -6244,34 +6741,34 @@ ES ES mU jQ -bl -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ -jQ jQ jQ +dS +uL +uL +dr +lh +dG +uL +uL +dr +lh +dG +uL +uL +dr +lh +dG +uL +uL +dy +dt jQ gY -bJ -mM +Lr +cW +cW mM -sR mM Ct ai diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase.dmm index 6dfd80f880a1..8c8e1aabeede 100644 --- a/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase.dmm +++ b/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase.dmm @@ -1,9 +1,15 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 }, -/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = -14; + pixel_x = -4 + }, +/obj/structure/pipes/vents/pump_hybrisa, /turf/open/floor/almayer/blackfull/west, /area/lv759/indoors/twe_souter_outpost/hallway) "ab" = ( @@ -30,26 +36,29 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) "ae" = ( -/obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/almayer/plating_striped/east, -/area/lv759/indoors/twe_souter_outpost/hallway) -"af" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_5"; - layer = 3.1 +/obj/structure/machinery/door_control{ + id = "twe_hangar_lockdown"; + name = "Flight Control - Lockdown"; + pixel_y = 30; + pixel_x = 1; + layer = 4 }, -/turf/open/floor/prison/darkred2, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"af" = ( +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/lv759/indoors/twe_souter_outpost) "ag" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning2"; + layer = 2.5; dir = 1 }, -/obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/prison/darkred2, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/twe_souter_outpost/hangar) "ah" = ( /obj/item/trash/cigbutt{ pixel_x = 1; @@ -60,198 +69,239 @@ "aj" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/armoury) -"ao" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"am" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/obj/structure/machinery/computer/cameras{ - dir = 1; - pixel_y = -11 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - name = "TWE coffee mug"; - desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; - pixel_y = 13; - pixel_x = -9 +/turf/open/floor/almayer/plating/northeast, +/area/lv759/indoors/twe_souter_outpost/maint) +"ao" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/prison/blue, -/area/lv759/indoors/twe_souter_outpost/flight) +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) "at" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer/black, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_x = -3; + pixel_y = -26 + }, +/turf/open/floor/almayer, /area/lv759/indoors/twe_souter_outpost/hallway) "au" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/black, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/largecrate/supply{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/box/mre/twe{ + pixel_x = -5; + pixel_y = 15 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) "aw" = ( -/turf/open/floor/prison/darkred2/northeast, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) "aA" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/black, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) "aC" = ( -/obj/structure/bed/hybrisa/bunkbed2, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) +/obj/structure/pipes/vents/pump_hybrisa, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/prison/red/west, +/area/lv759/indoors/twe_souter_outpost/reception) "aT" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe3{ + dir = 4 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "bc" = ( /turf/closed/wall/hybrisa/marhsalls/reinforced, /area/lv759/indoors/twe_souter_outpost/armoury) "be" = ( /obj/structure/reagent_dispensers/water_cooler{ pixel_x = 11; - pixel_y = 3 + pixel_y = 3; + density = 0 }, /turf/open/floor/almayer/blackfull/west, /area/lv759/indoors/twe_souter_outpost/hallway) -"bp" = ( -/obj/structure/bed/chair{ - dir = 1 +"bk" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/blackfull/west, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"bp" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/almayer/plating_striped/north, +/area/lv759/indoors/twe_souter_outpost/maint) "br" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/weapon/gun/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/ammo_magazine/rifle/rmc_f90, -/obj/item/weapon/gun/rifle/rmc_f90, -/turf/open/floor/strata/red2, -/area/lv759/indoors/twe_souter_outpost/armoury) +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = 9; + pixel_y = 42 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) "bw" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/weapon/gun/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/ammo_magazine/smg/p90/twe, -/obj/item/weapon/gun/smg/p90/twe, -/turf/open/floor/strata/red2, -/area/lv759/indoors/twe_souter_outpost/armoury) +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = -3; + pixel_x = -9 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/red, +/area/lv759/indoors/twe_souter_outpost/reception) "bB" = ( +/obj/structure/machinery/mech_bay_recharge_port{ + name = "Power Port" + }, /obj/structure/machinery/light/small{ - pixel_x = -16 + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/backpack/rmc/medium, -/obj/item/storage/belt/marine/rmc, -/obj/item/book/codebook/twe, -/turf/open/floor/strata/red2, -/area/lv759/indoors/twe_souter_outpost/armoury) +/turf/open/floor/almayer/orangefull, +/area/lv759/indoors/twe_souter_outpost/maint) "bD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hallway) +"bE" = ( /obj/structure/bed/chair{ can_buckle = 0; dir = 4; - pixel_x = 2; + pixel_x = 7; pixel_y = 6 }, /obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/almayer/blackfull/west, -/area/lv759/indoors/twe_souter_outpost/hallway) -"bE" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/snacks/packaged_burger{ - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = 16; - pixel_y = 2 - }, -/turf/open/floor/almayer/blackfull/west, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/almayer/black/west, /area/lv759/indoors/twe_souter_outpost/hallway) "bG" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/box/donkpockets{ - pixel_x = 8; - pixel_y = 2 +/obj/structure/machinery/light/blue{ + dir = 1 }, -/obj/effect/landmark/objective_landmark/close, -/obj/item/storage/box/mre/twe{ - pixel_y = 24; - pixel_x = -15 +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 }, -/turf/open/floor/almayer/blackfull/west, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/central_streets) "bN" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1; + pixel_x = -5; + pixel_y = 13 }, -/turf/open/floor/almayer/blackfull/west, +/turf/open/floor/almayer, /area/lv759/indoors/twe_souter_outpost/hallway) "bP" = ( -/obj/item/tool/warning_cone{ - pixel_x = 11; - layer = 3.2; - pixel_y = 40 - }, -/obj/item/tool/warning_cone{ - pixel_x = 10; - layer = 3.2; - pixel_y = 6 +/obj/structure/machinery/light/dropship/green{ + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/turf/closed/shuttle/twe_dropship{ + icon_state = "8,7" }, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hangar) +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "bQ" = ( +/obj/structure/bed/chair/vehicle/white{ + dir = 8; + pixel_x = 6; + pixel_y = 1; + buckle_offset_x = 6; + buckle_offset_y = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"bT" = ( /obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/red4, -/area/lv759/indoors/twe_souter_outpost/armoury) -"bT" = ( -/obj/structure/machinery/door_control{ - id = "imperial_armory"; - name = "Armory Lockdown"; - pixel_x = 16; - pixel_y = 29; - needs_power = 0 - }, -/obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/strata/red3/north, +/obj/item/ammo_magazine/smg/p90/twe, +/turf/open/floor/strata/red3/west, /area/lv759/indoors/twe_souter_outpost/armoury) "bU" = ( -/obj/structure/platform/metal/almayer/west, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "1,1" }, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) +"bW" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 31; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) "cg" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "souter_east"; - name = "\improper Lockdown"; - vehicle_resistant = 1; - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/east, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/twe_souter_outpost/hangar) "ch" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ @@ -259,45 +309,65 @@ }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) -"cm" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 - }, -/turf/open/floor/prison/darkpurplecorners2/north, -/area/lv759/indoors/twe_souter_outpost/dorm) "cn" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir"; - color = "#d3d3d3" +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 }, -/turf/open/floor/hybrisa/metal/stripe_red/north, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"co" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) "cp" = ( -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/prison/darkred2, -/area/lv759/indoors/twe_souter_outpost/hallway) -"cq" = ( -/obj/structure/barricade/handrail/strata{ - layer = 3.1 +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4, -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -18; + pixel_y = 1 }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -15; + pixel_x = -1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) "cz" = ( -/turf/open/floor/strata/red4/north, +/turf/open/floor/strata/multi_tiles, /area/lv759/indoors/twe_souter_outpost/armoury) "cV" = ( -/obj/structure/machinery/door/poddoor/hybrisa/secure_red_door{ - name = "Armory Lockdown"; - id = "imperial_armory"; - needs_power = 0; - unacidable = 1 +/obj/structure/machinery/light/small{ + pixel_x = -16 }, -/turf/open/floor/almayer/test_floor4, +/obj/item/book/codebook/twe{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/strata/red3, /area/lv759/indoors/twe_souter_outpost/armoury) "cX" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ @@ -309,8 +379,14 @@ /turf/open/floor/prison/darkred2/southwest, /area/lv759/indoors/twe_souter_outpost/hallway) "da" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/plating/kutjevo, +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "dc" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -320,56 +396,83 @@ /turf/open/floor/prison/darkred2/east, /area/lv759/indoors/twe_souter_outpost/hallway) "dd" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - density = 0; - pixel_y = 16; - name = "dropship controls"; - desc = "Controls for the UD4-UK dropship. This console appears to be offline for maintenance." +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/structure/bed/stool{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/lv759/indoors/twe_souter_outpost/maint) "dg" = ( -/turf/open/floor/prison/darkred2/north, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/storage/box/mre/twe{ + pixel_y = 24; + pixel_x = -15 + }, +/turf/open/floor/almayer, /area/lv759/indoors/twe_souter_outpost/hallway) "dn" = ( -/obj/structure/prop/hybrisa/airport/refuelinghose{ - pixel_x = -12; - pixel_y = -12; - dir = 1; - layer = 3.1 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/floor/prison/darkred2/west, +/area/lv759/indoors/twe_souter_outpost/hallway) "dq" = ( /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) "dv" = ( -/obj/effect/decal/medical_decals{ - dir = 8; - icon_state = "triagedecaldir"; - color = "#d3d3d3" +/obj/structure/barricade/handrail/strata{ + layer = 3.1 }, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - color = "#d3d3d3" +/obj/structure/prop/hybrisa/fakeplatforms/platform4, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/lv759/indoors/twe_souter_outpost/hallway) -"dy" = ( -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - color = "#d3d3d3" +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"dx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"dy" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) "dB" = ( /turf/open/hybrisa/street/sidewalk/northeast, /area/lv759/outdoors/colony_streets/north_west_street) @@ -380,106 +483,112 @@ /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "dF" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir"; - color = "#d3d3d3" +/obj/structure/surface/table/almayer{ + color = "#848484" }, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - color = "#d3d3d3" +/obj/item/storage/backpack/rmc/light{ + pixel_y = 8; + pixel_x = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/sign/poster/nspa{ + pixel_y = 31; + pixel_x = -4 + }, +/obj/structure/sign/poster/music{ + pixel_x = 3; + pixel_y = 34 + }, +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/iasf{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) "dI" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ - light_color = "#FF0000"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_y = -31 +/obj/structure/machinery/door/poddoor/hybrisa/secure_red_door{ + name = "Armory Lockdown"; + id = "imperial_armory"; + needs_power = 0; + unacidable = 1 }, -/turf/open/floor/prison/darkred2/northwest, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/armoury) "dN" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 4 +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/almayer/black/east, /area/lv759/indoors/twe_souter_outpost/hallway) -"dO" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/corsat, -/area/lv759/indoors/twe_souter_outpost/hangar) "dP" = ( /turf/open/floor/prison/darkred2/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) -"dS" = ( -/obj/item/clipboard{ - pixel_x = 10; - pixel_y = 13 - }, -/obj/item/tool/pen/blue{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/effect/decal/hybrisa/dirt_2, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_3"; - pixel_x = -8; - pixel_y = 12 +"dR" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 11 }, -/turf/open/floor/almayer/plating, +/turf/open/floor/prison/darkred2/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) +"dS" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 4; + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) "dU" = ( /obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" + icon_state = "2"; + pixel_x = 5; + pixel_y = -9 }, /turf/open/hybrisa/street/sidewalk/northwest, /area/lv759/outdoors/colony_streets/north_west_street) "dW" = ( -/turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "3,12" +/obj/structure/janitorialcart, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/lv759/indoors/twe_souter_outpost/hallway) "dY" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ - light_color = "#FF0000"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_y = 32 - }, -/turf/open/floor/prison/darkred2/southwest, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) "ef" = ( -/turf/closed/shuttle/twe_dropship{ - icon_state = "2,2" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8; + pixel_x = 1 }, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/red/east, +/area/lv759/indoors/twe_souter_outpost/reception) "en" = ( -/turf/closed/shuttle/twe_dropship{ - icon_state = "6,2" +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + req_access = null; + req_one_access = null; + dir = 1; + name = "\improper UD4-UK" }, +/turf/open/floor/almayer/test_floor4, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "et" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 10 +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 }, -/obj/effect/decal/strata_decals/grime/grime4{ - icon_state = "grime3"; - pixel_x = -10; - pixel_y = -2 +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown" }, -/turf/open/floor/prison, -/area/lv759/indoors/twe_souter_outpost/flight) +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) "eu" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "0,4" @@ -491,62 +600,113 @@ }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "ew" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 - }, -/turf/open/shuttle/dropship/light_grey_top_right, +/turf/open/floor/almayer/test_floor4, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "eD" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "7,6" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eE" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) "eG" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "8,4" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "eK" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_x = -4; - pixel_y = 12; - buckling_x = -4; - buckling_y = 12 +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "3,11" }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) +/turf/closed/shuttle/twe_dropship{ + icon_state = "2,2" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "eT" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ - dir = 1 +/obj/structure/machinery/light/dropship/blue{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/closed/shuttle/twe_dropship/transparent{ + icon_state = "5,14_alt" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eU" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + density = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "fb" = ( /obj/structure/prop/hybrisa/misc/trash/green{ pixel_y = 2 }, +/obj/effect/decal/hybrisa/dirt_2, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "fg" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"fh" = ( +/obj/item/trash/tray, +/obj/item/storage/box/teabags{ + pixel_y = 9; + pixel_x = 21 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/reagent_container/pill/teabag{ + pixel_y = 11; + pixel_x = 9 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/snacks/mre_food/twe/entree/fishnchips{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) "fi" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, -/turf/open/floor/prison/floor_plate/southwest, +/obj/structure/roof/hybrisa/lattice_prop/lattice_6{ + pixel_y = 16; + layer = 6 + }, +/turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/north_west_street) +"fn" = ( +/obj/structure/pipes/vents/pump_hybrisa, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/lv759/indoors/twe_souter_outpost/maint) "fp" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "0,6" @@ -560,6 +720,16 @@ icon_state = "7,4" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) +"fv" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/window/reinforced{ + dir = 4; + layer = 3.3; + color = "#a6aeab" + }, +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) "fw" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "8,6" @@ -573,111 +743,145 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "fE" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_y = 6 +/obj/structure/roof/hybrisa/lattice_prop/lattice_4{ + pixel_y = 16; + layer = 6 }, -/turf/open/floor/prison/darkpurple2/east, -/area/lv759/indoors/twe_souter_outpost/dorm) +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/hangar) "fG" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 5 - }, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "souter_west"; + name = "\improper Emergency Exit"; + vehicle_resistant = 1; dir = 4; - pixel_x = -1 + needs_power = 0 }, -/turf/open/floor/strata/multi_tiles, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/twe_souter_outpost/hallway) "fK" = ( -/obj/structure/surface/table/almayer{ - color = "#848484" +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = 6 }, -/obj/item/device/flashlight/lamp/on{ - pixel_x = 6; - pixel_y = 11 +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 }, -/obj/item/book/manual/detective{ - pixel_x = -8 +/obj/item/attachable/bayonet/rmc{ + pixel_x = 4; + pixel_y = 10 }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/twe_souter_outpost/dorm) "fQ" = ( /turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/twe_souter_outpost/dorm) "fT" = ( -/obj/structure/closet/crate, -/obj/item/roller/bedroll, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkred2/northeast, +/area/lv759/indoors/twe_souter_outpost/hallway) "fU" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_x = 10; - pixel_y = 21 + pixel_x = 20; + pixel_y = 15 }, /obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" + icon_state = "2"; + pixel_x = -5; + pixel_y = -10 }, /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "fX" = ( -/obj/structure/bed/hybrisa/bunkbed2, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) +/obj/effect/spawner/random/toolbox{ + layer = 4; + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "fZ" = ( /turf/template_noop, /area/template_noop) "ga" = ( -/obj/item/paper/crumpled{ - pixel_x = 9 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_9"; - pixel_y = 12; - pixel_x = 11 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) "gb" = ( /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "gc" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_y = 25; + pixel_x = -7 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) "gf" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "gj" = ( -/obj/structure/surface/table/almayer{ - color = "#848484" - }, -/obj/item/storage/backpack/rmc/light{ - pixel_y = 3 +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "7,1" }, -/obj/item/clothing/under/marine/veteran/royal_marine, -/obj/item/clothing/shoes/royal_marine, -/obj/item/clothing/accessory/patch/royal_marines, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "gk" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_y = 6 +/obj/structure/sign/safety/landingzone{ + pixel_x = 2; + pixel_y = 31 }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv759/indoors/twe_souter_outpost/dorm) +/obj/structure/sign/safety/east{ + pixel_x = 13; + pixel_y = 31 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -3; + pixel_y = 19 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"gs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) "gv" = ( -/turf/closed/shuttle/twe_dropship{ - icon_state = "0,7" +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/weapon/gun/smg/p90/twe{ + pixel_y = 4 }, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/ammo_magazine/smg/p90/twe, +/obj/item/weapon/gun/smg/p90/twe{ + pixel_y = -4 + }, +/obj/structure/surface/rack{ + color = "#848484" + }, +/turf/open/floor/strata/red3, +/area/lv759/indoors/twe_souter_outpost/armoury) "gA" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 @@ -695,61 +899,122 @@ }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "gZ" = ( -/turf/closed/shuttle/twe_dropship{ - icon_state = "8,7" - }, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/structure/bed/hybrisa/bunkbed2, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) "ha" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/twe_souter_outpost/maint) -"hc" = ( -/obj/item/paper/crumpled/bloody{ - pixel_x = -9; +/obj/structure/machinery/disposal{ + pixel_x = -1 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 1; + pixel_y = -25 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; pixel_y = 12 }, -/turf/open/floor/prison/darkpurple2/east, -/area/lv759/indoors/twe_souter_outpost/dorm) +/obj/structure/machinery/door_control{ + id = "twe_hangar_lockdown"; + name = "Flight Control - Lockdown"; + pixel_y = 9; + pixel_x = 24; + layer = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"hc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/structure/reagent_dispensers/fueltank/spacecraft, +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/twe_souter_outpost/hangar) "he" = ( -/turf/open/floor/prison/darkpurple2/west, +/obj/item/clothing/accessory/patch/twe, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/twe_souter_outpost/dorm) "hi" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/hybrisa/street/sidewalk/north, -/area/lv759/outdoors/colony_streets/north_west_street) +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "hk" = ( -/turf/open/floor/plating/plating_catwalk/prison, +/obj/item/stack/sheet/cardboard{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/prison/darkred2/northeast, /area/lv759/indoors/twe_souter_outpost/hallway) "hm" = ( /turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "3,13" + icon_state = "3,13_alt" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ho" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/tool/pen/blue{ + pixel_y = -8; + pixel_x = 5 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"hp" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5 + }, +/obj/item/storage/box/mre/twe{ + pixel_x = -12; + pixel_y = -4 + }, +/turf/open/floor/almayer/floor, +/area/lv759/indoors/twe_souter_outpost/hangar) "hq" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + req_access = null; + req_one_access = null; + name = "\improper UD4-UK" + }, +/turf/open/floor/almayer/test_floor4, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "hs" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "4,7" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) -"hw" = ( -/obj/structure/machinery/washing_machine{ - pixel_y = 18; - density = 0 +"ht" = ( +/obj/structure/sign/safety/opens_up{ + pixel_x = 31; + pixel_y = -12 }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 33; - density = 0 +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"hw" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_5{ + pixel_y = 16; + layer = 6 }, -/turf/open/floor/prison/darkpurplecorners2, +/turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/dorm) "hy" = ( /obj/structure/bedsheetbin{ @@ -758,77 +1023,119 @@ /turf/open/floor/prison/darkpurple2, /area/lv759/indoors/twe_souter_outpost/dorm) "hA" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ - light_color = "#FF0000"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_y = 32 +/obj/structure/closet/crate{ + color = "#98a3ab" }, -/turf/open/floor/prison/darkpurple2, -/area/lv759/indoors/twe_souter_outpost/dorm) -"hB" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/pipes/vents/pump_hybrisa, /obj/structure/machinery/space_heater/radiator/red{ dir = 1; pixel_y = 26 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"hB" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = -8; + pixel_y = 18 + }, +/obj/item/clothing/shoes/marine/royal_marine{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 7; + pixel_y = 35 + }, /turf/open/floor/prison/darkpurple2, /area/lv759/indoors/twe_souter_outpost/dorm) "hE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/tool/warning_cone{ - pixel_y = 19 +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 }, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "hJ" = ( -/obj/structure/stairs{ - color = "#a6aeab"; +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "souter_east"; + name = "\improper Lockdown"; + vehicle_resistant = 1; dir = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/hybrisa/metal/red_warning_floor, /area/lv759/indoors/twe_souter_outpost/hangar) +"hL" = ( +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/tool/screwdriver/tactical{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) "hT" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ icon_state = "8,3" }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) -"hW" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkpurple2, -/area/lv759/indoors/twe_souter_outpost/dorm) "hY" = ( -/obj/structure/sign/poster/nspa{ - pixel_y = 31; - pixel_x = -4 +/obj/structure/machinery/washing_machine{ + pixel_y = 18; + density = 0 }, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/prison/darkpurplecorners2/west, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/turf/open/floor/prison/darkpurple2, /area/lv759/indoors/twe_souter_outpost/dorm) "ie" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ - light_color = "#FF0000"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_y = 32; - pixel_x = 17 +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ij" = ( +/obj/structure/machinery/door_control{ + id = "hangar_storage_2"; + name = "Hangar Inner Podlock"; + pixel_y = 11; + pixel_x = -22 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "ik" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/blue, -/area/lv759/indoors/twe_souter_outpost/flight) +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/weapon/gun/rifle/rmc_f90{ + pixel_y = -2 + }, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/weapon/gun/rifle/rmc_f90{ + pixel_y = 6 + }, +/obj/structure/surface/rack{ + color = "#848484" + }, +/turf/open/floor/strata/red4/east, +/area/lv759/indoors/twe_souter_outpost/armoury) "io" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -839,19 +1146,37 @@ /turf/open/floor/prison/blue/southeast, /area/lv759/indoors/twe_souter_outpost/flight) "iq" = ( -/turf/open/shuttle/dropship, +/obj/structure/bed/chair/vehicle/white{ + pixel_x = 9; + pixel_y = 16; + buckle_offset_x = 9; + buckle_offset_y = 16 + }, +/obj/structure/bed/chair/vehicle/white{ + pixel_x = -7; + pixel_y = 16; + buckle_offset_x = -7; + buckle_offset_y = 16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "iw" = ( /obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/twe_souter_outpost/maint) -"iy" = ( -/turf/closed/shuttle/twe_dropship{ - icon_state = "7,11" +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6; + pixel_y = 1 }, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"iy" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) "iD" = ( /obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ dir = 4 @@ -860,10 +1185,13 @@ /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost) "iP" = ( -/turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "3,14" +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 5; + pixel_y = -1 }, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "iW" = ( /obj/structure/pipes/standard/manifold/hidden/dark{ dir = 8 @@ -871,25 +1199,35 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) "jj" = ( -/turf/open/floor/almayer/plating, -/area/lv759/indoors/twe_souter_outpost/hallway) -"jq" = ( -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "6,13"; + density = 0; + pixel_x = -13; + pixel_y = -1 }, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) -"jB" = ( -/obj/structure/bed/sofa/hybrisa/sofa/black{ - icon_state = "couch_hori1_black"; - pixel_y = 12 +"jq" = ( +/obj/structure/sign/safety/east{ + pixel_y = -30 }, -/turf/open/floor/prison/darkred2, +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hallway) +"jB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) +"jL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/item/paper/crumpled, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) "kb" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 @@ -910,8 +1248,11 @@ /turf/open/floor/prison/red/southwest, /area/lv759/indoors/twe_souter_outpost/reception) "kf" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison/darkred2/west, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) "ki" = ( /obj/structure/closet/secure_closet/security, @@ -928,58 +1269,36 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) "kn" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_y = -15 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/prison/darkred2/east, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) "kq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison/darkred2/west, /area/lv759/indoors/twe_souter_outpost/hallway) "kt" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 3 +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 6 +/obj/item/tool/wet_sign{ + pixel_x = -15; + pixel_y = 5 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison/darkred2/southwest, /area/lv759/indoors/twe_souter_outpost/hallway) "kv" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_x = 13 - }, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -13; - pixel_y = -2; - layer = 4 - }, -/obj/item/paper/crumpled{ - layer = 5; - pixel_x = -2; - pixel_y = -9 - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_9"; - pixel_y = 3; - pixel_x = -5 +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hallway) "kG" = ( /obj/structure/barricade/handrail/strata{ @@ -1008,62 +1327,65 @@ /turf/open/floor/prison, /area/lv759/indoors/twe_souter_outpost/reception) "kV" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8; - pixel_x = 1 - }, -/obj/structure/curtain/colorable_transparent{ - color = "#b3aa9b"; - alpha = 220; - layer = 3.2; - pixel_x = 32 +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "4,10" }, -/turf/open/floor/prison/red/east, -/area/lv759/indoors/twe_souter_outpost/reception) +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "kW" = ( -/obj/item/trash/hybrisa/cuppa_joes/empty_cup{ - pixel_x = 7; - pixel_y = 11 +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "2,0" }, -/turf/open/floor/prison/darkred2/north, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "kY" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/shiva/radiator_tile2, -/area/lv759/indoors/twe_souter_outpost/hangar) -"kZ" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 14 +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "souter_south"; + name = "\improper Emergency Exit"; + vehicle_resistant = 1; + needs_power = 0 }, -/turf/open/floor/prison/darkred2/north, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/twe_souter_outpost/hallway) +"kZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "hangar_storage_2"; + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/maint) "lf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime2" }, -/obj/structure/platform/metal/strata, -/obj/structure/machinery/door/poddoor{ - explo_proof = 1; - needs_power = 0; - unacidable = 1; - name = "\improper Escape Tunnel Lockdown"; - emp_proof = 1; +/obj/effect/decal/strata_decals/grime/grime4{ dir = 4; - pixel_x = 32; - density = 0 + pixel_y = 8 }, -/turf/open/floor/prison/ramptop/east, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/twe_souter_outpost/hallway) "li" = ( /turf/open/floor/prison/red/east, /area/lv759/indoors/twe_souter_outpost/reception) "ln" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/cargo_container/hybrisa/containersextended/medicalright, -/turf/open/floor/shiva/radiator_tile2, +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "2,13"; + density = 0; + pixel_x = 13; + pixel_y = -1 + }, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "lp" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ @@ -1071,30 +1393,42 @@ }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) -"lD" = ( +"lq" = ( +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, /obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" + color = "#848484" }, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 1 +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = -20; + pixel_y = 3 }, -/obj/item/tool/screwdriver/tactical{ - pixel_x = 6; - pixel_y = 7 +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"lD" = ( +/obj/structure/machinery/space_heater/radiator/red, +/obj/structure/window/reinforced{ + dir = 4; + layer = 3.3; + color = "#a6aeab" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/blue, /area/lv759/indoors/twe_souter_outpost/flight) "lE" = ( -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/machinery/door_control{ + id = "twe_hangar_lockdown"; + name = "Flight Control - Lockdown"; + pixel_y = 28; + layer = 4 }, -/turf/open/floor/prison/blue, +/turf/open/floor/prison/blue/north, /area/lv759/indoors/twe_souter_outpost/flight) "lF" = ( /obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ @@ -1104,9 +1438,12 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/dorm) "lH" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/blue, -/area/lv759/indoors/twe_souter_outpost/flight) +/obj/structure/bed/stool{ + pixel_x = -6; + pixel_y = 18 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "lK" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -1114,34 +1451,28 @@ /turf/open/floor/prison/blue, /area/lv759/indoors/twe_souter_outpost/flight) "lL" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 1 }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -1; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 }, -/obj/item/tool/pen/blue{ - pixel_y = -8; - pixel_x = 5 +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6; + pixel_y = 1 }, -/turf/open/floor/prison/blue, -/area/lv759/indoors/twe_souter_outpost/flight) +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "lN" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform5{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + welded = 1 }, -/turf/open/hybrisa/street/sidewalk/southeast, -/area/lv759/outdoors/colony_streets/north_west_street) +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/maint) "lO" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/machinery/faxmachine/twe, -/obj/item/paper, -/turf/open/floor/prison/blue, -/area/lv759/indoors/twe_souter_outpost/flight) +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "lU" = ( /obj/item/paper{ pixel_y = 11; @@ -1157,76 +1488,120 @@ /turf/open/floor/prison/red/west, /area/lv759/indoors/twe_souter_outpost/reception) "lW" = ( -/obj/structure/platform/metal/almayer/west, -/obj/item/tool/warning_cone{ - pixel_x = -4; - layer = 3.2; - pixel_y = 21 +/obj/structure/prop/hybrisa/airport/refuelinghose{ + pixel_x = -16; + pixel_y = -9; + dir = 1; + layer = 3.1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"mb" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17 }, -/turf/open/floor/plating/kutjevo, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 7 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) "md" = ( -/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "me" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/lv759/indoors/twe_souter_outpost/hallway) -"mh" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light/dropship/red{ dir = 8 }, -/obj/item/stack/sheet/cardboard{ - pixel_x = 6; - pixel_y = 9 +/turf/closed/shuttle/twe_dropship{ + icon_state = "0,7" }, -/turf/open/floor/prison/darkred2/northeast, -/area/lv759/indoors/twe_souter_outpost/hallway) +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"mh" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"mi" = ( +/turf/open/hybrisa/street/sidewalk/southwest, +/area/lv759/outdoors/colony_streets/central_streets) "mn" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 }, +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "mt" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/prison/blue/east, -/area/lv759/indoors/twe_souter_outpost/flight) -"mu" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#98a3ab" +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 }, -/obj/structure/machinery/faxmachine/twe, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 7 +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -8 }, -/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ - pixel_y = 41; - pixel_x = 9 +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"mu" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 }, -/turf/open/floor/prison/red/northwest, -/area/lv759/indoors/twe_souter_outpost/reception) +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) "mv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/hydralic_clamp, -/obj/structure/machinery/light/small, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 9 +/obj/effect/decal/hybrisa/dirt, +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 }, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/twe_souter_outpost/maint) +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + icon_state = "wy_water_crushed" + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "mw" = ( -/obj/structure/sign/banners/twe_flag{ - layer = 3.4; - pixel_y = 26; - pixel_x = -15 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, /obj/structure/pipes/vents/pump_hybrisa, +/obj/structure/closet/crate{ + color = "#98a3ab" + }, +/obj/item/roller/bedroll, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/suit/storage/jacket/marine/rmc/service/iasf_combat_jacket, /turf/open/floor/prison/darkpurple2, /area/lv759/indoors/twe_souter_outpost/dorm) "mx" = ( @@ -1239,18 +1614,61 @@ /obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) +"mE" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) "mI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/cargo_container/hybrisa/containersextended/medicalleft, -/turf/open/floor/shiva/radiator_tile2, +/obj/item/paper/crumpled{ + pixel_x = -14; + pixel_y = 11 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"mL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) "mN" = ( +/obj/structure/pipes/standard/simple/hidden/dark, /obj/structure/bed/hybrisa/bunkbed2{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/dark, /turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/twe_souter_outpost/dorm) +"mP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/structure/machinery/faxmachine/twe{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 41 + }, +/turf/open/floor/prison/red/northwest, +/area/lv759/indoors/twe_souter_outpost/reception) "mR" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past{ pixel_x = 13; @@ -1263,96 +1681,84 @@ /turf/open/floor/prison/red/northeast, /area/lv759/indoors/twe_souter_outpost/reception) "mT" = ( -/obj/structure/platform/metal/almayer/west, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33 +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "3,11" }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/turf/closed/shuttle/twe_dropship{ + icon_state = "6,2" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "mW" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/structure/machinery/newscaster{ + pixel_y = 30 }, /turf/open/floor/prison/darkred2, /area/lv759/indoors/twe_souter_outpost/hallway) "mZ" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ - light_color = "#FF0000"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_y = 32 - }, -/obj/structure/machinery/disposal{ - pixel_x = -1 +/obj/structure/sign/safety/landingzone{ + pixel_x = 15; + pixel_y = 2 }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_2"; - pixel_x = -8; - pixel_y = 12 +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/hangar) +"nj" = ( +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_x = 1; + pixel_y = 6 }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_8"; - pixel_y = -20 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/darkred2, -/area/lv759/indoors/twe_souter_outpost/hallway) -"na" = ( -/obj/structure/pipes/standard/manifold/hidden/dark, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/twe_souter_outpost/hallway) -"nj" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/turf/open/floor/almayer/plating_striped/east, +/area/lv759/indoors/twe_souter_outpost/maint) "nk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -9; - pixel_y = 4 + icon_state = "door_warning"; + layer = 2.5 }, -/obj/structure/curtain/colorable_transparent{ - color = "#5a5a5a"; - alpha = 220; - layer = 3.2; - pixel_x = -32 +/obj/structure/largecrate/random/mini/med{ + pixel_x = -5; + pixel_y = -3 }, -/turf/open/floor/prison/blue/northwest, -/area/lv759/indoors/twe_souter_outpost/flight) +/turf/open/floor/almayer/floor, +/area/lv759/indoors/twe_souter_outpost/hangar) "nl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_25"; - pixel_x = 6; - pixel_y = 15 +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 }, -/obj/structure/sign/banners/twe_flag{ - pixel_y = 28 +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -5; + pixel_y = 22 }, -/turf/open/floor/prison/blue/north, -/area/lv759/indoors/twe_souter_outpost/flight) +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "ns" = ( /obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ light_color = "#FF0000"; light_on = 1; light_power = 3; light_range = 5; - pixel_y = 32 + pixel_y = 32; + pixel_x = -4 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 2 }, +/obj/item/tool/wet_sign{ + pixel_x = -11; + pixel_y = 21 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 + }, /turf/open/floor/prison/blue/north, /area/lv759/indoors/twe_souter_outpost/flight) "nt" = ( @@ -1369,7 +1775,8 @@ light_on = 1; light_power = 3; light_range = 5; - pixel_y = 32 + pixel_y = 32; + pixel_x = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -1410,38 +1817,95 @@ /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/twe_souter_outpost/reception) "nG" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ +/obj/structure/toilet{ + dir = 8; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + pixel_x = -16 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/lv759/indoors/twe_souter_outpost/hallway) +"nI" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ dir = 4 }, -/turf/open/floor/prison/red/east, -/area/lv759/indoors/twe_souter_outpost/reception) +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "nO" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/prop/hybrisa/misc/floorprops/grate3, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; +/obj/structure/machinery/light/small{ + dir = 8; pixel_y = -15 }, -/turf/open/floor/corsat, -/area/lv759/indoors/twe_souter_outpost/hangar) -"nS" = ( -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/platform/metal/hybrisa/metalplatform1, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkred2/east, /area/lv759/indoors/twe_souter_outpost/hallway) -"nT" = ( -/obj/structure/pipes/standard/manifold/hidden/dark{ +"nP" = ( +/obj/effect/decal/strata_decals/grime/grime4{ dir = 1 }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/almayer/plating/northeast, +/area/lv759/indoors/twe_souter_outpost/maint) +"nS" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"nT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) +"nX" = ( +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "nZ" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_x = -4; + pixel_y = 3; + layer = 2.8 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) "od" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ icon_state = "1,2" @@ -1449,11 +1913,12 @@ /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "oh" = ( -/obj/structure/machinery/big_computers/computerblack/computer5, -/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ - pixel_y = 28 +/obj/structure/machinery/light, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/prison/blue/southwest, /area/lv759/indoors/twe_souter_outpost/flight) "oi" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -1461,45 +1926,60 @@ pixel_y = 26 }, /obj/effect/decal/hybrisa/dirt_2, +/obj/item/clipboard{ + pixel_x = -5; + pixel_y = -1 + }, /turf/open/floor/prison/darkred2, /area/lv759/indoors/twe_souter_outpost/hallway) "om" = ( -/obj/structure/machinery/big_computers/computerblack/computer4, -/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ - pixel_y = 31 +/obj/structure/machinery/big_computers/computerblack/computer5, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_off{ + pixel_x = 3; + pixel_y = 30 }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/twe_souter_outpost/flight) "op" = ( -/obj/structure/machinery/big_computers/computerblack/computer3, -/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ - pixel_y = 31 +/obj/structure/machinery/big_computers/computerblack/computer4, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ + icon_state = "bluemultimonitorbig_on"; + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 1; + pixel_y = 32 }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/twe_souter_outpost/flight) "ot" = ( -/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_off{ - pixel_y = 28 +/obj/structure/machinery/big_computers/computerblack/computer3, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ + icon_state = "bluemultimonitorbig_on"; + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 }, -/obj/structure/machinery/big_computers/computerblack/computer5, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/twe_souter_outpost/flight) "ow" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_y = 6 +/obj/item/tool/mop{ + pixel_y = 23 }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 1; - pixel_y = 12 +/obj/item/trash/hybrisa/cuppa_joes/lid{ + pixel_x = -9 }, -/obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/darkred2/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, /area/lv759/indoors/twe_souter_outpost/hallway) "oR" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/almayer/test_floor5, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "pb" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, @@ -1524,127 +2004,175 @@ /obj/structure/bed/chair/comfy/black{ dir = 1 }, +/obj/structure/machinery/light, /turf/open/floor/hybrisa/metal/bluemetal1/north, /area/lv759/indoors/twe_souter_outpost) -"pI" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform5{ - dir = 1 - }, -/turf/open/hybrisa/street/sidewalk/southwest, -/area/lv759/outdoors/colony_streets/north_west_street) "pK" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 }, -/turf/open/shuttle/dropship/light_grey_top_left, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) "pY" = ( -/obj/structure/bed/sofa/hybrisa/sofa/black{ - icon_state = "couch_hori2_black"; - pixel_y = 12 +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 31; + pixel_x = 6 }, -/turf/open/floor/prison/darkred2, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/prison/darkred2/southwest, /area/lv759/indoors/twe_souter_outpost/hallway) "pZ" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform5/deco{ - dir = 8; - pixel_x = 3 - }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) -"qe" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/machinery/door_control{ - id = "souter_east"; - name = "Hangar Inner Podlock"; - pixel_x = -28 +/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + pixel_y = -2 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"qi" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ + dir = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"qe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) "qn" = ( -/obj/structure/platform/metal/hybrisa/metalplatform1, -/obj/structure/prop/hybrisa/misc/floorprops/grate, -/obj/structure/sign/safety/airtraffictower{ - pixel_x = 36; - pixel_y = -6 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 36; - pixel_y = 6 +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/twe_souter_outpost/hallway) +"qy" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3.3; + color = "#a6aeab" + }, +/turf/open/floor/almayer/blackfull/west, +/area/lv759/indoors/twe_souter_outpost/hallway) "qK" = ( -/obj/structure/surface/table/almayer, /obj/item/explosive/grenade/incendiary/rmc{ - pixel_x = 6; + pixel_x = 8; pixel_y = 7 }, -/obj/item/explosive/grenade/high_explosive/rmc, +/obj/item/explosive/grenade/high_explosive/rmc{ + pixel_x = 1; + pixel_y = 3 + }, /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/hybrisa/dirt_2, /obj/item/ammo_box/magazine/misc/mre/twe{ pixel_x = -16; - pixel_y = 16 + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" }, -/turf/open/floor/strata/red2, +/turf/open/floor/strata/red4/west, /area/lv759/indoors/twe_souter_outpost/armoury) "qW" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/plating/kutjevo, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -10; + pixel_y = 34 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_x = -4; + pixel_y = 3; + layer = 2.8 + }, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) "qY" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_x = 10 +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 }, -/turf/open/floor/prison/darkred2/west, +/turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) -"rt" = ( +"ra" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/disposalpipe/segment, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/structure/machinery/light/blue{ dir = 1 }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"rl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/central_streets) +"rt" = ( +/obj/structure/disposalpipe/segment, /obj/structure/largecrate/empty/case/double, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) +"ru" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/clothing/head/helmet/marine/veteran/iasf_beret{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) "rR" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ dir = 4 }, -/obj/structure/largecrate/random/barrel/purewhite, +/obj/structure/largecrate/random/barrel/brown, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) +"rZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "sj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkred2/west, -/area/lv759/indoors/twe_souter_outpost/hallway) -"ss" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/darkred2/east, +/turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) "sv" = ( /turf/open/floor/strata/multi_tiles/southeast, @@ -1653,48 +2181,68 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost) "sH" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/machinery/big_computers/computerblack/computer5, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_off{ + pixel_x = -1; + pixel_y = 30 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/item/prop/tableflag/uscm{ + pixel_x = 12; + pixel_y = 17; + layer = 3.2; + name = "TWE table flag"; + desc = "A miniature table flag bearing the insignia of the Three World Empire, representing the unity of Earth, Mars, and Titan." }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) "sN" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/maint) "sZ" = ( -/obj/item/clothing/gloves/marine/veteran/insulated{ - pixel_x = 1; - pixel_y = 6 +/obj/structure/machinery/door_control{ + id = "hangar_storage_1"; + name = "Hangar Outer Podlock"; + pixel_y = -22; + pixel_x = -7 }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 10 +/obj/structure/machinery/door_control{ + id = "hangar_storage_2"; + name = "Hangar Inner Podlock"; + pixel_y = -22; + pixel_x = 8 }, -/turf/open/floor/almayer/orange/east, +/turf/open/floor/almayer/plating_striped/west, /area/lv759/indoors/twe_souter_outpost/maint) +"tr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = 4; + layer = 3.3; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) "tE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; layer = 3.33; pixel_y = 2 }, -/obj/structure/bed/chair/comfy/black{ - pixel_y = 2; - pixel_x = 15; - dir = 4 +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 }, /turf/open/floor/prison/blue/north, /area/lv759/indoors/twe_souter_outpost/flight) "tH" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, /turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "4,14" + icon_state = "3,14_alt" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "tK" = ( @@ -1703,25 +2251,79 @@ }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) +"tM" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_y = -11 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 13; + pixel_x = -9 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) "tP" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/plating/kutjevo, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "tS" = ( -/obj/structure/cargo_container/hd/left, +/obj/structure/cargo_container/wy/left, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) +"ui" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 9; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"un" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "uz" = ( /turf/closed/wall/hybrisa/marhsalls/reinforced, /area/lv759/indoors/twe_souter_outpost/flight) "uD" = ( -/obj/structure/largecrate/random/barrel/brown{ - pixel_y = 4; +/obj/structure/machinery/door_control{ + id = "souter_east"; + name = "Hangar Inner Podlock"; + pixel_y = -22; pixel_x = 7 }, -/turf/open/floor/prison/darkred2/west, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) "uG" = ( +/obj/structure/pipes/standard/simple/hidden/dark, /obj/structure/bed/hybrisa/bunkbed2{ dir = 8 }, @@ -1732,25 +2334,32 @@ layer = 4; pixel_x = -20 }, +/obj/structure/largecrate/random/barrel/black{ + pixel_x = 4; + pixel_y = 3 + }, /turf/open/hybrisa/street/cement2, /area/lv759/outdoors/colony_streets/north_west_street) "uK" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/dorm) "uL" = ( -/obj/structure/window/framed/hybrisa/marshalls/reinforced, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/maint) -"uS" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"uS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/lv759/outdoors/colony_streets/central_streets) "ve" = ( /obj/item/trash/cigbutt{ pixel_x = -10; @@ -1759,52 +2368,58 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_x = 20; + pixel_y = 16 + }, /turf/open/floor/prison, /area/lv759/indoors/twe_souter_outpost/flight) "vf" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "imperial_armory"; + name = "Armory Lockdown"; + pixel_x = -22; + pixel_y = 5; + needs_power = 0 }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 1; + pixel_y = 1 }, -/turf/open/floor/prison/darkred2/northwest, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/strata/red4, +/area/lv759/indoors/twe_souter_outpost/armoury) "vj" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 }, -/obj/structure/machinery/door/poddoor{ - explo_proof = 1; - needs_power = 0; - unacidable = 1; - name = "\improper Escape Tunnel Lockdown"; - emp_proof = 1; - dir = 4; - pixel_x = 32; - density = 0 +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 6; + pixel_y = 15 }, -/obj/structure/platform/metal/stair_cut/strata_left, -/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ - light_color = "#FF0000"; - light_on = 1; - light_power = 3; - light_range = 5; - pixel_y = 32; - pixel_x = 17 +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"vI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/prison/ramptop/east, -/area/lv759/indoors/twe_souter_outpost/hallway) -"vx" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 3; - pixel_x = 30 +/obj/item/spacecash/ewallet{ + pixel_y = 8 }, -/turf/open/floor/hybrisa/metal/bluemetal1, -/area/lv759/indoors/twe_souter_outpost) +/obj/effect/decal/hybrisa/dirt, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) "vL" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 1; @@ -1813,72 +2428,163 @@ /obj/structure/pipes/vents/pump_hybrisa, /turf/open/floor/prison/darkredfull2, /area/lv759/indoors/twe_souter_outpost/hallway) +"vP" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "8,0"; + density = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "wf" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/prop/hybrisa/airport/refuelinghose2{ - pixel_x = -12; - pixel_y = -12; - dir = 1 +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 }, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) +"wk" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = 6 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3.3; + color = "#a6aeab" + }, +/turf/open/floor/almayer/blackfull/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"wJ" = ( +/obj/effect/decal/hybrisa/TWE_logo_large{ + dir = 1; + pixel_x = 16; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = -16; + pixel_y = 6 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) "wL" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/showcase{ - breakable = 1; - density = 0; - desc = null; - icon_state = "igniter0"; - name = "floor panel" +/obj/structure/barricade/handrail/strata{ + layer = 3.1 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva/radiator_tile2, -/area/lv759/indoors/twe_souter_outpost/hangar) +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"wS" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/obj/structure/sign/poster/ad{ + layer = 4; + pixel_x = 12; + pixel_y = 34 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/central_streets) +"xb" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 36; + pixel_y = -5 + }, +/obj/structure/machinery/door_control{ + id = "souter_west"; + name = "Hangar Outer Podlock"; + pixel_y = 10; + pixel_x = 23 + }, +/obj/item/tool/warning_cone{ + pixel_y = 22; + pixel_x = 3 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) "xc" = ( /obj/item/storage/briefcase, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/north_west_street) -"xf" = ( -/obj/structure/sign/poster/propaganda{ - pixel_x = -30 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 +"xd" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + pixel_x = 16; + pixel_y = 9 }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_9"; - pixel_y = -11 +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"xf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/almayer/blackfull/west, +/turf/open/floor/prison/darkred2/west, /area/lv759/indoors/twe_souter_outpost/hallway) "xl" = ( /turf/closed/wall/hybrisa/marhsalls/reinforced, /area/lv759/indoors/twe_souter_outpost/hangar) "xp" = ( +/obj/structure/machinery/big_computers/computerblack/computer3{ + pixel_y = -19; + layer = 2.9; + icon_state = "blacksensor_comp3_off" + }, /turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "5,14" + icon_state = "4,14" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "xs" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/shiva/radiator_tile2, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + icon_state = "wy_water_crushed" + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "xt" = ( -/obj/structure/machinery/mech_bay_recharge_port{ - name = "Power Port" +/obj/effect/decal/hybrisa/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/orange/northwest, -/area/lv759/indoors/twe_souter_outpost/maint) +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) "xv" = ( -/obj/structure/cargo_container/hd/right, +/obj/structure/cargo_container/wy/right, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) -"xw" = ( -/obj/structure/window/framed/hybrisa/marshalls/cell, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hallway) "xD" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ icon_state = "0,8" @@ -1898,58 +2604,77 @@ /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/reception) "yn" = ( -/obj/structure/shuttle/part/twe_cosmetic1/transparent{ - icon_state = "4,10" +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) "yq" = ( -/obj/structure/shuttle/part/twe_cosmetic1/transparent{ - density = 0 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "yr" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 4 +/obj/structure/surface/rack{ + color = "#848484" }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/almayer/plating_striped/north, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/plating_striped, /area/lv759/indoors/twe_souter_outpost/maint) "yE" = ( /obj/structure/machinery/big_computers/messaging_server/black, +/obj/item/clothing/head/beret/iasf_commander_cap{ + pixel_x = -3; + pixel_y = 10 + }, /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/twe_souter_outpost/flight) -"yR" = ( -/obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/hybrisa/metal/stripe_red/east, -/area/lv759/indoors/twe_souter_outpost/hallway) +"zj" = ( +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/structure/closet/crate/green, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) "zo" = ( -/obj/structure/prop/hybrisa/misc/redmeter{ - pixel_y = 32 - }, -/turf/open/floor/strata/red3/north, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/strata/multi_tiles, /area/lv759/indoors/twe_souter_outpost/armoury) "zr" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_y = -5; + pixel_x = 17 + }, /turf/open/floor/prison/blue/west, /area/lv759/indoors/twe_souter_outpost/flight) "zJ" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two{ - req_access = null; - req_one_access = null; - dir = 1 +/turf/closed/shuttle/twe_dropship{ + icon_state = "2,12" }, -/turf/open/floor/almayer/test_floor4, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "zR" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) "zU" = ( /obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ dir = 1; @@ -1967,83 +2692,118 @@ /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "zY" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/closed/shuttle/twe_dropship{ + icon_state = "4,8" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "zZ" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/hallway) "Ae" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer{ - explo_proof = 1 +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/item/clothing/head/helmet/marine/veteran/royal_marine/pilot/alt{ + pixel_x = -9; + pixel_y = 28; + layer = 3.4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "Ak" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/reception) "Am" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 4; - pixel_x = -4 - }, -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/prison/red/west, -/area/lv759/indoors/twe_souter_outpost/reception) -"Ao" = ( -/obj/structure/bed/chair/vehicle{ - pixel_y = 22; - pixel_x = -8 +/obj/structure/machinery/door_control{ + id = "souter_east"; + name = "Hangar Inner Podlock"; + pixel_x = -22; + pixel_y = 10 }, -/obj/structure/bed/chair/vehicle{ - pixel_y = 22; - pixel_x = 8 +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Ao" = ( +/obj/structure/bed/chair/vehicle/white{ + dir = 4; + pixel_x = -6; + pixel_y = 1; + buckle_offset_x = -6; + buckle_offset_y = 1 }, -/turf/open/shuttle/dropship/light_grey_left_to_right, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "AL" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/prop/hybrisa/misc/floorprops/grate3{ - dir = 1 +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 }, -/turf/open/floor/corsat, +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "AM" = ( -/obj/structure/dropship_equipment/weapon/minirocket_pod, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "AN" = ( -/turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "5,12" +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + req_access = null; + req_one_access = null; + dir = 1; + name = "\improper UD4-UK - cockpit" }, +/turf/open/floor/almayer/test_floor4, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "AY" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"Be" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) "Bf" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/twe_souter_outpost/hallway) -"Bq" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform5/deco{ - dir = 4; - pixel_x = -3 +/obj/structure/machinery/light/blue{ + dir = 1 }, -/turf/open/hybrisa/street/sidewalk/east, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Bj" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/item/storage/backpack/rmc/light, +/turf/open/floor/strata/red3/north, +/area/lv759/indoors/twe_souter_outpost/armoury) +"Bq" = ( +/turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) "Bw" = ( /obj/vehicle/powerloader{ @@ -2051,6 +2811,16 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/lv759/indoors/twe_souter_outpost/maint) +"BD" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/structure/largecrate/random/barrel/black{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "BT" = ( /obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ dir = 1; @@ -2060,180 +2830,280 @@ /turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "BW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#98a3ab" - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 17 +/obj/structure/machinery/door_control{ + id = "hangar_storage_1"; + name = "Hangar Outer Podlock"; + pixel_y = 10; + pixel_x = 23 }, -/obj/effect/landmark/objective_landmark/close, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - name = "TWE coffee mug"; - desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; - pixel_y = -3; - pixel_x = -9 +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 }, -/turf/open/floor/prison/red, -/area/lv759/indoors/twe_souter_outpost/reception) +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) "BY" = ( -/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, -/obj/structure/stairs{ - color = "#a6aeab"; +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ dir = 8 }, -/turf/open/hybrisa/street/sidewalk/north, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalkfull, /area/lv759/outdoors/colony_streets/north_west_street) +"Ca" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) "CE" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "CR" = ( -/obj/item/tool/mop{ - pixel_y = 23 - }, -/obj/item/trash/hybrisa/cuppa_joes/lid{ - pixel_x = -9 +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 }, -/turf/open/floor/prison/darkred2/west, +/turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) "CS" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) -"CY" = ( -/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard3{ - dir = 6; - lazy_nodes = 0; - layer = 3 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/turf/open/hybrisa/street/sidewalk/northwest, -/area/lv759/outdoors/colony_streets/north_west_street) -"Dg" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; +/obj/structure/sign/safety/ammunition{ pixel_x = 16; - pixel_y = -15 + pixel_y = -24 }, -/turf/closed/wall/hybrisa/marhsalls/reinforced, -/area/lv759/indoors/twe_souter_outpost/flight) -"Dm" = ( -/turf/open/floor/hybrisa/metal/red_warning_floor, -/area/lv759/indoors/twe_souter_outpost/hallway) -"Dw" = ( /obj/structure/stairs{ color = "#a6aeab"; - dir = 8 - }, -/obj/structure/platform/metal/stair_cut/platform_right, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"Dx" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - icon_state = "grime3" - }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_5"; - pixel_y = 12 + dir = 4 }, -/turf/open/floor/prison/darkred2/west, +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) -"DC" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; +"CY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 10; pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"DD" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 + pixel_y = 9 }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/north_west_street) -"DF" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 +"Dg" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5 }, -/obj/structure/largecrate/random/case/small, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) -"DV" = ( -/obj/structure/prop/hybrisa/misc/cabinet{ - dir = 8; - pixel_x = 5; - pixel_y = 18; +/turf/open/floor/almayer/floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Dh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/structure/reagent_dispensers/fueltank/spacecraft{ layer = 3.1 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 30; - layer = 3.2 +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Di" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 }, -/obj/effect/decal/hybrisa/trash{ - icon_state = "trash_8"; - pixel_y = -5 +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"Dm" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32; + pixel_x = 17 }, -/turf/open/floor/prison/blue/north, -/area/lv759/indoors/twe_souter_outpost/flight) -"Ec" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 }, -/turf/open/floor/corsat, -/area/lv759/indoors/twe_souter_outpost/hangar) -"Ey" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/indoors/twe_souter_outpost/hangar) -"EC" = ( -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 +"Dw" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" }, -/obj/effect/decal/hybrisa/dirt_2, -/turf/open/floor/prison/darkred2/southeast, -/area/lv759/indoors/twe_souter_outpost/hallway) -"EK" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - pixel_y = -3; - name = "crew compartment attach point" +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -7; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 9 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/item/reagent_container/pill/teabag{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/reagent_container/pill/teabag/earl_grey{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 14; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/mre_food/upp/dessert/darkchocolate{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_x = 5; + pixel_y = -23 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Dx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/structure/sign/banners/twe_flag{ + pixel_y = 28 + }, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"DA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_x = 9; + pixel_y = 25 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"DC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/tool/pen/blue{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"DD" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"DF" = ( +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"DM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"Ec" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Ey" = ( +/obj/structure/machinery/light, +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"EC" = ( +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/central_streets) +"EK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ER" = ( +/obj/structure/machinery/faxmachine/twe, +/obj/item/paper, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) "EX" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ - icon_state = "2,13"; + icon_state = "4,1"; density = 0 }, /turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hangar) +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "EY" = ( /obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" + icon_state = "3"; + pixel_x = -10; + pixel_y = -4 }, /obj/item/tool/pen/blue{ pixel_x = -5; @@ -2242,52 +3112,98 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "EZ" = ( -/obj/item/tool/warning_cone{ - pixel_x = -18; - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 7; + pixel_y = 31 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Fu" = ( +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = 7; + name = "showers semiotic"; + desc = "Semiotic Standard denoting the nearby presence of showers." + }, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"FA" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ +/obj/effect/decal/hybrisa/trash, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 + name = "rubber mat"; + pixel_y = -5; + pixel_x = 17 }, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hangar) +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) "FD" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/pipes/vents/pump_hybrisa, -/turf/open/floor/almayer/orange/southwest, -/area/lv759/indoors/twe_souter_outpost/maint) -"FZ" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ - dir = 1 +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 6; + pixel_y = 14; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -7; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = 6; + pixel_y = 26; + layer = 3.11 }, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"FZ" = ( /obj/item/tool/warning_cone{ layer = 2; pixel_x = -20 }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/north_west_street) -"Gn" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +"Ga" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 }, /turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/hangar) +/area/lv759/indoors/twe_souter_outpost/reception) +"Gn" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/reception) "Go" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 9; - name = "TWE coffee mug"; - desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; - pixel_y = 1 +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 16 }, -/turf/open/floor/almayer/blackfull/west, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/almayer, /area/lv759/indoors/twe_souter_outpost/hallway) "Gr" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4, @@ -2300,14 +3216,29 @@ "Gs" = ( /obj/structure/machinery/disposal/delivery, /obj/item/trash/burger, -/turf/open/floor/almayer/black, +/turf/open/floor/almayer, /area/lv759/indoors/twe_souter_outpost/hallway) -"Gz" = ( -/obj/item/tool/pen/blue{ - pixel_x = -5; - pixel_y = -4 +"Gt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 }, -/turf/closed/wall/hybrisa/marhsalls, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"Gu" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/veteran/iasf_beret{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, /area/lv759/indoors/twe_souter_outpost/dorm) "GD" = ( /obj/structure/filingcabinet{ @@ -2323,410 +3254,806 @@ /turf/open/floor/prison/floor_plate/southwest, /area/lv759/indoors/twe_souter_outpost/reception) "GE" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) -"GO" = ( -/obj/structure/machinery/door/window/southleft, -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" +"GI" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 }, -/obj/item/tool/pen/blue{ - pixel_x = -9; +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; pixel_y = -2 }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 9 +/obj/item/paper{ + pixel_y = 11; + pixel_x = -8 + }, +/obj/item/paper/crumpled, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"GM" = ( +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"GN" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 }, /turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/reception) -"GR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_x = 1; - pixel_y = 10 +/area/lv759/indoors/twe_souter_outpost/hangar) +"GO" = ( +/obj/structure/machinery/door_control{ + id = "souter_south"; + name = "Emergency Exit Access"; + pixel_y = -19; + pixel_x = 8 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 6; - name = "TWE coffee mug"; - desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty." +/obj/item/paper{ + pixel_y = 11; + pixel_x = -8 }, -/turf/open/floor/almayer/orange/west, -/area/lv759/indoors/twe_souter_outpost/maint) -"Hc" = ( -/obj/structure/machinery/door_control{ - id = "souter_east"; - name = "Hangar Inner Podlock"; - pixel_y = -30; - pixel_x = 7 +/obj/item/tool/pen/blue{ + pixel_x = 2; + pixel_y = -1 }, -/turf/open/floor/hybrisa/metal/red_warning_floor, +/turf/open/floor/prison/darkred2/east, /area/lv759/indoors/twe_souter_outpost/hallway) +"Hc" = ( +/obj/structure/machinery/light/small{ + pixel_x = 16 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door_control{ + id = "souter_west"; + name = "Hangar Outer Podlock"; + pixel_y = -22; + pixel_x = -7 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) "Hh" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 6 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/structure/bed/hybrisa/bunkbed2, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) "Hm" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/hybrisa/fakeplatforms/platform5/deco{ - pixel_x = 3 +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 }, -/turf/open/hybrisa/street/sidewalk/west, -/area/lv759/outdoors/colony_streets/north_west_street) +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) "Hs" = ( -/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ dir = 1 }, /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/north_west_street) -"Hu" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/structure/prop/hybrisa/fakeplatforms/platform5/deco{ - dir = 1; - pixel_x = -3 - }, -/turf/open/hybrisa/street/sidewalk/east, -/area/lv759/outdoors/colony_streets/north_west_street) "Hy" = ( -/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, -/obj/structure/pipes/standard/simple/hidden/dark{ +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"HA" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/lv759/indoors/twe_souter_outpost/maint) +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "HQ" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/dorm) "HU" = ( /obj/structure/machinery/power/apc/no_power/north, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_25"; - pixel_x = 6; - pixel_y = 15 + pixel_x = 12; + pixel_y = 20 }, /turf/open/floor/prison/blue/north, /area/lv759/indoors/twe_souter_outpost/flight) "HV" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/surface/rack{ + color = "#848484" }, -/turf/closed/wall/hybrisa/marhsalls/reinforced, +/obj/item/storage/belt/gun/iasf_para_belt/full{ + pixel_y = 9 + }, +/obj/item/storage/belt/marine/rmc{ + pixel_y = -2 + }, +/turf/open/floor/strata/red3/north, +/area/lv759/indoors/twe_souter_outpost/armoury) +"HW" = ( +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/pipes/vents/pump_hybrisa, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/lv759/indoors/twe_souter_outpost) +"HX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) "Ii" = ( -/obj/effect/decal/medical_decals{ - dir = 8; - icon_state = "triagedecaldir"; - color = "#d3d3d3" - }, /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/red/east, /area/lv759/indoors/twe_souter_outpost/reception) -"IC" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +"IB" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning2"; + pixel_x = 3; + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) +"IC" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/nspa{ + pixel_y = 33 + }, +/obj/structure/sign/poster/nspa{ + pixel_x = 8; + pixel_y = 36 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"IE" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/lv759/outdoors/colony_streets/central_streets) "IJ" = ( +/obj/item/clothing/shoes/marine/royal_marine{ + pixel_x = -5; + pixel_y = 11 + }, /turf/open/floor/prison/darkpurple2, /area/lv759/indoors/twe_souter_outpost/dorm) "IP" = ( -/obj/structure/shuttle/part/twe_cosmetic1/transparent{ - icon_state = "2,0" +/obj/structure/pipes/vents/pump_hybrisa, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"IS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) -"Jp" = ( -/obj/structure/disposalpipe/tagger{ - dir = 4 +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Ja" = ( +/obj/structure/cargo_container/hybrisa/containersextended/greenwywingsright, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Jj" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 1 +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Jl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Jp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "Js" = ( -/obj/structure/pipes/vents/pump_hybrisa, +/obj/structure/machinery/space_heater/radiator/red, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + color = "#a6aeab" + }, /turf/open/floor/prison/blue, /area/lv759/indoors/twe_souter_outpost/flight) +"JD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "JG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 3 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/darkred2/northeast, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "JL" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/northeast, -/obj/structure/platform_decoration/metal/almayer/northwest, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/obj/structure/machinery/washing_machine{ + pixel_y = 18; + density = 0 + }, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 33; + density = 0 + }, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) "Kd" = ( /obj/structure/window/framed/hybrisa/marshalls/reinforced, /obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown" + }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/flight) "Kf" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "souter_west"; - name = "\improper Lockdown"; - vehicle_resistant = 1; - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Kl" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Kx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 4; + pixel_x = 2 + }, +/obj/item/trash/hybrisa/cuppa_joes/lid{ + pixel_x = -9 }, -/turf/open/floor/almayer/cargo_arrow/east, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) "Kz" = ( /turf/open/hybrisa/street/cement2, /area/lv759/outdoors/colony_streets/north_west_street) -"KL" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ +"KK" = ( +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, +/obj/structure/stairs{ + color = "#a6aeab"; dir = 4 }, +/turf/open/hybrisa/street/cement3, +/area/lv759/outdoors/colony_streets/central_streets) +"KL" = ( /obj/item/trash/cigbutt{ pixel_x = -10; - pixel_y = 7 + pixel_y = 13 }, -/turf/open/floor/strata/multi_tiles/west, -/area/lv759/indoors/twe_souter_outpost/hallway) -"KN" = ( -/obj/structure/window/framed/hybrisa/marshalls/reinforced, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/reception) -"La" = ( -/turf/open/floor/prison/darkred2, -/area/lv759/indoors/twe_souter_outpost/hallway) -"Lh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"LD" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +/obj/structure/sign/safety/ammunition{ + pixel_x = -1; + pixel_y = -24 }, /turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) -"Mg" = ( -/obj/structure/shuttle/part/twe_cosmetic1/transparent{ - icon_state = "8,0"; - density = 0 +"KM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"KN" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, /turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) +/area/lv759/indoors/twe_souter_outpost/reception) +"KS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"KW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + icon_state = "wy_water_crushed" + }, +/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard3{ + dir = 5; + pixel_y = 34; + lazy_nodes = 0; + layer = 3; + pixel_x = 4 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"La" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Lh" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/fuel_cell/used, +/turf/open/floor/almayer/plating_striped, +/area/lv759/indoors/twe_souter_outpost/maint) +"LD" = ( +/turf/open/floor/strata/red3/east, +/area/lv759/indoors/twe_souter_outpost/armoury) +"Mg" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 1; + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) "Mp" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/platform/metal/hybrisa/metalplatform6/north, -/turf/open/hybrisa/street/cement2, +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "Mx" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -7 - }, -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 4 +/obj/structure/closet/crate{ + color = "#98a3ab" }, +/obj/item/roller/bedroll, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, /turf/open/floor/prison/darkpurple2/north, /area/lv759/indoors/twe_souter_outpost/dorm) "MH" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/north, -/turf/open/floor/almayer/plating/northeast, -/area/lv759/indoors/twe_souter_outpost/maint) -"MX" = ( -/turf/closed/wall/hybrisa/marhsalls, -/area/lv759/indoors/twe_souter_outpost/flight) -"Nb" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 +/obj/item/tool/warning_cone{ + pixel_y = 17 }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"MO" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"MP" = ( /obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/prop/hybrisa/fakeplatforms/platform4{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/lv759/indoors/twe_souter_outpost/hallway) -"Nd" = ( -/obj/structure/shuttle/part/twe_cosmetic1/transparent{ - icon_state = "6,13"; - density = 0 +"MW" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 8; + pixel_x = 16; + pixel_y = 9 }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/blood{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"MX" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/structure/largecrate/random/case{ + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) +"Nb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"Nd" = ( +/obj/structure/machinery/door_control{ + id = "imperial_armory"; + name = "Armory Lockdown"; + pixel_x = 23; + pixel_y = 5; + needs_power = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/strata/red4/north, +/area/lv759/indoors/twe_souter_outpost/armoury) "Nf" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/twe_souter_outpost/maint) "Nj" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/hangar) +"Nn" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/doubleroad/lines2{ + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/colony_streets/north_west_street) "Nw" = ( /obj/structure/platform/metal/hybrisa/metalplatform6/north, -/obj/structure/platform/metal/hybrisa/metalplatform6, /turf/open/hybrisa/street/cement2, /area/lv759/outdoors/colony_streets/north_west_street) -"NF" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6/west, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"NO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/prison/ramptop, -/area/lv759/indoors/twe_souter_outpost/maint) -"NK" = ( -/obj/structure/platform/metal/almayer/west, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33 +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/tool/warning_cone{ - pixel_x = 5; - pixel_y = 19 +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"NV" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 16 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"NO" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/largecrate/empty{ - pixel_x = -3; - pixel_y = 4 +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) "Om" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +/obj/structure/window/reinforced{ dir = 8; - icon_state = "p_stair_full" + health = 80 }, -/obj/structure/machinery/door/poddoor{ - explo_proof = 1; - needs_power = 0; - unacidable = 1; - name = "\improper Escape Tunnel Lockdown"; - emp_proof = 1; +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 32; - density = 0 + health = 80 }, -/turf/open/floor/prison/ramptop/east, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/effect/spawner/random/pills/midchance, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/obj/structure/curtain/open/colorable_transparent{ + color = "#687d89"; + alpha = 235 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, /area/lv759/indoors/twe_souter_outpost/hallway) +"OI" = ( +/obj/structure/largecrate/supply/supplies/mre/twe, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) "OS" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/largecrate/random/barrel/blue{ - layer = 2.9 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 2; + pixel_y = 33 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/structure/sign/safety/opens_up{ + pixel_x = 14; + pixel_y = 33 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Pa" = ( +/obj/structure/sign/poster/music{ + pixel_x = 3; + pixel_y = 34 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 7; + pixel_y = 38; + layer = 3.2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/central_streets) "Pe" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/plating/kutjevo, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Pg" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + layer = 2.5; + pixel_y = 5 + }, +/turf/open/floor/prison/ramptop/north, /area/lv759/indoors/twe_souter_outpost/hangar) "Pm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 21; - pixel_x = -6 +/obj/structure/machinery/vending/coffee{ + pixel_x = -3; + pixel_y = 20; + density = 0 }, +/obj/effect/decal/hybrisa/dirt_2, /turf/open/floor/prison/darkred2, /area/lv759/indoors/twe_souter_outpost/hallway) +"Pp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Pz" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"PD" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18; + layer = 4.2 + }, +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"PI" = ( +/obj/structure/bed/chair/vehicle/white{ + pixel_x = -7; + pixel_y = 16; + buckle_offset_x = -7; + buckle_offset_y = 16 + }, +/obj/structure/bed/chair/vehicle/white{ + pixel_x = 9; + pixel_y = 16; + buckle_offset_x = 9; + buckle_offset_y = 16 + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "PR" = ( /turf/open/floor/prison/blue/north, /area/lv759/indoors/twe_souter_outpost/flight) -"Qr" = ( -/obj/structure/stairs{ - color = "#a6aeab"; - dir = 8 +"PT" = ( +/obj/item/tool/warning_cone{ + pixel_y = 26; + pixel_x = -9 }, -/obj/structure/platform/metal/almayer, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) +"Qr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/almayer/black/east, +/area/lv759/indoors/twe_souter_outpost/hallway) "Qt" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 8 }, /turf/open/floor/prison/darkred2/northeast, /area/lv759/indoors/twe_souter_outpost/hallway) +"Qv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 13; + pixel_x = -7 + }, +/obj/structure/sign/poster/corporate{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) "QN" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/prop/hybrisa/misc/floorprops/grate3{ +/obj/item/prop/almayer/comp_open{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue/east, +/area/lv759/indoors/twe_souter_outpost/flight) +"Rc" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "6,0" + }, +/obj/structure/machinery/light/dropship/blue{ dir = 8 }, -/turf/open/floor/corsat, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"Rj" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, +/turf/open/floor/almayer/cargo, /area/lv759/indoors/twe_souter_outpost/hangar) -"Rc" = ( +"Rl" = ( +/obj/item/ammo_magazine/smg/p90/twe, /turf/open/floor/almayer/cargo, -/area/lv759/indoors/twe_souter_outpost) +/area/lv759/indoors/twe_souter_outpost/hangar) "Rq" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/door_control{ +/obj/structure/machinery/door/poddoor/almayer/closed{ id = "souter_west"; - name = "Hangar Outer Podlock"; - pixel_y = -30; - pixel_x = -6 + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/hybrisa/metal/red_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) "Rt" = ( /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "Ru" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - icon_state = "grime3" +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/prison/darkred2/north, +/turf/open/floor/prison/darkred2/northwest, /area/lv759/indoors/twe_souter_outpost/hallway) "RB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 21; - pixel_x = 4 +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"RD" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, /obj/effect/decal/hybrisa/dirt, -/turf/open/floor/prison/darkred2, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) "RH" = ( /obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, /obj/item/trash/cigbutt{ @@ -2735,9 +4062,27 @@ }, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) +"RK" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 4 + }, +/obj/item/clothing/head/helmet/marine/veteran/royal_marine/generic{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) "RM" = ( /turf/open/hybrisa/street/sidewalk/west, /area/lv759/outdoors/colony_streets/north_west_street) +"RT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkred2/west, +/area/lv759/indoors/twe_souter_outpost/hallway) "Sk" = ( /turf/open/hybrisa/street/sidewalk/southeast, /area/lv759/outdoors/colony_streets/north_west_street) @@ -2756,65 +4101,57 @@ "SD" = ( /turf/open/hybrisa/street/sidewalk/southwest, /area/lv759/outdoors/colony_streets/north_west_street) -"SW" = ( -/obj/structure/machinery/door_control{ - id = "souter_west"; - name = "Hangar Outer Podlock"; - pixel_y = 10; - pixel_x = 29 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 36; - pixel_y = -5 +"SP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/prison/darkred2/northwest, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"SW" = ( +/obj/structure/cargo_container/hybrisa/containersextended/greenwywingsleft, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) "Tb" = ( /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "Td" = ( -/obj/structure/platform/metal/almayer/west, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/kutjevo, +/turf/open/floor/almayer/cargo, /area/lv759/indoors/twe_souter_outpost/hangar) "Tn" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/reagent_dispensers/fueltank/spacecraft, -/turf/open/floor/shiva/radiator_tile2, -/area/lv759/indoors/twe_souter_outpost/hangar) -"To" = ( -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir"; - color = "#d3d3d3" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 7; - pixel_y = -28 +/obj/structure/prop/hybrisa/airport/refuelinghose2{ + pixel_x = -17; + pixel_y = -9; + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "Tt" = ( -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ - dir = 8 +/obj/structure/disposalpipe/tagger{ + dir = 4 }, -/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, -/turf/open/floor/prison/floor_plate/southwest, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv759/outdoors/colony_streets/north_west_street) "Tv" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 32 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "door_warning"; + layer = 2.5; + dir = 8; + pixel_x = -2 }, -/turf/open/floor/plating, +/turf/open/floor/prison/ramptop/east, /area/lv759/indoors/twe_souter_outpost/hangar) "Ty" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_x = -1 + icon_state = "door_warning"; + layer = 2.5; + dir = 8; + pixel_x = -2 }, -/turf/open/floor/plating, +/turf/open/floor/prison/ramptop/east, /area/lv759/indoors/twe_souter_outpost/hangar) "Tz" = ( /turf/open/floor/prison/darkred2/east, @@ -2822,37 +4159,77 @@ "TC" = ( /turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost) +"TG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/doubleroad/lines2{ + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/colony_streets/north_west_street) "TI" = ( /turf/closed/shuttle/twe_dropship/transparent{ - icon_state = "5,13" + icon_state = "5,13_alt" }, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "TJ" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/prison/darkred2/north, +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 16; + pixel_y = 2 + }, +/obj/item/clothing/accessory/patch/twe, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 11 + }, +/turf/open/floor/almayer, /area/lv759/indoors/twe_souter_outpost/hallway) "TN" = ( -/obj/structure/sign/safety/east{ - pixel_y = -30 +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 19 }, -/obj/structure/sign/safety/escapepod{ - pixel_y = -30; - pixel_x = 16; - desc = "Semiotic Standard denoting an escape tunnel."; - name = "escape tunnel semiotic" +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning2"; + pixel_x = 3; + dir = 4 }, -/turf/open/floor/almayer/plating, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"TO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/colony_streets/north_west_street) +"TW" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) "Ul" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/almayer/orange/east, +/obj/item/tool/wrench{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 6; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty." + }, +/turf/open/floor/almayer/plating_striped/west, /area/lv759/indoors/twe_souter_outpost/maint) "Um" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 10 +/obj/effect/spawner/random/tool, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkpurplecorners2/east, -/area/lv759/indoors/twe_souter_outpost/dorm) +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) "Un" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 9 @@ -2860,39 +4237,38 @@ /turf/open/floor/prison, /area/lv759/indoors/twe_souter_outpost/reception) "Uq" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 6 +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "hangar_storage_1"; + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 }, -/turf/open/floor/almayer/orange/west, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/twe_souter_outpost/maint) -"Uv" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/blue/southwest, -/area/lv759/indoors/twe_souter_outpost/flight) "UC" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/window/framed/hybrisa/marshalls/cell, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/maint) "UD" = ( -/obj/structure/cargo_container/hd/mid, +/obj/structure/cargo_container/wy/mid, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) "UF" = ( -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/prison/darkred2/north, -/area/lv759/indoors/twe_souter_outpost/hallway) -"UH" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/prop/hybrisa/misc/floorprops/grate3{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + layer = 3.1 }, -/obj/structure/prop/invuln/lattice_prop{ +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"UH" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/corsat, -/area/lv759/indoors/twe_souter_outpost/hangar) +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) "UU" = ( /obj/item/trash/cigbutt{ pixel_x = 4 @@ -2900,11 +4276,15 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_y = -5; + pixel_x = -1 + }, /turf/open/floor/prison, /area/lv759/indoors/twe_souter_outpost/flight) -"Vh" = ( -/turf/open/floor/hybrisa/metal/stripe_red/east, -/area/lv759/indoors/twe_souter_outpost/hallway) "Vj" = ( /turf/open/floor/hybrisa/metal/bluemetal1/southwest, /area/lv759/indoors/twe_souter_outpost) @@ -2915,47 +4295,55 @@ /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "Vq" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/largecrate/random/barrel/brown{ - layer = 2.9 - }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"Vr" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" +/obj/structure/machinery/door_control{ + id = "souter_west"; + name = "Emergency Exit Access"; + pixel_y = -3; + pixel_x = -22 }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 8; - pixel_y = -2 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 16; + pixel_x = -5; + layer = 4 }, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Vr" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17 }, -/obj/structure/pipes/vents/pump_hybrisa, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 9; - pixel_x = 2 +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 1 }, -/obj/structure/sign/nosmoking_1{ - layer = 2.8; - pixel_x = 30 +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6; + pixel_y = 1 }, -/turf/open/floor/hybrisa/metal/bluemetal1/north, -/area/lv759/indoors/twe_souter_outpost) +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "Vs" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown"; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/twe_souter_outpost/flight) +"Vt" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) "VD" = ( -/turf/open/floor/prison/darkred2/northwest, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) "VE" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -2970,7 +4358,11 @@ /obj/structure/pipes/standard/simple/hidden/dark{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown"; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, /area/lv759/indoors/twe_souter_outpost/flight) "VQ" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -2980,39 +4372,63 @@ /turf/open/floor/prison/darkred2/east, /area/lv759/indoors/twe_souter_outpost/hallway) "VX" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/sign/poster/nspa{ - pixel_x = -30 +/obj/structure/roof/hybrisa/lattice_prop/lattice_5{ + pixel_y = 16; + layer = 6 }, -/turf/open/floor/almayer/blackfull/west, +/turf/closed/wall/hybrisa/marhsalls, /area/lv759/indoors/twe_souter_outpost/hallway) +"We" = ( +/obj/item/tool/warning_cone{ + pixel_x = -36; + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Wj" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/item/reagent_container/food/drinks/cans/classcola{ + icon_state = "cola_crushed" + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) "Wm" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "souter_south"; - name = "\improper Emergency Exit"; - vehicle_resistant = 1 +/obj/structure/roof/hybrisa/lattice_prop/lattice_4{ + pixel_y = 16; + layer = 6 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/flight) "Wq" = ( /obj/effect/decal/cleanable/blood, /turf/open/hybrisa/street/sidewalk/south, /area/lv759/outdoors/colony_streets/north_west_street) -"Wu" = ( -/obj/structure/bed/hybrisa/bunkbed2{ - dir = 4 - }, -/turf/open/floor/hybrisa/carpet/carpetdarkerblue, -/area/lv759/indoors/twe_souter_outpost/dorm) "Ww" = ( -/obj/structure/bed/sofa/hybrisa/sofa/black{ - icon_state = "couch_hori3_black"; - pixel_y = 12 +/obj/structure/machinery/vending/cigarette/koorlander{ + pixel_x = 3; + pixel_y = 21; + density = 0 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 }, /turf/open/floor/prison/darkred2, /area/lv759/indoors/twe_souter_outpost/hallway) @@ -3029,11 +4445,11 @@ /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "WL" = ( -/obj/structure/pipes/standard/simple/hidden/dark{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" }, -/turf/open/floor/strata/multi_tiles, -/area/lv759/indoors/twe_souter_outpost/hallway) +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost) "WM" = ( /obj/structure/shuttle/part/twe_cosmetic1/transparent{ icon_state = "4,15" @@ -3041,29 +4457,32 @@ /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "WP" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/trash/tray, -/obj/structure/pipes/vents/pump_hybrisa, -/obj/item/storage/box/teabags{ - pixel_y = 9; - pixel_x = 21 - }, -/obj/item/reagent_container/pill/teabag{ - pixel_y = 11; - pixel_x = 9 +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 11 }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 10 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer/blackfull/west, +/turf/open/floor/almayer/black/west, /area/lv759/indoors/twe_souter_outpost/hallway) "WQ" = ( -/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright{ - layer = 4 +/obj/structure/bed/chair/vehicle/white{ + pixel_x = -7; + pixel_y = 16; + buckle_offset_x = -7; + buckle_offset_y = 16 }, -/turf/open/hybrisa/street/sidewalk/south, -/area/lv759/outdoors/colony_streets/north_west_street) +/obj/structure/bed/chair/vehicle/white{ + pixel_x = 9; + pixel_y = 16; + buckle_offset_x = 9; + buckle_offset_y = 16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) "Xa" = ( /obj/structure/pipes/standard/simple/hidden/dark{ dir = 6 @@ -3077,86 +4496,119 @@ /turf/open/hybrisa/street/sidewalk/north, /area/lv759/outdoors/colony_streets/north_west_street) "Xy" = ( -/obj/structure/platform/metal/hybrisa/metalplatform6, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/barricade/handrail/hybrisa/road/plastic/black, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue, +/turf/open/floor/prison/floor_plate/southwest, /area/lv759/outdoors/colony_streets/north_west_street) "Xz" = ( -/turf/closed/wall/hybrisa/marhsalls/unmeltable, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhite, /area/lv759/indoors/twe_souter_outpost/hallway) -"Ya" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +"XC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"Ye" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#b7b8b2" +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -9; + pixel_y = 4 }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 2 +/turf/open/floor/prison/blue/northwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"XJ" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_y = 25; + pixel_x = -10 }, -/turf/open/floor/prison/darkred2/east, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Ya" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, /area/lv759/indoors/twe_souter_outpost/hallway) "Yy" = ( +/obj/structure/machinery/power/apc/no_power/east, /obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 18; - layer = 4.2 + layer = 2; + pixel_x = -14 }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/corsat, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) +"YA" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 9; + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) "YK" = ( -/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkpurple2/north, /area/lv759/indoors/twe_souter_outpost/dorm) "YL" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/pipes/standard/simple/hidden/dark, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) "YN" = ( -/turf/open/floor/prison/darkred2/west, -/area/lv759/indoors/twe_souter_outpost/hallway) +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) "YR" = ( /obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 18 + pixel_x = -11; + pixel_y = -2 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 }, -/turf/open/floor/plating, +/turf/open/floor/plating/plating_catwalk, /area/lv759/indoors/twe_souter_outpost/hangar) "YV" = ( /turf/open/hybrisa/street/sidewalk/east, /area/lv759/outdoors/colony_streets/north_west_street) -"YX" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/lv759/indoors/twe_souter_outpost/twe_gunship) "Zd" = ( -/turf/closed/wall/hybrisa/marhsalls/unmeltable, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"Zf" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/almayer/cargo, /area/lv759/indoors/twe_souter_outpost/hangar) "Zi" = ( /obj/structure/pipes/standard/simple/hidden/dark{ @@ -3165,58 +4617,80 @@ /turf/open/floor/prison, /area/lv759/indoors/twe_souter_outpost/reception) "Zm" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/machinery/door/window/southleft, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/item/tool/pen/blue{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/tool/stamp{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/reception) +"Zr" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard3{ + dir = 6; + pixel_y = 34; + lazy_nodes = 0; + layer = 3 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"Zy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump_hybrisa, +/obj/structure/sign/safety/airtraffictower{ + pixel_x = 36; + pixel_y = -6 }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -11; - pixel_y = -5 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 36; + pixel_y = 6 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv759/indoors/twe_souter_outpost/hangar) -"Zr" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/plating/kutjevo, -/area/lv759/indoors/twe_souter_outpost/hangar) -"Zy" = ( -/obj/structure/window/framed/hybrisa/marshalls/reinforced, -/turf/open/floor/plating, -/area/lv759/indoors/twe_souter_outpost/flight) +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) "ZG" = ( -/obj/structure/shuttle/part/twe_cosmetic1/transparent{ - icon_state = "6,0" - }, /turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/twe_gunship) "ZN" = ( -/obj/structure/machinery/door_control{ - id = "souter_south"; - name = "Emergency Exit Access"; - pixel_y = -30; - pixel_x = 7 +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 }, -/obj/structure/machinery/disposal{ - pixel_x = -1 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 }, -/turf/open/floor/prison/darkred2/east, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + pixel_y = -2 + }, +/turf/open/floor/strata/multi_tiles/west, /area/lv759/indoors/twe_souter_outpost/hallway) "ZV" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/largecrate/empty, -/obj/structure/largecrate/random/mini{ - layer = 4; - pixel_x = -5; - pixel_y = 13 +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 }, -/turf/open/floor/shiva/radiator_tile2, +/turf/open/floor/plating, /area/lv759/indoors/twe_souter_outpost/hangar) "ZZ" = ( /obj/item/trash/cigbutt{ @@ -3227,146 +4701,200 @@ /area/lv759/outdoors/colony_streets/north_west_street) (1,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +pb +fi +fi +YV +YV +YV +ht +bW +YV +YV +fi +YV +YV +YV +pb +fZ +fZ +"} +(2,1,1) = {" +fZ +Tb DF -hE +CE gb BT fU Wq gb -BT +UH fb -Tb +KS VH -fi -uK -uK +Xy +hw +hw uK uK uK uK zZ +fG zZ +VX zZ zZ zZ zZ -zZ -zZ +KK +uS "} -(2,1,1) = {" +(3,1,1) = {" +Nn +Tb rR Kz Kz dU -Hm -pZ +CY +xd SD -Kz -Kz +Zd +Nb Tb VH -Xy +Jp uK -hw -hc -fE -cm -lF -mD -fG -ow -VX -bD -xf +JL +Hm +fK +Mx +HQ +Vq +nT +wk +WP +bE +aa Gs zZ +Pa +rl "} -(3,1,1) = {" +(4,1,1) = {" +TG +Pz md FZ RM Xq -CY -pI -VH +MW +wJ +dS RM DD -Tb +Bq VH -Jp +Tt uK hy -fX -fK -Mx +fQ +fQ +dy HQ -cZ -nT -UF -WP -bE -aa +dR +gA +MO +fh +TJ +Go at zZ +wS +TW "} -(4,1,1) = {" -WQ +(5,1,1) = {" +Nn +Vt +dY Hs xc EY -dB -lN +YA +Mg ZZ YV pb -hi +BY RH -Tt +Mp uK -hA -Wu +hB +br fQ -Wz -HQ -RB -gA -TJ -Go -bG -bp -au +mt +lF +jB +km +mu +ui +dg +bN +Dw zZ +aA +GM "} -(5,1,1) = {" +(6,1,1) = {" +TG +Tb tS uH So dB -Hu -Bq +AY +YV Sk ah kG -BY -cq -Mp +aw +dv +Nw uK -hB -fQ -fT -Wz +mw +RK +mN +YK uK -jB +pY gA -dg -bN -bN +qy +Qr +dN be -aA +tr zZ +gc +YN "} -(6,1,1) = {" +(7,1,1) = {" +TG +Tb UD rt gb @@ -3379,22 +4907,26 @@ Gr gf fB Nw -Gz -mw -aC -mN -YK uK -pY -LD -JG +uK +uK +uK +uK +uK +Ww +KL +bc bc bc bc bc aj +Bf +nS "} -(7,1,1) = {" +(8,1,1) = {" +TG +Tb xv Ak Ak @@ -3408,111 +4940,127 @@ sB kP iD uK -hW -fQ -eK -Wz +hA +uG +Gu +nZ uK -Ww -KL -dv -cV -bQ -br +Pm +ZN +dI +vf +bT +ik bc -fZ +KW +SP +UF "} -(8,1,1) = {" +(9,1,1) = {" +TG +hE Ak Ak -mu +mP lU -Am +aC kQ ke -GO -Rc +Zm +WL sB sB -pH +VE uK -hA -uG -ga +IJ +fQ +fQ Wz HQ -Pm +mI gA -To bc -bT -bw +HV +zo +gv bc -fZ +un +gs +wL "} -(9,1,1) = {" +(10,1,1) = {" +TO +Tb Ak nC mx Zi Un kU -BW +bw KN Vj sB sB -VE +pH uK -IJ -fX -gj +hY +he +fQ Wz HQ -EC +dP gA -dy bc -zo -bB +Bj +cz +cV bc -fZ +JD +KM +YN "} -(10,1,1) = {" +(11,1,1) = {" +fZ +fZ Ak GD mR -nG +Ii li -kV +ef ki KN -vx +af sB Xa -Vr +HW uK -hY -he -gk -Um -lF -mD -na dF -cV -cz +gZ +Hh +vj +lF +MP +pZ +dI +Nd +LD qK bc aj +bG +TW "} -(11,1,1) = {" +(12,1,1) = {" +fZ +fZ Ak Ak Ak -Ii +Gn xS -KN +Ga Ak Ak TC @@ -3525,533 +5073,609 @@ uK uK uK uK -dY -gA -dI +gk +CS +bc bc bc bc bc aj +IC +TW "} -(12,1,1) = {" +(13,1,1) = {" +fZ +fZ zZ -nS -af +bD +DC gA dq -aw -kn -kc +fT +nO +dc dP dq ad -mh -dc -Tz +hk +zR +kc dc +kc +zR Tz -Tz -ss ac gA Qt ab VQ -Ye -ZN +NV +GO zZ +cn +EC "} -(13,1,1) = {" +(14,1,1) = {" +fZ +fZ zZ zZ oi -eT -Bf +YL +ga mD mD mD +mE mD -Bf -dN +qY iW mD mD mD mD -Nb -YL -mD -dN -mD mD -WL -sv -cn -Wm -"} -(14,1,1) = {" -fZ -zZ -mZ -gA -dq -VD -YN -cZ -me -me -me -vL -Vh -yR -Vh -SW -Dx kf CR qY -uD -cZ -gA -vf +mD +pK +sv +sv sj -zZ +kY +YN +UF "} (15,1,1) = {" -zZ +fZ +fZ +fZ zZ cp -km +gA dq Ru kq -La -jj -dS -TN -Xz -Kf +RT +kq +Fu +dq +vL Kf +Ya Kf -sN -sN -sN -sN -sN -uL +xb +kt +dW +ow +BW +cZ uL Hy -sN -zZ +dn +xf zZ +OS +nS "} (16,1,1) = {" +fZ +fZ +zZ zZ -nZ mW gA dq -kW -kt -xw -ae -UC -UC -Xz -ie -hk +zZ +zZ +zZ +zZ +zZ +jq +mZ Rq +Rq +Rq +pn sN -xt -GR Uq -FD -MH +Uq +pn +UC Nf -iw +UC sN -fZ -fZ +zZ +zZ +YN +UF "} (17,1,1) = {" +fZ +fZ zZ qn -ag +La gA dq -kZ +sv kv Xz -vj +zZ Om lf -Xz -Dm +xl Dm +EK Hc -sN -Bw +pn +bB Ul sZ -NF +pn +fn +nP yr +sN +mv +HA +RD +wL +"} +(18,1,1) = {" +fZ +fZ +zZ +EZ +Zy +eE +Kx ha -mv +zZ +nG +xl +xl +xl +xl +cg +EK +uD +pn +Bw +dd +nj +lN +bp +am +Lh sN +Zr +Di +yn +UF +"} +(19,1,1) = {" fZ fZ -"} -(18,1,1) = {" -MX -MX -Zy +uz +uz +uz VN Vs uz xl -Zd -Zd -Zd -Zd -Zd -cg -cg -cg -pn -pn +xl +xl +fg +iy +xl +hJ +hJ +hJ pn pn +kZ +kZ pn -Lh pn +co pn pn +mh +aT +kn +wL +"} +(20,1,1) = {" fZ fZ -"} -(19,1,1) = {" -MX +uz yE -nk +XC zr -Uv -Dg -jq -AY -uS -UH -fg -uS -Dw -hJ -Qr -qe -fg -uS -uS -nO -uS -uS -sH +oh +uz +MX +mL +qW +Ty +Ty +HX +Ty +Ty +Ty +Am +mb +Tv +Ty +ij +Vr +lL +iw xl +Wj +eN +yn +UF +"} +(21,1,1) = {" fZ fZ -"} -(20,1,1) = {" -MX -MX -nl +uz +uz +Dx xN -ik +lD uz -qW -Ec -Rt -Rt -Rt -Ty -Ey -Ey -Ey -Tv -Rt -Rt +lH +Kl +GE +hi +hi +GE +hi +hi +hi +GE +GE +hi +PT +GE mn -Rt -Rt -Yy -Zr +PD +yq +xl +xl xl +IS +wL +"} +(22,1,1) = {" fZ fZ -"} -(21,1,1) = {" fZ -MX +uz PR ve -lD +hL Kd -OS -GE +lO +ZV +We +Rt +Rt +Rt Rt -Ae Rt -Ty -Ey -Ey xD -gv +me fp eu hT -Rt -yq -Rt -Zr +AM +eU +rZ +ag +ru +SW xl +Ca +UF +"} +(23,1,1) = {" fZ fZ -"} -(22,1,1) = {" -MX -MX +uz +uz ns xN -lE +lq Kd -Vq -IC +lO +ZV Rt Rt -EX +ln pc -gD -YX +hm +hq gD gD ev ev od -Rt +bU Vl -Rt -Zr -xl -fZ -fZ -"} -(23,1,1) = {" -MX -oh -nt -xN -lH -Kd -qW -IC -lp -iP -hm -dW -pK -hq -Hh -CS -nj -EK -ef -Sn -IP -Rt -Zr -xl +fX +ag +Ec +Ja xl -Nj +ao +Jl "} (24,1,1) = {" -MX +fZ +fZ +uz om -tE -xN -ao +jL +FA +fv Kd -qW -IC -WM +lO +ZV +lp tH -dd +hm zJ iq -yn -hs -Ao -JL -oR -zJ -Rt -Rt -Rt -Zr -mI +fq +Ao +Ao +Ao +oR +eK +Sn +kW +Um +Pg +Rl +au xl -fZ +DA +Gt "} (25,1,1) = {" -MX +fZ +fZ +uz op nt -UU -lK -Kd -qW -IC -ch +xN +tM +uz +YR +ZV +WM xp -TI +Ae AN ew -hq +kV zY -zR -fq -EK +hs +PI +ew en -dD +EX ZG -Rt -Zr -ln +rZ +ag +zj +Rj xl -fZ +XJ +Pp "} (26,1,1) = {" -MX +fZ +fZ +uz ot -nt +tE +UU +lK +Kd +lO +ZV +ch +eT +TI +zJ +WQ +fq +bQ +bQ +bQ +ie +mT +dD +Rc +rZ +Pg +Zf +Ey +xl +ra +DM +"} +(27,1,1) = {" +fZ +fZ +uz +sH +lE xN -lL +ho Kd -qW -IC +lO +ZV Rt Rt -Nd +jj pk -iy -YX +TI +hq gY gY fs eD cX -Rt +gj tK -Rt -Zr -ZV +rZ +ag +Td +OI xl -fZ +xt +Gt "} -(27,1,1) = {" -MX -MX +(28,1,1) = {" +fZ +fZ +uz +uz ny xN -lO +ER Kd -qW -IC +lO +JG +Rt Rt -AM Rt Rt Rt Rt WG -gZ +bP fw eG hT Rt -Mg -Rt -Zr -NO +vP +rZ +ag +nk xl -fZ -"} -(28,1,1) = {" -fZ -MX -HU -xN -ik -Dg -Ya -qi -Gn -Gn -YR -Gn -Gn -Gn -Gn -bP -Gn -dn -Gn -EZ -Gn -dO -DC -Zm xl -fZ +Jj +Pp "} (29,1,1) = {" fZ -MX -DV -et +fZ +fZ +uz +HU +xN Js uz +ae +nI tP -aT -da -QN -Td -mT -NK -bU +Pe +nl +Pe +Pe +Pe +MH +GN wf lW Pe da -da +Pe AL -da -da -gc -xs +yq +hp xl -fZ +xs +dx +Gt "} (30,1,1) = {" fZ -MX +fZ +fZ +uz +FD +GI +IP +et +RB +VD +RB +RB +RB +IB +TN +RB +Tn +Yy +qe +RB +RB +nX +RB +iP +BD +Dg +xl +NO +vI +bk +"} +(31,1,1) = {" +fZ +fZ +fZ +uz nB -mt +QN io uz -kY -HV xl xl xl -wL -Tn +xl +xl +hc +Dh xl xl xl @@ -4065,13 +5689,17 @@ xl xl xl Nj +Qv +Be "} -(31,1,1) = {" +(32,1,1) = {" fZ -MX -MX -MX -MX +fZ +fZ +uz +Wm +uz +uz uz xl xl @@ -4085,12 +5713,46 @@ fZ fZ fZ fZ -Nj -Nj +fE +fE fZ fZ fZ Nj Nj Nj +IE +mi +"} +(33,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ "} diff --git a/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase_survivors.dmm b/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase_survivors.dmm new file mode 100644 index 000000000000..f7230d420789 --- /dev/null +++ b/maps/map_files/LV759_Hybrisa_Prospera/standalone/twe_airbase_survivors.dmm @@ -0,0 +1,6350 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = -14; + pixel_x = -4 + }, +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/item/trash/burger, +/turf/open/floor/almayer/blackfull/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ab" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ac" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/darkred2/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ad" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/folding_barricade, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ae" = ( +/obj/structure/machinery/door_control{ + id = "twe_hangar_lockdown"; + name = "Flight Control - Lockdown"; + pixel_y = 30; + pixel_x = 1; + layer = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"af" = ( +/obj/item/trash/twe_mre, +/obj/item/ammo_box{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/lv759/indoors/twe_souter_outpost) +"ag" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning2"; + layer = 2.5; + dir = 1 + }, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ah" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"aj" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/armoury) +"am" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/lv759/indoors/twe_souter_outpost/maint) +"ao" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"at" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_x = -3; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"au" = ( +/obj/structure/largecrate/supply{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"aw" = ( +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"aA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"aC" = ( +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/prison/red/west, +/area/lv759/indoors/twe_souter_outpost/reception) +"aM" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"aT" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe3{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"bc" = ( +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/armoury) +"be" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 3; + density = 0 + }, +/obj/item/trash/twe_mre, +/turf/open/floor/almayer/blackfull/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"bk" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"bp" = ( +/obj/effect/landmark/survivor_spawner/twe/iasf/engi, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/plating_striped/north, +/area/lv759/indoors/twe_souter_outpost/maint) +"br" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = 9; + pixel_y = 42 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"bw" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = -3; + pixel_x = -9 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/red, +/area/lv759/indoors/twe_souter_outpost/reception) +"bB" = ( +/obj/structure/machinery/mech_bay_recharge_port{ + name = "Power Port" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/lv759/indoors/twe_souter_outpost/maint) +"bD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hallway) +"bE" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/black/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"bG" = ( +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/central_streets) +"bN" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 16; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"bP" = ( +/obj/structure/machinery/light/dropship/green{ + dir = 4 + }, +/turf/closed/shuttle/twe_dropship{ + icon_state = "8,7" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"bQ" = ( +/obj/structure/bed/chair/vehicle/white{ + dir = 8; + pixel_x = 6; + pixel_y = 1; + buckle_offset_x = 6; + buckle_offset_y = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"bT" = ( +/obj/item/ammo_box/magazine/p90/empty{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/strata/red3/west, +/area/lv759/indoors/twe_souter_outpost/armoury) +"bU" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "1,1" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"bW" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 31; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"cc" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"cg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ch" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "5,15" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"cn" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"co" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"cp" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -18; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -15; + pixel_x = -1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/twe_mre, +/obj/structure/bed/roller, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"cz" = ( +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/twe_souter_outpost/armoury) +"cA" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/prop/alien/hugger, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"cV" = ( +/obj/structure/machinery/light/small{ + pixel_x = -16 + }, +/obj/item/book/codebook/twe{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/strata/red3, +/area/lv759/indoors/twe_souter_outpost/armoury) +"cW" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"cX" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "7,2" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"cZ" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + pixel_y = 1 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"da" = ( +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"dc" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dd" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/bed/stool{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/lv759/indoors/twe_souter_outpost/maint) +"dg" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/darkred2/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dq" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dv" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform4, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"dx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"dy" = ( +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -10; + pixel_y = 19 + }, +/obj/item/attachable/bayonet/rmc{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -10; + pixel_y = 2 + }, +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"dB" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/lv759/outdoors/colony_streets/north_west_street) +"dD" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "6,1" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"dF" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/structure/sign/poster/nspa{ + pixel_y = 31; + pixel_x = -4 + }, +/obj/structure/sign/poster/music{ + pixel_x = 3; + pixel_y = 34 + }, +/obj/item/ammo_box/magazine/misc/mre/twe{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"dI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "imperial_armory"; + name = "Armory Lockdown"; + needs_power = 0; + unacidable = 1; + icon = 'icons/obj/structures/doors/hybrisashutters.dmi' + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/armoury) +"dK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/item/shard, +/obj/item/shard, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"dN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/almayer/black/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dP" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dR" = ( +/obj/structure/barricade/deployable{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6 + }, +/turf/open/floor/prison/darkred2/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dS" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 4; + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/deployable{ + damage_state = 2; + health = 140; + icon_state = "folding_2"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"dU" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"dW" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"dY" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"ef" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8; + pixel_x = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/ammo_casing/bullet, +/obj/item/tool/stamp{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/red/east, +/area/lv759/indoors/twe_souter_outpost/reception) +"en" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + req_access = null; + req_one_access = null; + dir = 1; + name = "\improper UD4-UK" + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"et" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown" + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"eu" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "0,4" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ev" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "1,4" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ew" = ( +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eD" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "7,6" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eE" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"eG" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "8,4" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eK" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "3,11" + }, +/turf/closed/shuttle/twe_dropship{ + icon_state = "2,2" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"eO" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"eT" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/closed/shuttle/twe_dropship/transparent{ + icon_state = "5,14_alt" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"eU" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + density = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"fb" = ( +/obj/structure/prop/hybrisa/misc/trash/green{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"fg" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"fh" = ( +/obj/item/storage/box/teabags{ + pixel_y = 9; + pixel_x = 21 + }, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/ammo_box/magazine/misc/mre/twe, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"fi" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_6{ + pixel_y = 16; + layer = 6 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"fn" = ( +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plating_striped/north, +/area/lv759/indoors/twe_souter_outpost/maint) +"fp" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "0,6" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"fq" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"fs" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "7,4" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ft" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"fv" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/window/reinforced{ + dir = 4; + layer = 3.3; + color = "#a6aeab" + }, +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"fw" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "8,6" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"fB" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"fE" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_4{ + pixel_y = 16; + layer = 6 + }, +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/hangar) +"fG" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "souter_outside_west"; + name = "\improper Emergency Exit"; + vehicle_resistant = 1; + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hallway) +"fK" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/bed/hybrisa/prisonbed{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"fQ" = ( +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"fT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/northeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"fU" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 20; + pixel_y = 15 + }, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"fX" = ( +/obj/effect/spawner/random/toolbox{ + layer = 4; + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"fZ" = ( +/turf/template_noop, +/area/template_noop) +"ga" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"gb" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"gc" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_y = 25; + pixel_x = -7 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"gf" = ( +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"gh" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"gj" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "7,1" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"gk" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = 2; + pixel_y = 31 + }, +/obj/structure/sign/safety/east{ + pixel_x = 13; + pixel_y = 31 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -3; + pixel_y = 19 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"gs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"gv" = ( +/obj/item/frame/rack{ + color = "#848484" + }, +/turf/open/floor/strata/red3, +/area/lv759/indoors/twe_souter_outpost/armoury) +"gA" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"gD" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "1,11" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"gX" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"gY" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "7,3" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"gZ" = ( +/obj/structure/bed/hybrisa/bunkbed2, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"ha" = ( +/obj/structure/machinery/disposal{ + pixel_x = -1 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 1; + pixel_y = -25 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/structure/machinery/door_control{ + id = "twe_hangar_lockdown"; + name = "Flight Control - Lockdown"; + pixel_y = 9; + pixel_x = 24; + layer = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"hb" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/ammo_magazine/rifle/rmc_f90, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"hc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/structure/reagent_dispensers/fueltank/spacecraft, +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/twe_souter_outpost/hangar) +"he" = ( +/obj/item/clothing/accessory/patch/twe, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"hi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"hk" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/prison/darkred2/northeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"hm" = ( +/turf/closed/shuttle/twe_dropship/transparent{ + icon_state = "3,13_alt" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ho" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -1; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"hp" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5 + }, +/obj/item/ammo_box/magazine/misc/mre/twe/empty{ + pixel_x = -11 + }, +/turf/open/floor/almayer/floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"hq" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + req_access = null; + req_one_access = null; + name = "\improper UD4-UK" + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"hs" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "4,7" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ht" = ( +/obj/structure/sign/safety/opens_up{ + pixel_x = 31; + pixel_y = -12 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"hw" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_5{ + pixel_y = 16; + layer = 6 + }, +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/dorm) +"hy" = ( +/obj/structure/bedsheetbin{ + pixel_y = 20 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"hA" = ( +/obj/structure/closet/crate{ + color = "#98a3ab" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"hB" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 7; + pixel_y = 35 + }, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"hE" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"hJ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "souter_east"; + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/red_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"hL" = ( +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/tool/screwdriver/tactical{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"hT" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "8,3" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"hY" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 18; + density = 0 + }, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"ia" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"ie" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ij" = ( +/obj/structure/machinery/door_control{ + id = "hangar_storage_2"; + name = "Hangar Inner Podlock"; + pixel_y = 11; + pixel_x = -22 + }, +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ik" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/turf/open/floor/strata/red4/east, +/area/lv759/indoors/twe_souter_outpost/armoury) +"io" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 9; + pixel_x = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue/southeast, +/area/lv759/indoors/twe_souter_outpost/flight) +"iq" = ( +/obj/structure/bed/chair/vehicle/white{ + pixel_x = 9; + pixel_y = 16; + buckle_offset_x = 9; + buckle_offset_y = 16 + }, +/obj/structure/bed/chair/vehicle/white{ + pixel_x = -7; + pixel_y = 16; + buckle_offset_x = -7; + buckle_offset_y = 16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"iw" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"iy" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"iD" = ( +/obj/structure/window_frame/hybrisa/marshalls/reinforced, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost) +"iP" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"iW" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"jj" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "6,13"; + density = 0; + pixel_x = -13; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"jq" = ( +/obj/structure/sign/safety/east{ + pixel_y = -30 + }, +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hallway) +"jB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/item/trash/twe_mre, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"jL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/item/paper/crumpled, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"jN" = ( +/obj/item/bedsheet/colorable{ + dir = 4; + layer = 4.1; + color = "#81929f"; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"kb" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"kc" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ke" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/shard, +/turf/open/floor/prison/red/southwest, +/area/lv759/indoors/twe_souter_outpost/reception) +"kf" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ki" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison/red/southeast, +/area/lv759/indoors/twe_souter_outpost/reception) +"km" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"kn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"kq" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"kt" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/item/tool/wet_sign{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"kv" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hallway) +"kG" = ( +/obj/structure/barricade/handrail/strata{ + layer = 4.1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform4, +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"kK" = ( +/obj/structure/window_frame/hybrisa/marshalls/reinforced, +/obj/item/shard, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/reception) +"kP" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1; + welded = 1 + }, +/obj/item/shard, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"kQ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/shard, +/turf/open/floor/prison/red/west, +/area/lv759/indoors/twe_souter_outpost/reception) +"kU" = ( +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/reception) +"kV" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "4,10" + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"kW" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "2,0" + }, +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"kY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + name = "weak acid" + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hallway) +"kZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "hangar_storage_2"; + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/maint) +"lf" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime2" + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/lv759/indoors/twe_souter_outpost/hallway) +"li" = ( +/obj/item/tool/pen/blue{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/prison/red/east, +/area/lv759/indoors/twe_souter_outpost/reception) +"ln" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "2,13"; + density = 0; + pixel_x = 13; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"lp" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "3,15" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"lq" = ( +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = -20; + pixel_y = 3 + }, +/obj/item/prop/tableflag/uscm{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"lD" = ( +/obj/structure/machinery/space_heater/radiator/red, +/obj/structure/window/reinforced{ + dir = 4; + layer = 3.3; + color = "#a6aeab" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"lE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/machinery/door_control{ + id = "twe_hangar_lockdown"; + name = "Flight Control - Lockdown"; + pixel_y = 28; + layer = 4 + }, +/obj/item/tool/pen/blue{ + pixel_y = -8; + pixel_x = 5 + }, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"lF" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/dorm) +"lH" = ( +/obj/structure/bed/stool{ + pixel_x = -6; + pixel_y = 18 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"lK" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"lL" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"lN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/maint) +"lO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"lU" = ( +/obj/item/paper{ + pixel_y = 11; + pixel_x = -8 + }, +/obj/structure/machinery/photocopier{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/lv759/indoors/twe_souter_outpost/reception) +"lW" = ( +/obj/structure/prop/hybrisa/airport/refuelinghose{ + pixel_x = -16; + pixel_y = -9; + dir = 1; + layer = 3.1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"mb" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 7 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"md" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"me" = ( +/obj/structure/machinery/light/dropship/red{ + dir = 8 + }, +/turf/closed/shuttle/twe_dropship{ + icon_state = "0,7" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"mg" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"mh" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"mi" = ( +/turf/open/hybrisa/street/sidewalk/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"mn" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"mt" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -8 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"mu" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"mv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + icon_state = "wy_water_crushed" + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"mw" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/structure/closet/crate{ + color = "#98a3ab" + }, +/obj/item/roller/bedroll, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"mx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/prison/red/north, +/area/lv759/indoors/twe_souter_outpost/reception) +"mD" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"mE" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"mI" = ( +/obj/item/paper/crumpled{ + pixel_x = -14; + pixel_y = 11 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"mL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"mN" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"mP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/structure/machinery/faxmachine/twe{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 41 + }, +/turf/open/floor/prison/red/northwest, +/area/lv759/indoors/twe_souter_outpost/reception) +"mR" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/prison/red/northeast, +/area/lv759/indoors/twe_souter_outpost/reception) +"mT" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "3,11" + }, +/turf/closed/shuttle/twe_dropship{ + icon_state = "6,2" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"mW" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 + }, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"mZ" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = 15; + pixel_y = 2 + }, +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/hangar) +"nd" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/shard, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"nj" = ( +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/lv759/indoors/twe_souter_outpost/maint) +"nk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/almayer/floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"nl" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -5; + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ns" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32; + pixel_x = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -11; + pixel_y = 21 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/storage/firstaid/regular/empty{ + pixel_x = -11; + pixel_y = -6 + }, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"nt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/item/trash/twe_mre, +/obj/item/ammo_box/magazine/misc/mre/twe{ + pixel_x = -12; + pixel_y = 9 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"ny" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32; + pixel_x = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"nB" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/blue/northeast, +/area/lv759/indoors/twe_souter_outpost/flight) +"nC" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/sign/banners/twe_flag{ + pixel_y = 28 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/reception) +"nD" = ( +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"nG" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + pixel_x = -16 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/lv759/indoors/twe_souter_outpost/hallway) +"nI" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"nO" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"nP" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/almayer/plating/northeast, +/area/lv759/indoors/twe_souter_outpost/maint) +"nS" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"nT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/obj/structure/machinery/vending/cigarette/koorlander, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"nX" = ( +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"nZ" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_x = -4; + pixel_y = 3; + layer = 2.8 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"od" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "1,2" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"oh" = ( +/obj/structure/machinery/light, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/roller/bedroll, +/turf/open/floor/prison/blue/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"oi" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/clipboard{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"om" = ( +/obj/structure/machinery/big_computers/computerblack/computer5, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_off{ + pixel_x = 3; + pixel_y = 30 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"op" = ( +/obj/structure/machinery/big_computers/computerblack/computer4, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ + icon_state = "bluemultimonitorbig_on"; + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 1; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"or" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"ot" = ( +/obj/structure/machinery/big_computers/computerblack/computer3, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ + icon_state = "bluemultimonitorbig_on"; + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"ou" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"ow" = ( +/obj/item/tool/mop{ + pixel_y = 23 + }, +/obj/item/trash/hybrisa/cuppa_joes/lid{ + pixel_x = -9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/item/trash/twe_mre, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"oR" = ( +/turf/open/floor/almayer/test_floor5, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"pb" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"pc" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "1,12" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"pk" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "7,12" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"pn" = ( +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/maint) +"pv" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"pH" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/lv759/indoors/twe_souter_outpost) +"pK" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"pY" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 31; + pixel_x = 6 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/hybrisa/cuppa_joes/empty_cup, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"pZ" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"qe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"qn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hallway) +"qy" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3.3; + color = "#a6aeab" + }, +/turf/open/floor/almayer/blackfull/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"qK" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/ammo_box/magazine/misc/mre/twe{ + pixel_x = -16; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/strata/red4/west, +/area/lv759/indoors/twe_souter_outpost/armoury) +"qW" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -10; + pixel_y = 34 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_x = -4; + pixel_y = 3; + layer = 2.8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"qY" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ra" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"rg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/tool/pen/blue{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/prop/colony/used_flare, +/obj/item/trash/hybrisa/cuppa_joes/empty_cup, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"rl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/central_streets) +"rt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/largecrate/empty/case/double, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"ru" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/clothing/head/helmet/marine/veteran/iasf_beret{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"rR" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"rZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"sj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"sl" = ( +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"sv" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"sx" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10; + pixel_x = -2; + layer = 3.1 + }, +/obj/structure/barricade/deployable{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + layer = 3.11 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"sB" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"sH" = ( +/obj/structure/machinery/big_computers/computerblack/computer5, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_off{ + pixel_x = -1; + pixel_y = 30 + }, +/obj/item/prop/tableflag/uscm{ + pixel_x = 12; + pixel_y = 17; + layer = 3.2; + name = "TWE table flag"; + desc = "A miniature table flag bearing the insignia of the Three World Empire, representing the unity of Earth, Mars, and Titan." + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"sN" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/maint) +"sV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"sZ" = ( +/obj/structure/machinery/door_control{ + id = "hangar_storage_1"; + name = "Hangar Outer Podlock"; + pixel_y = -22; + pixel_x = -7 + }, +/obj/structure/machinery/door_control{ + id = "hangar_storage_2"; + name = "Hangar Inner Podlock"; + pixel_y = -22; + pixel_x = 8 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/lv759/indoors/twe_souter_outpost/maint) +"tf" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/bed/bedroll{ + dir = 8 + }, +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"tr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = 4; + layer = 3.3; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"tt" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"tE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"tH" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/turf/closed/shuttle/twe_dropship/transparent{ + icon_state = "3,14_alt" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"tK" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "7,0" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"tM" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_y = -11 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 13; + pixel_x = -9 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"tP" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"tS" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"ui" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 9; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"un" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"uz" = ( +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/flight) +"uD" = ( +/obj/structure/machinery/door_control{ + id = "souter_east"; + name = "Hangar Inner Podlock"; + pixel_y = -22; + pixel_x = 7 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) +"uG" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"uH" = ( +/obj/item/tool/warning_cone{ + layer = 4; + pixel_x = -20 + }, +/obj/structure/largecrate/random/barrel/black{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"uK" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/dorm) +"uL" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"uS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/lv759/outdoors/colony_streets/central_streets) +"ve" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_x = 20; + pixel_y = 16 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"vf" = ( +/obj/structure/machinery/door_control{ + id = "imperial_armory"; + name = "Armory Lockdown"; + pixel_x = -22; + pixel_y = 5; + needs_power = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/strata/red4, +/area/lv759/indoors/twe_souter_outpost/armoury) +"vj" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 6; + pixel_y = 15 + }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"vI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/spacecash/ewallet{ + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"vL" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"vP" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "8,0"; + density = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"wf" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"wk" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = 6 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3.3; + color = "#a6aeab" + }, +/obj/item/frame/rack{ + color = "#848484"; + layer = 3.4 + }, +/turf/open/floor/almayer/blackfull/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"wJ" = ( +/obj/effect/decal/hybrisa/TWE_logo_large{ + dir = 1; + pixel_x = 16; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"wL" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"wS" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/obj/structure/sign/poster/ad{ + layer = 4; + pixel_x = 12; + pixel_y = 34 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/central_streets) +"xb" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 36; + pixel_y = -5 + }, +/obj/structure/machinery/door_control{ + id = "souter_west"; + name = "Hangar Outer Podlock"; + pixel_y = 10; + pixel_x = 23 + }, +/obj/item/tool/warning_cone{ + pixel_y = 22; + pixel_x = 3 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"xc" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"xd" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/device/m56d_post, +/obj/structure/barricade/deployable{ + damage_state = 2; + dir = 8; + health = 140; + icon_state = "folding_2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"xf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = 5; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/darkred2/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"xl" = ( +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/hangar) +"xp" = ( +/obj/structure/machinery/big_computers/computerblack/computer3{ + pixel_y = -19; + layer = 2.9; + icon_state = "blacksensor_comp3_off" + }, +/turf/closed/shuttle/twe_dropship/transparent{ + icon_state = "4,14" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"xs" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + icon_state = "wy_water_crushed" + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"xt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"xv" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"xD" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "0,8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"xN" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"xS" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/reception) +"yn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"yq" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"yr" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/plating_striped, +/area/lv759/indoors/twe_souter_outpost/maint) +"yE" = ( +/obj/structure/machinery/big_computers/messaging_server/black{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"zj" = ( +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/item/parachute, +/obj/structure/closet/crate/green, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"zo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/ammo_magazine/smg/p90/twe{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv759/indoors/twe_souter_outpost/armoury) +"zr" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_y = -5; + pixel_x = 17 + }, +/turf/open/floor/prison/blue/west, +/area/lv759/indoors/twe_souter_outpost/flight) +"zJ" = ( +/turf/closed/shuttle/twe_dropship{ + icon_state = "2,12" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"zN" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"zR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"zU" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ + dir = 1; + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -4 + }, +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"zY" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/closed/shuttle/twe_dropship{ + icon_state = "4,8" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"zZ" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Ae" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"Ah" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/obj/item/trash/twe_mre, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"Ai" = ( +/obj/effect/landmark/survivor_spawner/twe/iasf/pilot, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"Ak" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/reception) +"Am" = ( +/obj/structure/machinery/door_control{ + id = "souter_east"; + name = "Hangar Inner Podlock"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Ao" = ( +/obj/structure/bed/chair/vehicle/white{ + dir = 4; + pixel_x = -6; + pixel_y = 1; + buckle_offset_x = -6; + buckle_offset_y = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"AL" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"AM" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"AN" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + req_access = null; + req_one_access = null; + dir = 1; + name = "\improper UD4-UK - cockpit" + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"AO" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/bed/bedroll{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"AS" = ( +/obj/item/tool/pen/blue{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"AY" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/ammo_box{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/item/shard, +/obj/item/shard, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"Be" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Bf" = ( +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Bj" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/item/storage/backpack/rmc/light, +/turf/open/floor/strata/red3/north, +/area/lv759/indoors/twe_souter_outpost/armoury) +"Bq" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"Bw" = ( +/obj/vehicle/powerloader{ + layer = 5 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/lv759/indoors/twe_souter_outpost/maint) +"BD" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/structure/largecrate/random/barrel/black{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"BT" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ + dir = 1; + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"BW" = ( +/obj/structure/machinery/door_control{ + id = "hangar_storage_1"; + name = "Hangar Outer Podlock"; + pixel_y = 10; + pixel_x = 23 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"BY" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ + dir = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"Ca" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"CE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"CR" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"CS" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 16; + pixel_y = -24 + }, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"CY" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 10; + pixel_x = 16; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"Dg" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5 + }, +/turf/open/floor/almayer/floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Dh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/structure/reagent_dispensers/fueltank/spacecraft{ + layer = 3.1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Di" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"Dm" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32; + pixel_x = 17 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Dw" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -7; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 9 + }, +/obj/item/reagent_container/pill/teabag{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/reagent_container/pill/teabag/earl_grey{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 14; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty."; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_x = 5; + pixel_y = -23 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Dx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/structure/sign/banners/twe_flag{ + pixel_y = 28 + }, +/obj/structure/bed/bedroll{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"DA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_x = 9; + pixel_y = 25 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"DC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/tool/pen/blue{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"DD" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"DF" = ( +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"DM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"Ec" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Er" = ( +/obj/structure/disposalpipe/segment, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"Ey" = ( +/obj/structure/machinery/light, +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"EC" = ( +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/central_streets) +"EK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ER" = ( +/obj/structure/machinery/faxmachine/twe, +/obj/item/paper, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"EX" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "4,1"; + density = 0 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"EY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/rods, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"EZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 7; + pixel_y = 31 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Fu" = ( +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = 7; + name = "showers semiotic"; + desc = "Semiotic Standard denoting the nearby presence of showers." + }, +/turf/open/floor/prison/darkred2/southwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"FA" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_y = -5; + pixel_x = 17 + }, +/obj/item/tool/pen/blue{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"FD" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 6; + pixel_y = 14; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -7; + pixel_x = -6 + }, +/obj/item/trash/hybrisa/cuppa_joes/empty_cup, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"FH" = ( +/obj/item/clothing/head/helmet/marine/veteran/royal_marine/generic, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"FZ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"Ga" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/reception) +"Gl" = ( +/obj/item/device/flashlight/lamp/on{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"Gn" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/reception) +"Go" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 16 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Gr" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/disposalpipe/segment, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"Gs" = ( +/obj/structure/machinery/disposal/delivery, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Gt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/central_streets) +"Gu" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/veteran/iasf_beret{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"GD" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/indoors/twe_souter_outpost/reception) +"GE" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"GI" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/obj/item/paper{ + pixel_y = 11; + pixel_x = -8 + }, +/obj/item/paper/crumpled, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"GM" = ( +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"GN" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"GO" = ( +/obj/structure/machinery/door_control{ + id = "souter_south"; + name = "Emergency Exit Access"; + pixel_y = -19; + pixel_x = 8 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Hc" = ( +/obj/structure/machinery/light/small{ + pixel_x = 16 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door_control{ + id = "souter_west"; + name = "Hangar Outer Podlock"; + pixel_y = -22; + pixel_x = -7 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Hh" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/bed/hybrisa/bunkbed2, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"Hm" = ( +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"Hs" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/obj/item/stack/sandbags/small_stack, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"Ht" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Hy" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 11 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"HA" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"HQ" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 3.2; + alpha = 220 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/dorm) +"HU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 12; + pixel_y = 20 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/medic, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"HV" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/item/storage/belt/marine/rmc{ + pixel_y = -2 + }, +/turf/open/floor/strata/red3/north, +/area/lv759/indoors/twe_souter_outpost/armoury) +"HW" = ( +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/lv759/indoors/twe_souter_outpost) +"HX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Ii" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/red/east, +/area/lv759/indoors/twe_souter_outpost/reception) +"Ij" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"Iv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"IB" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning2"; + pixel_x = 3; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"IC" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/nspa{ + pixel_y = 33 + }, +/obj/structure/sign/poster/nspa{ + pixel_x = 8; + pixel_y = 36 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"IE" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/lv759/outdoors/colony_streets/central_streets) +"IJ" = ( +/obj/item/clothing/shoes/marine/royal_marine{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"IP" = ( +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"IS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Ja" = ( +/obj/structure/cargo_container/hybrisa/containersextended/greenwywingsright, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Jj" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Jl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Jn" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"Jp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"Js" = ( +/obj/structure/machinery/space_heater/radiator/red, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + color = "#a6aeab" + }, +/turf/open/floor/prison/blue, +/area/lv759/indoors/twe_souter_outpost/flight) +"JD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 6 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"JG" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"JL" = ( +/obj/structure/machinery/washing_machine{ + pixel_y = 18; + density = 0 + }, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 33; + density = 0 + }, +/turf/open/floor/prison/darkpurple2, +/area/lv759/indoors/twe_souter_outpost/dorm) +"Kd" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/flight) +"Kf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Kl" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Kx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 4; + pixel_x = 2 + }, +/obj/item/trash/hybrisa/cuppa_joes/lid{ + pixel_x = -9 + }, +/obj/item/trash/twe_mre, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Kz" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"KI" = ( +/obj/item/shard, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"KK" = ( +/obj/structure/platform/metal/stair_cut/hybrisa_metal_right, +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/lv759/outdoors/colony_streets/central_streets) +"KL" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -1; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"KM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"KN" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/reception) +"KS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"KW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + icon_state = "wy_water_crushed" + }, +/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard3{ + dir = 5; + pixel_y = 34; + lazy_nodes = 0; + layer = 3; + pixel_x = 4 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"La" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/closet/bodybag, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Lh" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/fuel_cell/used, +/turf/open/floor/almayer/plating_striped, +/area/lv759/indoors/twe_souter_outpost/maint) +"Li" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/barricade/deployable, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"LD" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/strata/red3/east, +/area/lv759/indoors/twe_souter_outpost/armoury) +"LI" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Mg" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 1; + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/rmc_f90, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"Mp" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"Mx" = ( +/obj/structure/closet/crate{ + color = "#98a3ab" + }, +/obj/item/roller/bedroll, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/obj/item/clothing/under/marine/veteran/royal_marine/iasf, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"MH" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"MO" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"MP" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/prop/hybrisa/fakeplatforms/platform4{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"MW" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 8; + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/obj/item/device/m56d_gun, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"MX" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -6 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/structure/largecrate/random/case{ + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Nb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/item/stack/rods, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"Nd" = ( +/obj/structure/machinery/door_control{ + id = "imperial_armory"; + name = "Armory Lockdown"; + pixel_x = 23; + pixel_y = 5; + needs_power = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/strata/red4/north, +/area/lv759/indoors/twe_souter_outpost/armoury) +"Nf" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + welded = 1 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/maint) +"Nj" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Nn" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/doubleroad/lines2{ + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/colony_streets/north_west_street) +"Nw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"NO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"NV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Om" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/effect/spawner/random/pills/midchance, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/obj/structure/curtain/open/colorable_transparent{ + color = "#687d89"; + alpha = 235 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/lv759/indoors/twe_souter_outpost/hallway) +"OI" = ( +/obj/structure/largecrate/supply/supplies/mre/twe, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"OS" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 2; + pixel_y = 33 + }, +/obj/structure/sign/safety/opens_up{ + pixel_x = 14; + pixel_y = 33 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"Pa" = ( +/obj/structure/sign/poster/music{ + pixel_x = 3; + pixel_y = 34 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 7; + pixel_y = 38; + layer = 3.2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/central_streets) +"Pe" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Pg" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + layer = 2.5; + pixel_y = 5 + }, +/turf/open/floor/prison/ramptop/north, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Pm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Pp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Pz" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"PD" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18; + layer = 4.2 + }, +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"PI" = ( +/obj/structure/bed/chair/vehicle/white{ + pixel_x = -7; + pixel_y = 16; + buckle_offset_x = -7; + buckle_offset_y = 16 + }, +/obj/structure/bed/chair/vehicle/white{ + pixel_x = 9; + pixel_y = 16; + buckle_offset_x = 9; + buckle_offset_y = 16 + }, +/turf/open/floor/almayer/test_floor4, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"PO" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"PR" = ( +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/north, +/area/lv759/indoors/twe_souter_outpost/flight) +"PT" = ( +/obj/item/tool/warning_cone{ + pixel_y = 26; + pixel_x = -9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Qr" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/almayer/black/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Qt" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + pixel_y = 1 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/prison/darkred2/northeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Qv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 13; + pixel_x = -7 + }, +/obj/structure/sign/poster/corporate{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"QN" = ( +/obj/item/prop/almayer/comp_open{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#848484" + }, +/turf/open/floor/prison/blue/east, +/area/lv759/indoors/twe_souter_outpost/flight) +"QR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Rc" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "6,0" + }, +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"Rj" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Rl" = ( +/obj/item/ammo_box/magazine/p90/empty{ + pixel_x = 4; + pixel_y = -9 + }, +/obj/item/ammo_magazine/smg/p90/twe{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Rq" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "souter_west"; + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/red_warning_floor, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Rt" = ( +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Ru" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/lv759/indoors/twe_souter_outpost/hallway) +"RB" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"RD" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/lv759/outdoors/colony_streets/central_streets) +"RH" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"RK" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/bed/hybrisa/bunkbed2, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/lv759/indoors/twe_souter_outpost/dorm) +"RM" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/hybrisa/street/sidewalk/west, +/area/lv759/outdoors/colony_streets/north_west_street) +"RT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkred2/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Sk" = ( +/obj/structure/barricade/sandbags/wired{ + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/lv759/outdoors/colony_streets/north_west_street) +"Sn" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "2,1" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"So" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/obj/item/tool/shovel/etool{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/stack/sandbags_empty{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"SD" = ( +/obj/structure/barricade/sandbags/wired{ + pixel_y = -2 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"SH" = ( +/obj/structure/window_frame/hybrisa/marshalls/reinforced, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/reception) +"SP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"SW" = ( +/obj/structure/cargo_container/hybrisa/containersextended/greenwywingsleft, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Tb" = ( +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"Td" = ( +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Tn" = ( +/obj/structure/prop/hybrisa/airport/refuelinghose2{ + pixel_x = -17; + pixel_y = -9; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Tt" = ( +/obj/structure/disposalpipe/tagger{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv759/outdoors/colony_streets/north_west_street) +"Tv" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 8; + pixel_x = -2 + }, +/turf/open/floor/prison/ramptop/east, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Ty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + dir = 8; + pixel_x = -2 + }, +/turf/open/floor/prison/ramptop/east, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Tz" = ( +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"TC" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost) +"TG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/doubleroad/lines2{ + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/colony_streets/north_west_street) +"TI" = ( +/turf/closed/shuttle/twe_dropship/transparent{ + icon_state = "5,13_alt" + }, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"TJ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/accessory/patch/twe, +/turf/open/floor/almayer, +/area/lv759/indoors/twe_souter_outpost/hallway) +"TN" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning2"; + pixel_x = 3; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"TO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/lv759/outdoors/colony_streets/north_west_street) +"TW" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/central_streets) +"TY" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/strata/multi_tiles/southeast, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Ul" = ( +/obj/item/tool/wrench{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 6; + name = "TWE coffee mug"; + desc = "A red, white and blue coffee mug depicting the flag of the TWE. Patriotic and bold, and commonly seen among veterans as a novelty." + }, +/turf/open/floor/almayer/plating_striped/west, +/area/lv759/indoors/twe_souter_outpost/maint) +"Um" = ( +/obj/effect/spawner/random/tool, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Un" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/survivor_spawner/twe/iasf/squad_leader, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/reception) +"Uq" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "hangar_storage_1"; + name = "\improper Lockdown"; + vehicle_resistant = 1; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/maint) +"UC" = ( +/obj/structure/window/framed/hybrisa/marshalls/cell, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/maint) +"UD" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"UF" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"UH" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ + dir = 1; + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"UU" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + name = "rubber mat"; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"Vj" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/structure/bed/stool{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/lv759/indoors/twe_souter_outpost) +"Vl" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "1,0" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"Vq" = ( +/obj/structure/machinery/door_control{ + id = "souter_outside_west"; + name = "Emergency Exit Access"; + pixel_y = -3; + pixel_x = -22 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Vr" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_y = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Vs" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown"; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/flight) +"Vt" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"Vz" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"VD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"VE" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/lv759/indoors/twe_souter_outpost) +"VH" = ( +/obj/structure/barricade/deployable{ + damage_state = 2; + dir = 8; + health = 140; + icon_state = "folding_2"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"VN" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/hybrisa/shutters{ + id = "twe_hangar_lockdown"; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/lv759/indoors/twe_souter_outpost/flight) +"VQ" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/floor/prison/darkred2/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"VX" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_5{ + pixel_y = 16; + layer = 6 + }, +/turf/closed/wall/hybrisa/marhsalls, +/area/lv759/indoors/twe_souter_outpost/hallway) +"We" = ( +/obj/item/tool/warning_cone{ + pixel_x = -36; + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Wj" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/item/reagent_container/food/drinks/cans/classcola{ + icon_state = "cola_crushed" + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"Wm" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_4{ + pixel_y = 16; + layer = 6 + }, +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/lv759/indoors/twe_souter_outpost/flight) +"Wq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"Ww" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/ammo_magazine/rifle/rmc_f90, +/obj/item/ammo_box{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Wz" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"WG" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "8,8" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"WL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + pixel_y = -4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/survivor_spawner/twe/iasf/paratrooper, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost) +"WM" = ( +/obj/structure/shuttle/part/twe_cosmetic1/transparent{ + icon_state = "4,15" + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"WP" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/reagent_container/pill/teabag{ + pixel_y = 11; + pixel_x = 9 + }, +/obj/item/trash/tray, +/turf/open/floor/almayer/black/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"WQ" = ( +/obj/structure/bed/chair/vehicle/white{ + pixel_x = -7; + pixel_y = 16; + buckle_offset_x = -7; + buckle_offset_y = 16 + }, +/obj/structure/bed/chair/vehicle/white{ + pixel_x = 9; + pixel_y = 16; + buckle_offset_x = 9; + buckle_offset_y = 16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"Xa" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/obj/item/trash/hybrisa/cuppa_joes/lid, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost) +"Xi" = ( +/obj/item/ammo_casing/bullet, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"Xj" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/flight) +"Xq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/north, +/area/lv759/outdoors/colony_streets/north_west_street) +"Xy" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/north_west_street) +"Xz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/lv759/indoors/twe_souter_outpost/hallway) +"XC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -9; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/structure/machinery/iv_drip{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv759/indoors/twe_souter_outpost/flight) +"XJ" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_y = 25; + pixel_x = -10 + }, +/turf/open/floor/hybrisa/metal/grated, +/area/lv759/outdoors/colony_streets/central_streets) +"Ya" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Yb" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4/deco, +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"Yk" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/trash/eat, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"Yy" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -14 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"YA" = ( +/obj/effect/decal/hybrisa/TWE_logo_large/directional_1{ + dir = 9; + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalkfull, +/area/lv759/outdoors/colony_streets/north_west_street) +"YK" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkpurple2/north, +/area/lv759/indoors/twe_souter_outpost/dorm) +"YL" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"YN" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/lv759/outdoors/colony_streets/central_streets) +"YR" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv759/indoors/twe_souter_outpost/hangar) +"YV" = ( +/turf/open/hybrisa/street/sidewalk/east, +/area/lv759/outdoors/colony_streets/north_west_street) +"Zd" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/cement2, +/area/lv759/outdoors/colony_streets/north_west_street) +"Zf" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/almayer/cargo, +/area/lv759/indoors/twe_souter_outpost/hangar) +"Zi" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/lv759/indoors/twe_souter_outpost/reception) +"Zm" = ( +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/reception) +"Zn" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_magazine/rifle/rmc_f90, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) +"Zr" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/roof/hybrisa/billboardsandsigns/billboardsmedium/billboard3{ + dir = 6; + pixel_y = 34; + lazy_nodes = 0; + layer = 3 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/lv759/outdoors/colony_streets/central_streets) +"Zy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump_hybrisa{ + welded = 1 + }, +/obj/structure/sign/safety/airtraffictower{ + pixel_x = 36; + pixel_y = -6 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 36; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/closet/bodybag, +/turf/open/floor/prison/darkred2, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ZG" = ( +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/twe_gunship) +"ZN" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "door_warning"; + layer = 2.5; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 29; + pixel_x = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/lv759/indoors/twe_souter_outpost/hallway) +"ZV" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/lv759/indoors/twe_souter_outpost/hangar) +"ZZ" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/south, +/area/lv759/outdoors/colony_streets/north_west_street) + +(1,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +Yb +fi +fi +YV +YV +YV +ht +bW +YV +YV +fi +YV +YV +YV +pb +fZ +fZ +"} +(2,1,1) = {" +fZ +Tb +DF +CE +gb +BT +fU +Wq +gb +UH +fb +KS +ft +Xy +hw +hw +uK +uK +uK +uK +zZ +fG +zZ +VX +zZ +zZ +zZ +zZ +KK +uS +"} +(3,1,1) = {" +TG +Tb +rR +Kz +gh +dU +CY +xd +SD +Zd +Nb +ou +VH +Jp +uK +JL +Hm +fK +Mx +HQ +Vq +nT +wk +WP +bE +aa +Gs +zZ +Pa +rl +"} +(4,1,1) = {" +TG +Pz +md +FZ +RM +Xq +MW +wJ +dS +aM +DD +Bq +Zn +Tt +uK +hy +fQ +jN +dy +HQ +dR +sx +MO +fh +TJ +Go +at +zZ +wS +TW +"} +(5,1,1) = {" +Nn +Vt +dY +Hs +xc +EY +YA +Mg +ZZ +Xi +cA +BY +RH +Mp +uK +hB +br +Gl +mt +lF +jB +km +mu +ui +dg +bN +Dw +zZ +aA +GM +"} +(6,1,1) = {" +TG +Tb +tS +uH +So +dB +AY +nd +Sk +ah +kG +aw +dv +Nw +uK +mw +RK +mN +YK +uK +pY +Yk +qy +Qr +dN +be +tr +zZ +gc +YN +"} +(7,1,1) = {" +TG +Tb +UD +rt +gb +BT +Er +Er +gb +zU +Gr +gf +fB +dK +uK +uK +uK +uK +uK +uK +Ww +KL +bc +bc +bc +bc +bc +aj +Bf +nS +"} +(8,1,1) = {" +TG +Tb +xv +Ak +Ak +Ak +kK +SH +Ak +Ak +iD +KI +kP +iD +uK +hA +uG +Gu +nZ +uK +Pm +ZN +dI +vf +bT +ik +bc +KW +SP +UF +"} +(9,1,1) = {" +TG +hE +Ak +Ak +mP +lU +aC +kQ +ke +Zm +WL +eO +mg +VE +uK +IJ +Ah +fQ +Wz +HQ +mI +gA +bc +HV +zo +gv +bc +un +gs +wL +"} +(10,1,1) = {" +TO +Tb +Ak +nC +mx +Zi +Un +kU +bw +KN +Vj +AS +Ij +pH +uK +hY +he +nD +Wz +HQ +dP +gA +bc +Bj +cz +cV +bc +JD +KM +YN +"} +(11,1,1) = {" +fZ +fZ +Ak +GD +mR +Ii +li +ef +ki +KN +af +gX +Xa +HW +uK +dF +gZ +Hh +vj +lF +MP +pZ +dI +Nd +LD +qK +bc +aj +bG +TW +"} +(12,1,1) = {" +fZ +fZ +Ak +Ak +Ak +Gn +xS +Ga +Ak +Ak +TC +sB +kb +TC +uK +uK +uK +uK +uK +uK +gk +CS +bc +bc +bc +bc +bc +aj +IC +or +"} +(13,1,1) = {" +fZ +fZ +zZ +bD +DC +zN +Vz +fT +nO +dc +dP +pv +ad +hk +zR +kc +dc +kc +zR +Tz +ac +hb +Qt +ab +VQ +NV +GO +zZ +cn +EC +"} +(14,1,1) = {" +fZ +fZ +zZ +zZ +oi +YL +ga +mD +mD +mD +mE +mD +qY +iW +mD +mD +mD +mD +LI +kf +CR +TY +Li +pK +QR +rg +sj +kY +Iv +ia +"} +(15,1,1) = {" +fZ +fZ +fZ +zZ +cp +Ht +dq +Ru +kq +RT +kq +Fu +dq +vL +Kf +Ya +Kf +xb +kt +dW +ow +BW +cZ +uL +Hy +dn +xf +zZ +OS +nS +"} +(16,1,1) = {" +fZ +fZ +zZ +zZ +mW +gA +cc +zZ +zZ +zZ +zZ +zZ +jq +mZ +Rq +Rq +Rq +pn +sN +Uq +Uq +pn +UC +Nf +UC +sN +zZ +zZ +YN +cW +"} +(17,1,1) = {" +fZ +fZ +zZ +qn +La +gA +dq +sv +kv +Xz +zZ +Om +lf +xl +Dm +EK +Hc +pn +bB +Ul +sZ +pn +fn +nP +yr +sN +mv +HA +RD +wL +"} +(18,1,1) = {" +fZ +fZ +zZ +EZ +Zy +eE +Kx +ha +zZ +nG +xl +xl +xl +xl +cg +EK +uD +pn +Bw +dd +nj +lN +bp +am +Lh +sN +Zr +Di +sV +PO +"} +(19,1,1) = {" +fZ +fZ +uz +uz +uz +VN +Vs +uz +xl +xl +xl +fg +iy +xl +hJ +hJ +hJ +pn +pn +kZ +kZ +pn +pn +co +pn +pn +mh +aT +kn +wL +"} +(20,1,1) = {" +fZ +fZ +uz +yE +XC +zr +oh +uz +MX +mL +qW +Ty +Ty +HX +Ty +Ty +Ty +Am +mb +Tv +Ty +ij +Vr +lL +iw +xl +Wj +eN +yn +UF +"} +(21,1,1) = {" +fZ +fZ +uz +uz +Dx +tt +lD +uz +lH +Kl +GE +hi +hi +GE +hi +hi +hi +GE +GE +hi +PT +GE +mn +PD +yq +xl +xl +xl +IS +wL +"} +(22,1,1) = {" +fZ +fZ +fZ +uz +PR +ve +hL +Kd +lO +ZV +We +sl +Rt +Rt +Rt +Rt +xD +me +fp +eu +hT +AM +eU +rZ +ag +ru +SW +xl +Ca +UF +"} +(23,1,1) = {" +fZ +fZ +uz +uz +ns +xN +lq +Kd +lO +ZV +Rt +Rt +ln +pc +hm +hq +gD +gD +ev +ev +od +bU +Vl +fX +ag +Ec +Ja +xl +ao +Jl +"} +(24,1,1) = {" +fZ +fZ +uz +om +jL +FA +fv +Kd +lO +ZV +lp +tH +hm +zJ +iq +fq +Ao +Ao +Ao +oR +eK +Sn +kW +Um +Pg +Rl +au +xl +DA +Gt +"} +(25,1,1) = {" +fZ +fZ +uz +op +nt +tf +tM +uz +YR +ZV +WM +xp +Ae +AN +Ai +kV +zY +hs +PI +ew +en +EX +ZG +rZ +ag +zj +Rj +xl +XJ +Pp +"} +(26,1,1) = {" +fZ +fZ +uz +ot +tE +UU +lK +Kd +lO +ZV +ch +eT +TI +zJ +WQ +FH +bQ +bQ +bQ +ie +mT +dD +Rc +rZ +Pg +Zf +Ey +xl +ra +DM +"} +(27,1,1) = {" +fZ +fZ +uz +sH +lE +Jn +ho +Kd +lO +ZV +Rt +Rt +jj +pk +TI +hq +gY +gY +fs +eD +cX +gj +tK +rZ +ag +Td +OI +xl +xt +Gt +"} +(28,1,1) = {" +fZ +fZ +uz +uz +ny +Xj +ER +Kd +lO +JG +sl +Rt +Rt +Rt +Rt +Rt +WG +bP +fw +eG +hT +Rt +vP +rZ +ag +nk +xl +xl +Jj +Pp +"} +(29,1,1) = {" +fZ +fZ +fZ +uz +HU +AO +Js +uz +ae +nI +tP +Pe +nl +Pe +Pe +Pe +MH +GN +wf +lW +Pe +da +Pe +AL +yq +hp +xl +xs +dx +Gt +"} +(30,1,1) = {" +fZ +fZ +fZ +uz +FD +GI +IP +et +RB +VD +RB +RB +RB +IB +TN +RB +Tn +Yy +qe +RB +RB +nX +RB +iP +BD +Dg +xl +NO +vI +bk +"} +(31,1,1) = {" +fZ +fZ +fZ +uz +nB +QN +io +uz +xl +xl +xl +xl +xl +hc +Dh +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Nj +Qv +Be +"} +(32,1,1) = {" +fZ +fZ +fZ +uz +Wm +uz +uz +uz +xl +xl +fZ +fZ +xl +xl +xl +xl +fZ +fZ +fZ +fZ +fE +fE +fZ +fZ +fZ +Nj +Nj +Nj +IE +mi +"} +(33,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +"} diff --git a/maps/templates/ssv_rostock.dmm b/maps/templates/ssv_rostock.dmm index fecf56d78afc..64db48d954b9 100644 --- a/maps/templates/ssv_rostock.dmm +++ b/maps/templates/ssv_rostock.dmm @@ -868,7 +868,7 @@ /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/s_f) "acK" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/strata, /area/rostock/security/execution_room) "acL" = ( @@ -913,7 +913,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/security/execution_storage) "acR" = ( -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/security/execution_storage) "acS" = ( @@ -1153,6 +1153,17 @@ }, /turf/open/floor/corsat/spiralplate, /area/rostock/lowerdeck_maint/p_a) +"adM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "rostock camera"; + network = list("Rostock"); + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/rostock/security/brig_holding_area) "adR" = ( /turf/open/floor/strata/red4/north, /area/rostock/security/headquarters_bunk) @@ -1195,7 +1206,7 @@ layer = 2.5; pixel_y = 2 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/almayer/plating/northeast, /area/rostock/ert_dock/port) "afs" = ( @@ -2095,7 +2106,7 @@ /turf/open/floor/corsat/plate, /area/rostock/railgun/starboard) "aNY" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/strata, /area/rostock/security/brig_office) "aOB" = ( @@ -2304,7 +2315,7 @@ /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /obj/item/clothing/suit/storage/webbing, /obj/item/clothing/suit/storage/webbing, /obj/item/clothing/under/marine/veteran/UPP/officer, @@ -2546,7 +2557,7 @@ /turf/closed/wall/upp_ship, /area/rostock/upperdeck_maint/s_f) "biL" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/corsat/plate, /area/rostock/railgun/starboard) "biQ" = ( @@ -2839,7 +2850,7 @@ /turf/open/floor/strata/orange_edge/north, /area/rostock/req) "bud" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/plate, /area/rostock/security/headquarters_interrogation) "buT" = ( @@ -3300,7 +3311,7 @@ /turf/open/floor/corsat/red/west, /area/rostock/command/cic) "bMB" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/strata/orange_edge, /area/rostock/vehiclehangar) "bMP" = ( @@ -3575,7 +3586,7 @@ /turf/open/floor/strata, /area/rostock/upper_deck/hallway) "bVO" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /obj/effect/decal/heavy_cable/cable_vertical, /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/engineering/reactor) @@ -4400,7 +4411,7 @@ /turf/open/floor/strata/green4/west, /area/rostock/lower_deck/prep) "cIm" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/floor3/east, /area/rostock/security/headquarters_storage) "cIN" = ( @@ -4825,7 +4836,7 @@ /turf/open/floor/almayer/plating/northeast, /area/rostock/ert_dock/port) "ddi" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/corsat/spiralplate, /area/rostock/hangar/pilotbunk) "ddO" = ( @@ -6174,7 +6185,7 @@ /turf/open/floor/plating, /area/rostock/security/brig_holding_area) "ees" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/multi_tiles, /area/rostock/command/hallway) "eeC" = ( @@ -7341,7 +7352,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/corsat/plate, /area/rostock/lower_deck/p_hallway) "eZO" = ( @@ -7446,7 +7457,7 @@ /obj/item/clothing/glasses/welding{ pixel_y = 6 }, -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/strata/blue3/north, /area/rostock/command/cic) "fdp" = ( @@ -7714,7 +7725,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/prison/cell_stripe/west, /area/rostock/engineering/main_area) "fkV" = ( @@ -7839,7 +7850,7 @@ pixel_x = 8; pixel_y = 6 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/corsat, /area/rostock/lower_deck/starboard_umbilical) "fop" = ( @@ -7920,7 +7931,7 @@ /turf/open/floor/prison/floor_plate, /area/rostock/engineering/main_area) "fqz" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/almayer/silverfull, /area/rostock/medical/surgery) "fqP" = ( @@ -9746,7 +9757,9 @@ /turf/open/floor/corsat/spiralplate, /area/rostock/medical/morgue) "gYI" = ( -/obj/structure/window/framed/upp_ship/reinforced, +/obj/structure/window/framed/upp_ship/reinforced{ + desc = "A glass window. Light refracts incorrectly when looking through. It seems weaker than the other windows in the area, but still rather strong." + }, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; id = "uppbrig1"; @@ -10164,7 +10177,7 @@ /area/space) "hmW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/p_a) "hnn" = ( @@ -11064,7 +11077,7 @@ /turf/closed/wall/upp_ship/reinforced, /area/rostock/command/polcom) "hTG" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/plate, /area/rostock/railgun) "hTL" = ( @@ -12041,7 +12054,7 @@ /turf/open/floor/upp_hull_rostock, /area/space) "iFK" = ( -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/strata/red4/west, /area/rostock/security/headquarters_bunk) "iFY" = ( @@ -13304,7 +13317,7 @@ icon_state = "triagedecaldir"; pixel_y = 18 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/almayer/silverfull, /area/rostock/medical/prep) "jCq" = ( @@ -13478,7 +13491,7 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/s_a) "jJL" = ( @@ -14076,7 +14089,7 @@ pixel_y = 9; pixel_x = 2 }, -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/strata/floor3/east, /area/rostock/engineering/starboard_aft_accessway) "kfg" = ( @@ -14111,7 +14124,7 @@ /turf/open/floor/wood/ship, /area/rostock/command/so) "khq" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/strata/red3/west, /area/rostock/security/headquarters_lobby) "khK" = ( @@ -14230,7 +14243,7 @@ /area/rostock/lower_deck/engineering_lower_access) "kkt" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /obj/item/storage/belt, /turf/open/floor/prison/darkyellowfull2/east, /area/rostock/hangar/repairbay) @@ -14903,7 +14916,7 @@ dir = 4; light_color = "#ccecff" }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/almayer/sterile_green, /area/rostock/medical/chemistry) "kIs" = ( @@ -15099,7 +15112,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/lower_deck/bathroom) "kQV" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/almayer/aicore/no_build, /area/rostock/airoom) "kRk" = ( @@ -15765,7 +15778,7 @@ /turf/open/floor/prison, /area/rostock/engineering/main_area) "lxo" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/multi_tiles/southeast, /area/rostock/lower_deck/m_hallway) "lxH" = ( @@ -15865,7 +15878,7 @@ /turf/open/floor/corsat/spiralplate, /area/rostock/lower_deck/ammunition_storage) "lEP" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/prison/floor_plate, /area/rostock/engineering/lower_aft_corridor) "lFi" = ( @@ -17074,7 +17087,7 @@ /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/s_a) "mFt" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/corsat/spiralplate, /area/rostock/lower_deck/ammunition_storage) "mGL" = ( @@ -17455,7 +17468,7 @@ "mXe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/spiralplate, /area/rostock/lowerdeck_maint/p_f) "mXj" = ( @@ -17589,7 +17602,7 @@ /turf/open/floor/almayer/sterile_green, /area/rostock/medical/lobby) "nep" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/plating/prison, /area/rostock/upperdeck_maint/p_m) "neM" = ( @@ -18036,7 +18049,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/floor3/east, /area/rostock/upper_deck/hallway) "nCE" = ( @@ -18254,7 +18267,7 @@ /area/rostock/railgun/starboard) "nLu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/p_f) "nMh" = ( @@ -18898,7 +18911,7 @@ /turf/open/floor/corsat/marked, /area/rostock/security/headquarters_interrogation) "omS" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/plate, /area/rostock/command/astronavigation) "omU" = ( @@ -19716,7 +19729,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/prison/darkyellowfull2/east, /area/rostock/lower_deck/engineering_lower_access) "oSB" = ( @@ -19851,7 +19864,7 @@ /area/rostock/engineering/reactor) "oZA" = ( /obj/structure/largecrate/random/case/double, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/floor3/east, /area/rostock/engineering/port_aft_accessway) "pap" = ( @@ -20086,7 +20099,7 @@ "pjA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/s_f) "pjC" = ( @@ -20248,7 +20261,7 @@ /turf/open/floor/strata/green3/north, /area/rostock/lower_deck/p_a_hallway) "poD" = ( -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/corsat/lightplate, /area/rostock/lower_deck/bathroom) "poQ" = ( @@ -20764,7 +20777,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/upperdeck_maint/p_a) "pIQ" = ( -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/strata/floor3/east, /area/rostock/lower_deck/briefing) "pJl" = ( @@ -20964,7 +20977,7 @@ /turf/open/floor/strata/red3/north, /area/rostock/upper_deck/hallway) "pQZ" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/orange_edge/north, /area/rostock/req) "pRh" = ( @@ -21337,7 +21350,7 @@ /turf/open/floor/almayer/silverfull, /area/rostock/medical/lobby) "qgH" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/lowerdeck_maint/p_m) "qgI" = ( @@ -21411,7 +21424,7 @@ req_access_txt = "240"; pixel_x = -28 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/spiralplate, /area/rostock/lowerdeck_maint/s_f) "qhX" = ( @@ -21601,7 +21614,7 @@ /turf/open/floor/corsat/spiralplate, /area/rostock/lowerdeck_maint/p_a) "qqC" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/strata/multi_tiles/southeast, /area/rostock/lower_deck/s_a_hallway) "qqG" = ( @@ -21748,7 +21761,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/rostock/lower_deck/p_a_hallway) "qxy" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/corsat/plate, /area/rostock/security/headquarters_armory) "qxO" = ( @@ -22156,7 +22169,7 @@ pixel_x = 12; pixel_y = 12 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/spiralplate, /area/rostock/lowerdeck_maint/p_a) "qPi" = ( @@ -22413,7 +22426,7 @@ icon_state = "pottedplant_22"; pixel_y = 6 }, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/strata/red4/west, /area/rostock/security/brig_accessway) "qYy" = ( @@ -22746,7 +22759,7 @@ /area/rostock/hangar/hangarbay) "rkL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/s_m) "rkR" = ( @@ -22795,7 +22808,7 @@ /turf/open/floor/corsat/spiralplate, /area/rostock/upperdeck_maint/s_f) "rmX" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/carpet, /area/rostock/command/polcom) "rnj" = ( @@ -23183,7 +23196,7 @@ pixel_y = 6; pixel_x = -12 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/red4/north, /area/rostock/security/brig_entryway) "rDE" = ( @@ -23993,6 +24006,11 @@ /area/rostock/upperdeck_maint/p_a) "snr" = ( /obj/structure/machinery/seed_extractor, +/obj/structure/machinery/camera/autoname/almayer{ + name = "rostock camera"; + network = list("Rostock"); + dir = 8 + }, /turf/open/floor/strata/purp3/west, /area/rostock/security/brig_holding_area) "snF" = ( @@ -24901,7 +24919,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/wood, /area/rostock/command/xo) "tiN" = ( @@ -25234,7 +25252,7 @@ /obj/item/reagent_container/food/drinks/bottle/vodka{ pixel_x = 6 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/strata/fake_wood, /area/rostock/command/dining) "tup" = ( @@ -25934,7 +25952,7 @@ /obj/effect/decal/strata_decals/grime/grime4{ dir = 1 }, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /obj/structure/closet/coffin{ name = "\improper UPP coffin"; desc = "A burial receptacle for for the fallen, adorned in red and finished with the emblem of the union. Unity through Strength, Freedom through Unity" @@ -26561,7 +26579,7 @@ icon_state = "triagedecalbottomleft"; pixel_y = 18 }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/almayer/silverfull, /area/rostock/medical/lobby) "uvW" = ( @@ -26704,7 +26722,7 @@ /area/rostock/lower_deck/prep) "uEN" = ( /obj/structure/largecrate/supply/medicine/medivend, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/almayer/sterile_green, /area/rostock/medical/storage) "uEV" = ( @@ -26721,10 +26739,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/structure/machinery/power/apc/power/south, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/strata/floor3, /area/rostock/security/brig_holding_area) "uHu" = ( @@ -26939,7 +26957,7 @@ /obj/item/stack/sheet/metal/large_stack, /obj/item/stack/sheet/plasteel/large_stack, /obj/item/stack/sheet/plasteel/large_stack, -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/strata/red1, /area/rostock/command/armory) "uQa" = ( @@ -27131,7 +27149,7 @@ dir = 1; light_color = "#ffd4d4" }, -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/corsat/plate, /area/rostock/lowerdeck_maint/s_a) "uZe" = ( @@ -28006,7 +28024,7 @@ /turf/open/floor/prison/floor_plate, /area/rostock/engineering/main_area) "vFs" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/lowerdeck_maint/s_m) "vFy" = ( @@ -28550,7 +28568,7 @@ pixel_x = 9; pixel_y = -11 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/strata/floor2, /area/rostock/lower_deck/bunk) "vXE" = ( @@ -28713,7 +28731,7 @@ dir = 8; pixel_y = 3 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/strata/floor3/east, /area/rostock/lower_deck/kitchen) "wcu" = ( @@ -28770,7 +28788,7 @@ /turf/open/floor/almayer/tcomms, /area/rostock/upperdeck_maint/p_a) "wea" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/carpet, /area/rostock/command/co) "weh" = ( @@ -28984,7 +29002,7 @@ icon_state = "W"; pixel_x = -1 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /turf/open/floor/strata/multi_tiles/west, /area/rostock/hangar/hangarbay) "wlm" = ( @@ -29409,7 +29427,7 @@ /turf/open/floor/almayer/silverfull, /area/rostock/medical/chemistry) "wDv" = ( -/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/power/apc/upp/south, /turf/open/floor/almayer/silverfull, /area/rostock/medical/accessway) "wDZ" = ( @@ -29932,7 +29950,7 @@ pixel_x = 2; pixel_y = -1 }, -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/almayer/plating/northeast, /area/rostock/ert_dock/starboard) "xct" = ( @@ -30375,7 +30393,7 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/rostock/lower_deck/s_a_hallway) "xtL" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/almayer/cargo_arrow, /area/rostock/lower_deck/prep) "xun" = ( @@ -30420,7 +30438,7 @@ /turf/open/floor/corsat/plate, /area/rostock/lower_deck/p_hallway) "xvT" = ( -/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/power/apc/upp/north, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor2, /area/rostock/lifeboat) @@ -31131,7 +31149,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/rostock/medical/surgery) "yaZ" = ( -/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/power/apc/upp/west, /turf/open/floor/strata/floor2, /area/rostock/lower_deck/p_a_hallway) "ybI" = ( @@ -31376,7 +31394,7 @@ light_color = "#66ccff"; invisibility = 101 }, -/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/power/apc/upp/east, /obj/effect/landmark/start/upp{ name = "UPP soldier join"; job_list = list("UPP Ryadovoy","UPP MSzht Engineer","UPP MSzht Medic","UPP Serzhant","UPP Starshiy Serzhant") @@ -46604,7 +46622,7 @@ ogL trk ogL ogL -ddO +adM guf acP acs diff --git a/sound/effects/squish_and_exhaust.ogg b/sound/effects/squish_and_exhaust.ogg new file mode 100644 index 000000000000..3ea4ae745044 Binary files /dev/null and b/sound/effects/squish_and_exhaust.ogg differ diff --git a/tgui/packages/tgui/interfaces/MedicalRecords.tsx b/tgui/packages/tgui/interfaces/MedicalRecords.tsx new file mode 100644 index 000000000000..61eb70a78381 --- /dev/null +++ b/tgui/packages/tgui/interfaces/MedicalRecords.tsx @@ -0,0 +1,933 @@ +import { capitalize } from 'common/string'; +import { useCallback, useEffect, useState } from 'react'; +import { useBackend } from 'tgui/backend'; +import { + Box, + Button, + Divider, + Dropdown, + Flex, + Input, + Modal, + Section, + Table, +} from 'tgui/components'; +import { Window } from 'tgui/layouts'; + +type RecordEntry = { + id: string; + general_name: string; + general_rank: string; + general_job: string; + general_age: number; + general_sex: string; + general_m_stat: string; + general_p_stat: string; + medical_blood_type: string; + medical_diseases: string; + medical_diseases_details: string; + medical_allergies: string; + medical_allergies_details: string; + medical_major_disability: string; + medical_major_disability_details: string; + medical_minor_disability: string; + medical_minor_disability_details: string; + medical_comments: { + entry: string; + created_by: { name: string; rank: string }; + created_at: String; + deleted_by: null | string; + deleted_at: null | string; + }[]; + record_classified: Boolean; +}; + +type Data = { + records: RecordEntry[]; + operator: string; + database_access_level: number; + fallback_image: string; + photo_front?: string; + photo_side?: string; +}; + +export const MedicalRecords = () => { + const { data, act } = useBackend(); + const { records = [], fallback_image } = data; + const [recordsArray, setRecordsArray] = useState( + Array.isArray(records) ? records : [], + ); + const [selectedRecord, setSelectedRecord] = useState( + null, + ); + const [editField, setEditField] = useState(null); // Field being edited + const [editValue, setEditValue] = useState(''); // Value for input + const [commentModalOpen, setCommentModalOpen] = useState(false); + const [newComment, setNewComment] = useState(''); + const [sortConfig, setSortConfig] = useState({ + key: 'general_name', + direction: 'asc', + }); + const [filterText, setFilterText] = useState(''); + const [currentPhoto, setCurrentPhoto] = useState('front'); // State to track the current photo (front or side) + const [recordPhotos, setRecordPhotos] = useState({ + front: '', + side: '', + }); + + // useEffect to sort on data update and on sort config change + useEffect(() => { + if (Array.isArray(records)) { + let updatedRecords = [...records]; + + if (sortConfig.key) { + updatedRecords.sort((a, b) => { + if (a[sortConfig.key] < b[sortConfig.key]) { + return sortConfig.direction === 'asc' ? -1 : 1; + } + if (a[sortConfig.key] > b[sortConfig.key]) { + return sortConfig.direction === 'asc' ? 1 : -1; + } + return 0; + }); + } + + setRecordsArray(updatedRecords); + } + }, [records, sortConfig]); + + useEffect(() => { + if (selectedRecord) { + const updatedRecord = recordsArray.find( + (record) => record.id === selectedRecord.id, + ); + if (updatedRecord) { + setSelectedRecord(updatedRecord); + } else { + goBack(); + } + } + + if (data.photo_front || data.photo_side) { + setRecordPhotos({ + front: data.photo_front || fallback_image, + side: data.photo_side || fallback_image, + }); + } + }, [recordsArray, selectedRecord]); + + const handleSave = (value) => { + act('update_field', { id: selectedRecord?.id, field: editField, value }); + closeEditModal(); + }; + + const handleAddComment = () => { + if (newComment.trim()) { + act('add_comment', { id: selectedRecord?.id, comment: newComment }); + + setNewComment(''); + closeCommentModal(); + } + }; + + const changePhoto = () => { + setCurrentPhoto((prevPhoto) => (prevPhoto === 'front' ? 'side' : 'front')); + }; + + const handleUpdatePhoto = () => { + act('update_photo', { + id: selectedRecord?.id, + photo_profile: currentPhoto, + }); + }; + + const handleSort = (key, keepDirection = false) => { + const direction = + keepDirection && sortConfig.key === key + ? sortConfig.direction + : sortConfig.key === key && sortConfig.direction === 'asc' + ? 'desc' + : 'asc'; + + setSortConfig({ key, direction }); + }; + + const filteredRecords = recordsArray.filter((record) => + Object.values(record).some((value) => + String(value).toLowerCase().includes(filterText.toLowerCase()), + ), + ); + + //* Functions for handling modals state + + const openEditModal = (field, value) => { + setEditField(field); + setEditValue(value); + }; + + const closeEditModal = () => { + setEditField(null); + setEditValue(''); + }; + + const openCommentModal = () => { + setCommentModalOpen(true); + }; + + const closeCommentModal = () => { + setCommentModalOpen(false); + setNewComment(''); + }; + + let view_record = false; + let edit_record = false; + + if ( + data.database_access_level >= (selectedRecord?.record_classified ? 1 : 0) + ) { + view_record = true; + } + + if ( + data.database_access_level > (selectedRecord?.record_classified ? 1 : 0) + ) { + edit_record = true; + } + + let medical_record_action = 'new'; + + if (selectedRecord?.general_p_stat) { + medical_record_action = 'delete'; + } + + const personalDataFields = [ + { label: 'ID:', contentKey: 'id', isEditable: false }, + { + label: 'RANK:', + contentKey: 'general_rank', + isEditable: false, + type: 'string', + }, + { + label: 'SEX:', + contentKey: 'general_sex', + isEditable: edit_record, + type: 'select', + options: ['Male', 'Female'], + }, + { + label: 'AGE:', + contentKey: 'general_age', + isEditable: edit_record, + type: 'number', + }, + ]; + + const medicalDataFields = [ + { + label: 'Physical Status:', + contentKey: 'general_p_stat', + isEditable: edit_record, + type: 'select', + options: ['Active', 'Physically Unfit', 'Disabled', 'SSD', 'Deceased'], + }, + { + label: 'Mental Status:', + contentKey: 'general_m_stat', + isEditable: edit_record, + type: 'select', + options: ['Stable', 'Watch', 'Unstable', 'Insane'], + }, + { + label: 'Blood Type:', + contentKey: 'medical_blood_type', + isEditable: edit_record, + type: 'select', + options: ['A+', 'A-', 'B+', 'B-', 'AB+', 'AB-', 'O+', 'O-'], + }, + ]; + + const getSortIndicator = (key) => { + if (sortConfig.key === key) { + return sortConfig.direction === 'asc' ? '▼' : '▲'; + } + }; + + const selectRecord = useCallback( + (record) => { + act('select_record', { id: record.id }); + setSelectedRecord(record); + }, + [act], + ); + + const goBack = useCallback(() => { + setSelectedRecord(null); + }, []); + + const renderField = (field, record) => { + return ( + + + {field.label} + + {field.isEditable ? ( + + ) : ( + {record[field.contentKey]} + )} + + ); + }; + + const renderSecondaryField = (label, field, record_data, record) => { + return ( + + + {label.toUpperCase()}: + + + {record_data} + + {edit_record && ( + + + + )} + + ); + }; + + const renderRecordDetails = (record: RecordEntry) => ( +
+ + | DATABASE ACCESS LEVEL {data.database_access_level} | + + + + + } + minHeight="100%" + > + + + + + + + + FULL NAME: + + + {record.general_name.toUpperCase()} + + + + + + POSITION: + + + {record.general_job.toUpperCase()} + + + + + + + {personalDataFields.map((field) => renderField(field, record))} + + + + + + + {medicalDataFields.map((field) => renderField(field, record))} + + + + + + + MEDICAL DATA + + + + +
+ + INFORMATION LOST + + + + + +
+
+
+
+ {view_record && record.general_p_stat ? ( + <> + + + + + + + {renderSecondaryField( + 'diseases', + 'medical_diseases', + record.medical_diseases, + record, + )} + + + + + + {renderSecondaryField( + 'allergies', + 'medical_allergies', + record.medical_allergies, + record, + )} + + + + + + + + + + {renderSecondaryField( + 'major disabilities', + 'medical_major_disability', + record.medical_major_disability, + record, + )} + + + + + + {renderSecondaryField( + 'minor disabilities', + 'medical_minor_disability', + record.medical_minor_disability, + record, + )} + + + + + ) : ( + + <> + + - MEDICAL DATA UNAVAILABLE - + + + {record.general_m_stat + ? 'INSUFFICIENT ACCESS CREDENTIALS' + : 'MEDICAL DATA NOT FOUND'} + + + + )} + + + + + {view_record && record.general_p_stat ? ( + + + + + + + COMMENTS / LOG + + + + {record.medical_comments && + Object.keys(record.medical_comments).length > 0 + ? Object.entries(record.medical_comments).map( + ([key, comment]) => ( + + {comment.deleted_by ? ( + + Comment deleted by {comment.deleted_by} at{' '} + {comment.deleted_at || 'unknown time'}. + + ) : ( + <> + {comment.entry} + + Created at: {comment.created_at} /{' '} + {comment?.created_by?.name} ( + {comment?.created_by?.rank}){' '} + + {edit_record && ( + + )} + + )} + + ), + ) + : 'No comments available.'} + + {edit_record && ( + + )} + + + + ) : ( + <> + + - COMMENT DATA UNAVAILABLE - + + + {record.general_p_stat + ? 'INSUFFICIENT ACCESS CREDENTIALS' + : 'MEDICAL DATA NOT FOUND'} + + + )} + +
+ + + + {data.database_access_level >= 1 ? ( + + ) : ( + + )} + {data.database_access_level >= 2 ? ( + + act(medical_record_action + '_medical_record', { + id: record.id, + name: record.general_name, + }) + } + > + {capitalize(medical_record_action)} medical record + + ) : ( + + )} + + + + +
+ ); + + const renderRecordsTable = () => ( +
+ + + Medical Records + + + + + {data.database_access_level >= 2 ? ( + + ) : ( + + )} + + + + + setFilterText(value)} + style={{ flexGrow: '1' }} + /> + + + + handleSort('general_name')} + > + Name {getSortIndicator('general_name')} + + handleSort('id')} + > + ID {getSortIndicator('id')} + + handleSort('general_job')} + > + Position {getSortIndicator('general_job')} + + handleSort('general_p_stat')} + > + Status {getSortIndicator('general_p_stat')} + + + {filteredRecords.map((record) => ( + + + + + + {record.id} + + + {record.general_job} + + + {record.general_p_stat} + + + ))} +
+
+ ); + + const LoginPanel = (props) => { + return ( +
+ MEDICAL RECORDS DATABASE + + [ Version 1.2.8 | Copyright © 2182, Weyland Yutani Corp. ] + + + + + + + INTERFACE ACCESS RESTRICTED + + + [ IDENTITY VERIFICATION REQUIRED ] + + + + + + - UNAUTHORIZED USE STRICTLY PROHIBITED - + + +
+ ); + }; + + const renderEditModal = () => { + const currentField = [...personalDataFields, ...medicalDataFields].find( + (field) => field.contentKey === editField, + ); + + const handleKeyDown = (e) => { + if (e.key === 'Enter') { + handleSave(editValue); + } + }; + + return ( + +
+ + {currentField?.type === 'select' ? ( + handleSave(value)} + /> + ) : ( + setEditValue(value)} + onKeyDown={handleKeyDown} + /> + )} + {currentField?.type !== 'select' && ( + + + + + )} + +
+
+ ); + }; + + const renderCommentModal = () => ( + +
+ + setNewComment(value)} + placeholder="Enter your comment..." + /> + + + + + +
+
+ ); + + return ( + + + {data.operator ? ( +
+ {selectedRecord ? ( + renderRecordDetails(selectedRecord) + ) : ( + + {renderRecordsTable()} + + )} + {editField && renderEditModal()} +
+ ) : ( + + )} + {commentModalOpen && renderCommentModal()} +
+
+ ); +}; diff --git a/tgui/packages/tgui/interfaces/SecurityRecords.tsx b/tgui/packages/tgui/interfaces/SecurityRecords.tsx index bb164a952fa3..b67e4621b3a3 100644 --- a/tgui/packages/tgui/interfaces/SecurityRecords.tsx +++ b/tgui/packages/tgui/interfaces/SecurityRecords.tsx @@ -186,7 +186,7 @@ export const SecurityRecords = () => { { label: 'ID:', contentKey: 'id', isEditable: false }, { label: 'Position:', - contentKey: 'general_rank', + contentKey: 'general_job', isEditable: true, type: 'text', }, @@ -604,9 +604,9 @@ export const SecurityRecords = () => { handleSort('general_rank')} + onClick={() => handleSort('general_job')} > - Position {getSortIndicator('general_rank')} + Position {getSortIndicator('general_job')}